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
Remove outdated text & make formatting/language more consistent
- Removed known issue about azureml-sdk install, as the issue in Python 3.7.4 has been fixed.
- Fixed some formatting issues.
- Update headings to be more consistent throughout the article.
***Error message: No matching distribution found for azureml-dataprep-native**
47
-
48
-
Anaconda's Python 3.7.4 distribution has a bug that breaks azureml-sdk install. This issue is discussed in this [GitHub Issue](https://github.com/ContinuumIO/anaconda-issues/issues/11195)
49
-
50
-
This can be worked around by creating a new Conda Environment using this command:
51
-
```bash
52
-
conda create -n <env-name> python=3.7.3
53
-
```
54
-
Which creates a Conda Environment using Python 3.7.3, which doesn't have the install issue present in 3.7.4.
55
-
56
46
***Databricks failure when installing packages**
57
47
58
48
Azure Machine Learning SDK installation fails on Azure Databricks when more packages are installed. Some packages, such as`psutil`, can cause conflicts. To avoid installation errors, install packages by freezing the library version. This issue is related to Databricks andnot to the Azure Machine Learning SDK. You might experience this issue with other libraries, too. Example:
@@ -84,10 +74,9 @@ Learn about the [resource quotas](how-to-manage-quotas.md) you might encounter w
84
74
85
75
***Databricks FailToSendFeather**: If you see a `FailToSendFeather` error when reading data on Azure Databricks cluster, refer to the following solutions:
86
76
87
-
* Upgrade `azureml-sdk[automl]` package to the latest version.
88
-
* Add `azureml-dataprep` version 1.1.8 or above.
89
-
* Add `pyarrow` version 0.11or above.
90
-
`
77
+
* Upgrade `azureml-sdk[automl]` package to the latest version.
78
+
* Add `azureml-dataprep` version 1.1.8 or above.
79
+
* Add `pyarrow` version 0.11or above.
91
80
92
81
## Create and manage workspaces
93
82
@@ -108,9 +97,7 @@ If you receive an error `Unable to upload project files to working directory in
108
97
109
98
If you are using file share for other workloads, such as data transfer, the recommendation is to use blobs so that file share is free to be used for submitting runs. You may also split the workload between two different workspaces.
110
99
111
-
### Datasets and Data Preparation
112
-
113
-
These are known issues for Azure Machine Learning Datasets.
100
+
### Passing data as input
114
101
115
102
***TypeError: FileNotFound: No such fileor directory**: This error occurs if the file path you provide isn't where the file is located. You need to make sure the way you refer to the file is consistent with where you mounted your dataset on your compute target. To ensure a deterministic state, we recommend using the abstract path when mounting a dataset to a compute target. For example, in the following code we mount the dataset under the root of the filesystem of the compute target, `/tmp`.
116
103
@@ -123,8 +110,7 @@ These are known issues for Azure Machine Learning Datasets.
123
110
124
111
If you don't include the leading forward slash, '/', you'll need to prefix the working directory e.g. `/mnt/batch/.../tmp/dataset` on the compute target to indicate where you want the dataset to be mounted.
125
112
126
-
### Data labeling projects issues
127
-
113
+
### Data labeling projects
128
114
129
115
|Issue |Resolution |
130
116
|---------|---------|
@@ -133,9 +119,9 @@ These are known issues for Azure Machine Learning Datasets.
133
119
|When reviewing images, newly labeled images are not shown | To load all labeled images, choose the **First** button. The **First** button will take you back to the front of the list, but loads all labeled data. |
134
120
|Pressing Esc key while labeling forobject detection creates a zero size label on the top-left corner. Submitting labels in this state fails. | Delete the label by clicking on the cross mark next to it. |
135
121
136
-
## Azure Machine Learning designer issues
122
+
## Azure Machine Learning designer
137
123
138
-
Known issueswith the designer.
124
+
Known issues:
139
125
140
126
***Long compute preparation time**: It may be a few minutes or even longer when you first connect to or create a compute target.
0 commit comments