You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-machine-learning-interpretability-automl.md
+7-26Lines changed: 7 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ Retrieve the explanation from the `best_run`, which includes explanations for en
39
39
You can use `ExplanationClient` to download the engineered feature explanations from the artifact store of the `best_run`. To get the explanation for the raw features set `raw=True`.
40
40
41
41
```python
42
-
from azureml.contrib.interpret.explanation.explanation_client import ExplanationClient
42
+
from azureml.explain.model._internal.explanation_client import ExplanationClient
You can call the `explain()` method in MimicWrapper with the transformed test samples to get the feature importance for the generated engineered features. You can also use `ExplanationDashboard` to view the dashboard visualization of the feature importance values of the generated engineered features by automated ML featurizers.
102
102
103
103
```python
104
-
from azureml.contrib.interpret.visualize import ExplanationDashboard
### Use Mimic Explainer for computing and visualizing raw feature importance
113
-
114
-
You can call the `explain()` method in MimicWrapper again with the transformed test samples and setting `get_raw=True` to get the feature importance for the raw features. You can also use `ExplanationDashboard` to view the dashboard visualization of the feature importance values of the raw features.
115
-
116
-
```python
117
-
from azureml.contrib.interpret.visualize import ExplanationDashboard
0 commit comments