Skip to content

Commit 2a75db3

Browse files
committed
code addition
1 parent d6f712d commit 2a75db3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/machine-learning/service/resource-known-issues.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,15 +92,16 @@ These are known issues for Azure Machine Learning Datasets.
9292

9393
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 recommended to use 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`.
9494

95-
If you don't include the leading forward slash, '/', the dataset will be mounted under the current working directory of the compute target.
96-
9795
```python
9896
# Note the leading / in '/tmp/dataset'
9997
script_params = {
10098
'--data-folder': dset.as_named_input('dogscats_train').as_mount('/tmp/dataset'),
10199
}
102100
```
103101

102+
If you don't include the leading forward slash, '/', you'll need to prefix the working directory e.g.
103+
`/mnt/batch/.../tmp/dataset` on the compute target to indicate where you want the dataset to be mounted.
104+
104105
### Fail to read Parquet file from HTTP or ADLS Gen 2
105106

106107
There is a known issue in AzureML DataPrep SDK version 1.1.25 that causes a failure when creating a dataset by reading Parquet files from HTTP or ADLS Gen 2. It will fail with `Cannot seek once reading started.`. To fix this issue, please upgrade `azureml-dataprep` to a version higher than 1.1.26, or downgrade to a version lower than 1.1.24.

0 commit comments

Comments
 (0)