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/resource-known-issues.md
+24-2Lines changed: 24 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Sometimes it can be helpful if you can provide diagnostic information when askin
34
34
Learn about the [resource quotas](how-to-manage-quotas.md) you might encounter when working with Azure Machine Learning.
35
35
36
36
## Installation and import
37
-
37
+
38
38
***Pip Installation: Dependencies are not guaranteed to be consistent with single line installation**:
39
39
40
40
This is a known limitation of pip, as it does not have a functioning dependency resolver when you install as a single line. The first unique dependency is the only one it looks at.
@@ -51,7 +51,29 @@ Learn about the [resource quotas](how-to-manage-quotas.md) you might encounter w
51
51
pip install azure-ml-datadrift
52
52
pip install azureml-train-automl
53
53
```
54
-
54
+
55
+
* **Explanation package not guarateed to be installed when installing the azureml-train-automl-client:**
56
+
57
+
When running a remote automl run with model explanation enabled you will see an error message saying ""Please install azureml-explain-model package for model explanations." This is a known issue and as a workaround please follow one of the steps below:
58
+
59
+
1. Install azureml-explain-model locally.
60
+
```
61
+
pip install azureml-explain-model
62
+
```
63
+
2. Disable the explainability feature entirely by passing model_explainability=False in the automl configuration.
* **Panda errors: Typically seen during AutoML Experiment:**
56
78
57
79
When manually setting up your environmnet using pip, you will notice attribute errors (especially from pandas) due to unsupported package versions being installed. In order to prevent such errors, [please install the AutoML SDK using the automl_setup.cmd](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/README.md):
0 commit comments