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-create-data-assets.md
+15-12Lines changed: 15 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,12 +49,12 @@ To create and work with data assets, you need:
49
49
When you create a data asset in Azure Machine Learning, you'll need to specify a `path` parameter that points to its location. Below is a table that shows the different data locations supported in Azure Machine Learning and examples for the `path` parameter:
50
50
51
51
52
-
|Location | Examples |
53
-
|---------|---------|
54
-
|A path on your local computer |`./home/username/data/my_data`|
55
-
|A path on a datastore |`azureml://datastores/<data_store_name>/paths/<path>`|
56
-
|A path on a public http(s) server |`https://raw.githubusercontent.com/pandas-dev/pandas/main/doc/data/titanic.csv`|
|A path on your local computer |`./home/username/data/my_data`||
55
+
|A path on a datastore |`azureml://datastores/<data_store_name>/paths/<path>`||
56
+
|A path on a public http(s) server |`https://raw.githubusercontent.com/pandas-dev/pandas/main/doc/data/titanic.csv`| https path pointing to a folder is not supported since https is not a filesystem. Please use other formats(wasbs/abfss/adl) instead for folder type of data.|
57
+
|A path on Azure Storage |`wasbs://<containername>@<accountname>.blob.core.windows.net/<path_to_data>/` <br> `abfss://<file_system>@<account_name>.dfs.core.windows.net/<path>` <br> `adl://<accountname>.azuredatalakestore.net/<path_to_data>/`||
58
58
59
59
60
60
> [!NOTE]
@@ -63,6 +63,9 @@ When you create a data asset in Azure Machine Learning, you'll need to specify a
63
63
> [!IMPORTANT]
64
64
> The studio only supports browsing of credential-less ADLS Gen 2 datastores.
65
65
66
+
> [!IMPORTANT]
67
+
> Authentication to access data will use user's identity or compute MSI by default.
68
+
66
69
67
70
## Data asset types
68
71
-[**URIs**](#Create a `uri_folder` data asset) - A **U**niform **R**esource **I**dentifier that is a reference to a storage location on your local computer or in the cloud that makes it easy to access data in your jobs. Azure Machine Learning distinguishes two types of URIs:`uri_file` and `uri_folder`.
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-read-write-data-v2.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,13 +37,13 @@ Learn how to read and write data for your jobs with the Azure Machine Learning P
37
37
When you provide a data input/output to a Job, you'll need to specify a `path` parameter that points to the data location. Below is a table that shows the different data locations supported in Azure Machine Learning and examples for the `path` parameter:
38
38
39
39
40
-
|Location | Examples |
41
-
|---------|---------|
42
-
|A path on your local computer |`./home/username/data/my_data`|
43
-
|A path on a public http(s) server |`https://raw.githubusercontent.com/pandas-dev/pandas/main/doc/data/titanic.csv`|
44
-
|A path on Azure Storage |`https://<account_name>.blob.core.windows.net/<container_name>/<path>` <br> `abfss://<file_system>@<account_name>.dfs.core.windows.net/<path>`|
45
-
|A path on a Datastore |`azureml://datastores/<data_store_name>/paths/<path>`|
46
-
|A path to a Data Asset |`azureml:<my_data>:<version>`|
40
+
|Location | Examples | Notes|
41
+
|---------|---------|---------|
42
+
|A path on your local computer |`./home/username/data/my_data`||
43
+
|A path on a public http(s) server |`https://raw.githubusercontent.com/pandas-dev/pandas/main/doc/data/titanic.csv`| https path pointing to a folder is not supported since https is not a filesystem. Please use other formats(wasbs/abfss/adl) instead for folder type of data.|
44
+
|A path on Azure Storage |`wasbs://<containername>@<accountname>.blob.core.windows.net/<path_to_data>/` <br> `abfss://<file_system>@<account_name>.dfs.core.windows.net/<path>`<br> `adl://<accountname>.azuredatalakestore.net/<path_to_data>/`||
45
+
|A path on a Datastore |`azureml://datastores/<data_store_name>/paths/<path>`||
46
+
|A path to a Data Asset |`azureml:<my_data>:<version>`||
47
47
48
48
## Supported modes
49
49
@@ -75,7 +75,7 @@ Create a job specification YAML file (`<file-name>.yml`). Specify in the `inputs
0 commit comments