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-auto-train-image-models.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ If your training data is in a different format (like, pascal VOC or COCO), you c
110
110
> The training data needs to have at least 10 images in order to be able to submit an AutoML run.
111
111
112
112
> [!Warning]
113
-
> Creation of `MLTable`from data inJSONLformatis supported using the SDKandCLI only, for this capability. Creating the `MLTable` via UIisnot supported at this time. As of now, the UI doesn't recognize the StreamInfo datatype, which is the datatype used for image URLs in JSONL format.
113
+
> Creation of `MLTable`from data inJSONLformatis supported using the SDKandCLI only, for this capability. Creating the `MLTable` via UIisnot supported at this time.
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-prepare-datasets-for-automl-images.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ If your labeled training data is in a different format (like, pascal VOC or COCO
36
36
## Get labeled data
37
37
In order to train computer vision models using AutoML, you need to first get labeled training data. The images need to be uploaded to the cloud and label annotations need to be in JSONL format. You can either use the Azure ML Data Labeling tool to label your data or you could start with pre-labeled image data.
38
38
39
-
## Using Azure ML Data Labeling tool to label your training data
39
+
###Using Azure ML Data Labeling tool to label your training data
40
40
If you don't have pre-labeled data, you can use Azure Machine Learning's [data labeling tool](how-to-create-image-labeling-projects.md) to manually label images. This tool automatically generates the data required for training in the accepted format.
41
41
42
42
It helps to create, manage, and monitor data labeling tasks for

117
+
108
118
---
109
119
110
120
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.
@@ -133,12 +143,21 @@ my_data = Data(
133
143
name="fridge-items-images-object-detection",
134
144
)
135
145
```
146
+
147
+
# [Studio](#tab/Studio)
148
+
149
+

150
+
136
151
---
137
152
138
153
Next, you will need to get the label annotations in JSONL format. The schema of labeled data depends on the computer vision task at hand. Refer to [schemas for JSONL files for AutoML computer vision experiments](reference-automl-images-schema.md) to learn more about the required JSONL schema for each task type.
139
154
140
155
If your training data is in a different format (like, pascal VOC or COCO), [helper scripts](https://github.com/Azure/azureml-examples/blob/v2samplesreorg/v1/python-sdk/tutorials/automl-with-azureml/image-object-detection/coco2jsonl.py) to convert the data to JSONL are available in [notebook examples](https://github.com/Azure/azureml-examples/blob/v2samplesreorg/sdk/python/jobs/automl-standalone-jobs).
141
156
157
+
Once you have created jsonl file following the above steps, you can register it as a data asset using UI. Make sure you select `stream` type in schema section as shown below.
158
+
159
+

160
+
142
161
### Using pre-labeled training data from Azure Blob storage
143
162
If you have your labeled training data present in a container in Azure Blob storage, then you can access it directly from there by [creating a datastore referring to that container](how-to-datastore.md#create-an-azure-blob-datastore).
0 commit comments