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
# optional: if you want to create a data asset from the output,
322
-
# then uncomment name (name can be set without setting version)
323
-
# name: <name_of_data_asset>
332
+
# then uncomment `name` (`name` can be set without setting `version`, and in this way, we will set `version` automatically for you)
333
+
# name: <name_of_data_asset> # use `name` and `version` to create a data asset from the output
324
334
# version: <version>
325
-
335
+
326
336
```
327
337
328
338
Next, submit the job using the CLI:
@@ -352,13 +362,13 @@ When you submit a job, the Azure Machine Learning data runtime controls the data
352
362
353
363
When you provide a data input/output to a job, you must specify a `path` parameter that points to the data location. This table shows the different data locations that Azure Machine Learning supports, and also shows `path` parameter examples:
354
364
355
-
|Location | Examples |
356
-
|---------|---------|
357
-
|A path on your local computer |`./home/username/data/my_data`|
358
-
|A path on a public http(s) server |`https://raw.githubusercontent.com/pandas-dev/pandas/main/doc/data/titanic.csv`|
359
-
|A path on Azure Storage |`wasbs://<container_name>@<account_name>.blob.core.windows.net/<path>`<br>`abfss://<file_system>@<account_name>.dfs.core.windows.net/<path>`|
360
-
|A path on an Azure Machine Learning Datastore |`azureml://datastores/<data_store_name>/paths/<path>`|
361
-
|A path to a Data Asset |`azureml:<my_data>:<version>`|
365
+
|Location | Examples | Input | Output |
366
+
|---------|---------|---------|---------|
367
+
|A path on your local computer |`./home/username/data/my_data`|Y|N|
368
+
|A path on a public http(s) server |`https://raw.githubusercontent.com/pandas-dev/pandas/main/doc/data/titanic.csv`|Y|N|
369
+
|A path on Azure Storage |`wasbs://<container_name>@<account_name>.blob.core.windows.net/<path>`<br>`abfss://<file_system>@<account_name>.dfs.core.windows.net/<path>`|Y, only for identity-based authentication.|N|
370
+
|A path on an Azure Machine Learning Datastore |`azureml://datastores/<data_store_name>/paths/<path>`|Y|Y|
371
+
|A path to a Data Asset |`azureml:<my_data>:<version>`|Y|N, but you can use `name` and `version` to create a data asset from output|
362
372
363
373
## Modes
364
374
@@ -1127,4 +1137,4 @@ az ml job create -f <file-name>.yml
1127
1137
1128
1138
* [Train models](how-to-train-model.md)
1129
1139
* [Tutorial: Create production ML pipelines with Python SDK v2](tutorial-pipeline-python-sdk.md)
1130
-
* Learn more about [Data in Azure Machine Learning](concept-data.md)
1140
+
* Learn more about [Data in Azure Machine Learning](concept-data.md)
0 commit comments