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
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ In this article, you learn how to create a data asset in Azure Machine Learning.
27
27
28
28
The benefits of creating data assets are:
29
29
30
-
* You can **share and reuse data** with other members of the team such that they do not need to remember file locations.
30
+
* You can **share and reuse data** with other members of the team such that they don't need to remember file locations.
31
31
32
32
* You can **seamlessly access data** during model training (on any supported compute type) without worrying about connection strings or data paths.
33
33
@@ -63,13 +63,13 @@ When you create a data asset in Azure Machine Learning, you'll need to specify a
63
63
64
64
65
65
## Data asset types
66
-
-[**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 very easy to access data in your jobs. Azure Machine Learning distinguishes two types of URIs:`uri_file` and `uri_folder`.
66
+
-[**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`.
67
67
68
-
-[**MLTable**](#Create a `mltable` data asset) - `MLTable` helps you to abstract the schema definition for tabular data so it is more suitable for complex/changing schema or to be leveraged in automl. If you just want to create an data asset for a job or you want to write your own parsing logic in python you could use `uri_file`, `uri_folder`.
68
+
-[**MLTable**](#Create a `mltable` data asset) - `MLTable` helps you to abstract the schema definition for tabular data so it is more suitable for complex/changing schema or to be used in AutoML. If you just want to create a data asset for a job or you want to write your own parsing logic in python you could use `uri_file`, `uri_folder`.
69
69
70
70
The ideal scenarios to use `mltable` are:
71
71
- The schema of your data is complex and/or changes frequently.
72
-
- You only need a subset of data (for example: a sample of rows or files, specific columns, etc).
72
+
- You only need a subset of data (for example: a sample of rows or files, specific columns, etc.)
73
73
- AutoML jobs requiring tabular data.
74
74
75
75
If your scenario does not fit the above then it is likely that URIs are a more suitable type.
@@ -223,7 +223,7 @@ To create a File data asset in the Azure Machine Learning studio, use the follow
223
223
- JSON Lines
224
224
- Delta Lake
225
225
226
-
Please find more details about what are the abilities we provide via `mltable` in [reference-yaml-mltable](reference-yaml-mltable.md).
226
+
Find more details about what are the abilities we provide via `mltable` in [reference-yaml-mltable](reference-yaml-mltable.md).
227
227
228
228
In this section, we show you how to create a data asset when the type is an `mltable`.
229
229
@@ -262,7 +262,7 @@ transformations:
262
262
#version_as_of: Version to be specified for time-travel on the specific Delta Lake data.
263
263
```
264
264
265
-
For more transformations availabe in `mltable`, please look into [reference-yaml-mltable](reference-yaml-mltable.md).
265
+
For more transformations available in `mltable`, please look into [reference-yaml-mltable](reference-yaml-mltable.md).
0 commit comments