-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
964213b
commit 52387f5
Showing
15 changed files
with
51 additions
and
39 deletions.
There are no files selected for viewing
12 changes: 8 additions & 4 deletions
12
molpipeline/explainability/__init__.py → ...e/experimental/explainability/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
"""Explainability module for the molpipeline package.""" | ||
|
||
from molpipeline.explainability.explainer import SHAPTreeExplainer | ||
from molpipeline.explainability.explanation import ( | ||
from molpipeline.experimental.explainability.explainer import ( | ||
SHAPKernelExplainer, | ||
SHAPTreeExplainer, | ||
) | ||
from molpipeline.experimental.explainability.explanation import ( | ||
SHAPFeatureAndAtomExplanation, | ||
SHAPFeatureExplanation, | ||
) | ||
from molpipeline.explainability.visualization.visualization import ( | ||
from molpipeline.experimental.explainability.visualization.visualization import ( | ||
structure_heatmap, | ||
structure_heatmap_shap, | ||
) | ||
|
||
__all__ = [ | ||
"SHAPTreeExplainer", | ||
"SHAPKernelExplainer", | ||
"SHAPFeatureExplanation", | ||
"SHAPFeatureAndAtomExplanation", | ||
"SHAPTreeExplainer", | ||
"structure_heatmap", | ||
"structure_heatmap_shap", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.