Skip to content

Commit 092d247

Browse files
authored
Update how-to-create-data-assets.md
1 parent ca2ef7e commit 092d247

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/machine-learning/how-to-create-data-assets.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ In this article, you learn how to create a data asset in Azure Machine Learning.
2727
2828
The benefits of creating data assets are:
2929

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.
3131

3232
* You can **seamlessly access data** during model training (on any supported compute type) without worrying about connection strings or data paths.
3333

@@ -63,13 +63,13 @@ When you create a data asset in Azure Machine Learning, you'll need to specify a
6363
6464

6565
## 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`.
6767

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`.
6969

7070
The ideal scenarios to use `mltable` are:
7171
- 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.)
7373
- AutoML jobs requiring tabular data.
7474

7575
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
223223
- JSON Lines
224224
- Delta Lake
225225

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).
227227

228228
In this section, we show you how to create a data asset when the type is an `mltable`.
229229

@@ -262,7 +262,7 @@ transformations:
262262
#version_as_of: Version to be specified for time-travel on the specific Delta Lake data.
263263
```
264264

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).
266266

267267

268268
> [!IMPORTANT]

0 commit comments

Comments
 (0)