Skip to content

Commit aa2bd0e

Browse files
authored
Update how-to-prepare-datasets-for-automl-images.md
1 parent c360def commit aa2bd0e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/how-to-prepare-datasets-for-automl-images.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ my_training_data_input = Input(
7777
### Using pre-labeled training data from local machine
7878
If you have previously labeled data that you would like to use to train your model, you will first need to upload the images to the default Azure Blob Storage of your Azure ML Workspace and register it as a [data asset](how-to-create-data-assets.md).
7979

80-
Below scripts uploads the image data on your local machine at path "./data/odFridgeObjects" to datastore in Azure Blob Storage. Thereafter, it creates a new data asset with the name "fridge-items-images-object-detection" in your Azure ML Workspace.
80+
The following script uploads the image data on your local machine at path "./data/odFridgeObjects" to datastore in Azure Blob Storage. It then creates a new data asset with the name "fridge-items-images-object-detection" in your Azure ML Workspace.
8181

82-
If there already exists a data asset with name "fridge-items-images-object-detection" in your Azure ML Workspace, then it will update version number of the data asset and point it to the new location where the image data uploaded.
82+
If there already exists a data asset with the name "fridge-items-images-object-detection" in your Azure ML Workspace, it will update the version number of the data asset and point it to the new location where the image data uploaded.
8383

8484
# [Azure CLI](#tab/cli)
8585
[!INCLUDE [cli v2](../../includes/machine-learning-cli-v2.md)]
@@ -107,7 +107,7 @@ az ml data create -f [PATH_TO_YML_FILE] --workspace-name [YOUR_AZURE_WORKSPACE]
107107
[!Notebook-python[] (~/azureml-examples-v2samplesreorg/sdk/python/jobs/automl-standalone-jobs/automl-image-object-detection-task-fridge-items/automl-image-object-detection-task-fridge-items.ipynb?name=upload-data)]
108108
---
109109

110-
If you already have your data present in an existing datastore and want to create data asset out of it, you can do so by providing path to the data in datastore, instead of providing path of your local machine. Update the code in [above section](how-to-prepare-datasets-for-automl-images.md#using-pre-labeled-training-data-from-local-machine) with below snippet.
110+
If you already have your data present in an existing datastore and want to create a data asset out of it, you can do so by providing the path to the data in the datastore, instead of providing the path of your local machine. Update the code [above](how-to-prepare-datasets-for-automl-images.md#using-pre-labeled-training-data-from-local-machine) with the following snippet.
111111

112112
# [Azure CLI](#tab/cli)
113113
[!INCLUDE [cli v2](../../includes/machine-learning-cli-v2.md)]

0 commit comments

Comments
 (0)