Skip to content

Commit 68dcba8

Browse files
authored
Merge pull request #210745 from sharma-riti/update_image_urls
update JSONL format in documentation to use long form datastore uri
2 parents 48a2944 + 5b21d87 commit 68dcba8

File tree

5 files changed

+452
-28
lines changed

5 files changed

+452
-28
lines changed

articles/machine-learning/how-to-auto-train-image-models.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ The following is a sample JSONL file for image classification:
127127

128128
```python
129129
{
130-
"image_url": "AmlDatastore://image_data/Image_01.png",
130+
"image_url": "azureml://subscriptions/<my-subscription-id>/resourcegroups/<my-resource-group>/workspaces/<my-workspace>/datastores/<my-datastore>/paths/image_data/Image_01.png",
131131
"image_details":
132132
{
133133
"format": "png",
@@ -137,7 +137,7 @@ The following is a sample JSONL file for image classification:
137137
"label": "cat"
138138
}
139139
{
140-
"image_url": "AmlDatastore://image_data/Image_02.jpeg",
140+
"image_url": "azureml://subscriptions/<my-subscription-id>/resourcegroups/<my-resource-group>/workspaces/<my-workspace>/datastores/<my-datastore>/paths/image_data/Image_02.jpeg",
141141
"image_details":
142142
{
143143
"format": "jpeg",
@@ -152,7 +152,7 @@ The following is a sample JSONL file for image classification:
152152

153153
```python
154154
{
155-
"image_url": "AmlDatastore://image_data/Image_01.png",
155+
"image_url": "azureml://subscriptions/<my-subscription-id>/resourcegroups/<my-resource-group>/workspaces/<my-workspace>/datastores/<my-datastore>/paths/image_data/Image_01.png",
156156
"image_details":
157157
{
158158
"format": "png",
@@ -170,7 +170,7 @@ The following is a sample JSONL file for image classification:
170170
}
171171
}
172172
{
173-
"image_url": "AmlDatastore://image_data/Image_02.png",
173+
"image_url": "azureml://subscriptions/<my-subscription-id>/resourcegroups/<my-resource-group>/workspaces/<my-workspace>/datastores/<my-datastore>/paths/image_data/Image_02.png",
174174
"image_details":
175175
{
176176
"format": "jpeg",

0 commit comments

Comments
 (0)