Skip to content

Commit fd4c7c5

Browse files
Merge pull request #272229 from fbsolo-ms1/freshness-update-branch
Freshness updates for five "small" .MD files . . .
2 parents 9bf955f + 44c5cb1 commit fd4c7c5

File tree

5 files changed

+21
-24
lines changed

5 files changed

+21
-24
lines changed

articles/machine-learning/migrate-to-v2-assets-data.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: mldata
88
ms.topic: reference
99
author: SturgeonMi
1010
ms.author: xunwan
11-
ms.date: 02/13/2023
11+
ms.date: 04/15/2024
1212
ms.reviewer: franksolomon
1313
ms.custom: migration
1414
monikerRange: 'azureml-api-1 || azureml-api-2'
@@ -17,13 +17,13 @@ monikerRange: 'azureml-api-1 || azureml-api-2'
1717
# Upgrade data management to SDK v2
1818

1919
In V1, an Azure Machine Learning dataset can either be a `Filedataset` or a `Tabulardataset`.
20-
In V2, an Azure Machine Learning data asset can be a `uri_folder`, `uri_file` or `mltable`.
21-
You can conceptually map `Filedataset` to `uri_folder` and `uri_file`, `Tabulardataset` to `mltable`.
20+
In V2, an Azure Machine Learning data asset can be a `uri_folder`, `uri_file`, or `mltable`.
21+
Conceptually, you can map `Filedataset` to `uri_folder`, and `uri_file` or `Tabulardataset` to `mltable`.
2222

23-
* URIs (`uri_folder`, `uri_file`) - a Uniform Resource Identifier 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.
24-
* MLTable - a method to abstract the tabular data schema definition, to make it easier for consumers of that data to materialize the table into a Pandas/Dask/Spark dataframe.
23+
* URIs (`uri_folder`, `uri_file`) - a Uniform Resource Identifier is a reference to a storage location on your local computer or in the cloud, for easy access to data in your jobs.
24+
* MLTable - a method to abstract the tabular data schema definition; consumers of that data can more easily materialize the table into a Pandas/Dask/Spark dataframe.
2525

26-
This article compares data scenario(s) in SDK v1 and SDK v2.
26+
This article compares data scenarios in SDK v1 and SDK v2.
2727

2828
## Create a `filedataset`/ uri type of data asset
2929

@@ -224,4 +224,4 @@ For more information, see the documentation here:
224224
* [Data in Azure Machine Learning](concept-data.md?tabs=uri-file-example%2Ccli-data-create-example)
225225
* [Create data_assets](how-to-create-data-assets.md?tabs=CLI)
226226
* [Read and write data in a job](how-to-read-write-data-v2.md)
227-
* [V2 datastore operations](/python/api/azure-ai-ml/azure.ai.ml.operations.datastoreoperations)
227+
* [V2 datastore operations](/python/api/azure-ai-ml/azure.ai.ml.operations.datastoreoperations)

articles/machine-learning/migrate-to-v2-resource-compute.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: mldata
88
ms.topic: reference
99
author: vijetajo
1010
ms.author: vijetaj
11-
ms.date: 02/14/2023
11+
ms.date: 04/15/2024
1212
ms.reviewer: franksolomon
1313
ms.custom: migration
1414
monikerRange: 'azureml-api-1 || azureml-api-2'
@@ -18,8 +18,7 @@ monikerRange: 'azureml-api-1 || azureml-api-2'
1818

1919
The compute management functionally remains unchanged with the v2 development platform.
2020

21-
This article gives a comparison of scenario(s) in SDK v1 and SDK v2.
22-
21+
This article gives a comparison of scenarios in SDK v1 and SDK v2.
2322

2423
## Create compute instance
2524

articles/machine-learning/reference-yaml-data.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,23 @@ ms.custom: cliv2
1010

1111
author: ynpandey
1212
ms.author: yogipandey
13-
ms.date: 02/14/2023
13+
ms.date: 04/15/2024
1414
ms.reviewer: franksolomon
1515
---
1616

1717
# CLI (v2) data YAML schema
1818

1919
[!INCLUDE [cli v2](includes/machine-learning-cli-v2.md)]
2020

21-
The source JSON schema can be found at https://azuremlschemas.azureedge.net/latest/data.schema.json.
22-
23-
21+
You can find the source JSON schema at https://azuremlschemas.azureedge.net/latest/data.schema.json.
2422

2523
[!INCLUDE [schema note](includes/machine-learning-preview-old-json-schema-note.md)]
2624

2725
## YAML syntax
2826

2927
| Key | Type | Description | Allowed values | Default value |
3028
| --- | ---- | ----------- | -------------- | ------------- |
31-
| `$schema` | string | The YAML schema. If you use the Azure Machine Learning Visual Studio Code extension to author the YAML file, you can invoke schema and resource completions if you include `$schema` at the top of your file. | | |
29+
| `$schema` | string | The YAML schema. If you use the Azure Machine Learning Visual Studio Code extension to author the YAML file, include `$schema` at the top of your file to invoke schema and resource completions. | | |
3230
| `name` | string | **Required.** The data asset name. | | |
3331
| `version` | string | The dataset version. If omitted, Azure Machine Learning autogenerates a version. | | |
3432
| `description` | string | The data asset description. | | |
@@ -38,11 +36,11 @@ The source JSON schema can be found at https://azuremlschemas.azureedge.net/late
3836

3937
## Remarks
4038

41-
The `az ml data` commands can be used for managing Azure Machine Learning data assets.
39+
The `az ml data` commands can be used to manage Azure Machine Learning data assets.
4240

4341
## Examples
4442

45-
Examples are available in the [examples GitHub repository](https://github.com/Azure/azureml-examples/tree/main/cli/assets/data). Several are shown:
43+
Visit [this GitHub resource](https://github.com/Azure/azureml-examples/tree/main/cli/assets/data) for examples. Several are shown:
4644

4745
## YAML: datastore file
4846

@@ -78,4 +76,4 @@ Examples are available in the [examples GitHub repository](https://github.com/Az
7876

7977
## Next steps
8078

81-
- [Install and use the CLI (v2)](how-to-configure-cli.md)
79+
- [Install and use the CLI (v2)](how-to-configure-cli.md)

articles/machine-learning/reference-yaml-datastore-blob.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom: cliv2
1010

1111
author: ynpandey
1212
ms.author: yogipandey
13-
ms.date: 02/14/2023
13+
ms.date: 04/15/2024
1414
ms.reviewer: franksolomon
1515
---
1616

@@ -26,7 +26,7 @@ See the source JSON schema at https://azuremlschemas.azureedge.net/latest/azureB
2626

2727
| Key | Type | Description | Allowed values | Default value |
2828
| --- | ---- | ----------- | -------------- | ------- |
29-
| `$schema` | string | The YAML schema. If you use the Azure Machine Learning Visual Studio Code extension to author the YAML file, you can invoke schema and resource completions if you include `$schema` at the top of your file. | | |
29+
| `$schema` | string | The YAML schema. If you use the Azure Machine Learning Visual Studio Code extension to author the YAML file, include `$schema` at the top of your file to invoke schema and resource completions. | | |
3030
| `type` | string | **Required.** The datastore type. | `azure_blob` | |
3131
| `name` | string | **Required.** The datastore name. | | |
3232
| `description` | string | The datastore description. | | |
@@ -45,7 +45,7 @@ You can use the `az ml datastore` command to manage Azure Machine Learning datas
4545

4646
## Examples
4747

48-
See examples in the [examples GitHub repository](https://github.com/Azure/azureml-examples/tree/main/cli/resources/datastore). Several are shown here:
48+
Visit [this GitHub resource](https://github.com/Azure/azureml-examples/tree/main/cli/resources/datastore) for examples. Several are shown here:
4949

5050
## YAML: identity-based access
5151

articles/machine-learning/reference-yaml-datastore-data-lake-gen1.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.custom: cliv2
1010

1111
author: ynpandey
1212
ms.author: yogipandey
13-
ms.date: 02/14/2023
13+
ms.date: 04/15/2024
1414
ms.reviewer: franksolomon
1515
---
1616

@@ -26,7 +26,7 @@ See the source JSON schema at https://azuremlschemas.azureedge.net/latest/azureD
2626

2727
| Key | Type | Description | Allowed values | Default value |
2828
| --- | ---- | ----------- | -------------- | ------- |
29-
| `$schema` | string | The YAML schema. If you use the Azure Machine Learning Visual Studio Code extension to author the YAML file, you can invoke schema and resource completions if you include `$schema` at the top of your file. | | |
29+
| `$schema` | string | The YAML schema. If you use the Azure Machine Learning Visual Studio Code extension to author the YAML file, include `$schema` at the top of your file to invoke schema and resource completions. | | |
3030
| `type` | string | **Required.** The datastore type. | `azure_data_lake_gen1` | |
3131
| `name` | string | **Required.** The datastore name. | | |
3232
| `description` | string | The datastore description. | | |
@@ -57,4 +57,4 @@ See examples in the [examples GitHub repository](https://github.com/Azure/azurem
5757

5858
## Next steps
5959

60-
- [Install and use the CLI (v2)](how-to-configure-cli.md)
60+
- [Install and use the CLI (v2)](how-to-configure-cli.md)

0 commit comments

Comments
 (0)