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/cognitive-services/Custom-Vision-Service/copy-move-projects.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ ms.author: pafarley
15
15
16
16
After you've created and trained a Custom Vision project, you may want to copy your project to another resource. If your app or business depends on the use of a Custom Vision project, we recommend you copy your model to another Custom Vision account in another region. Then if a regional outage occurs, you can access your project in the region where it was copied.
17
17
18
-
The **[ExportProject](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)** and **[ImportProject](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee3)** APIs enable this scenario by allowing you to copy projects from one Custom Vision account into others. This guide shows you how to use these REST APIs with cURL. You can also use an HTTP request service like Postman to issue the requests.
18
+
The **[ExportProject](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)** and **[ImportProject](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee3)** APIs enable this scenario by allowing you to copy projects from one Custom Vision account into others. This guide shows you how to use these REST APIs with cURL. You can also use an HTTP request service like Postman to issue the requests.
19
19
20
20
> [!TIP]
21
21
> For an example of this scenario using the Python client library, see the [Move Custom Vision Project](https://github.com/Azure-Samples/custom-vision-move-project/tree/master/) repository on GitHub.
@@ -38,7 +38,7 @@ The process for copying a project consists of the following steps:
38
38
39
39
## Get the project ID
40
40
41
-
First call **[GetProjects](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddead)** to see a list of your existing Custom Vision projects and their IDs. Use the training key and endpoint of your source account.
41
+
First call **[GetProjects](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddead)** to see a list of your existing Custom Vision projects and their IDs. Use the training key and endpoint of your source account.
42
42
43
43
```curl
44
44
curl -v -X GET "{endpoint}/customvision/v3.3/Training/projects"
@@ -76,7 +76,7 @@ You'll get a `200\OK` response with a list of projects and their metadata in the
76
76
77
77
## Export the project
78
78
79
-
Call **[ExportProject](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)** using the project ID and your source training key and endpoint.
79
+
Call **[ExportProject](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)** using the project ID and your source training key and endpoint.
80
80
81
81
```curl
82
82
curl -v -X GET "{endpoint}/customvision/v3.3/Training/projects/{projectId}/export"
@@ -101,7 +101,7 @@ You'll get a `200/OK` response with metadata about the exported project and a re
101
101
102
102
## Import the project
103
103
104
-
Call **[ImportProject](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee3)** using your target training key and endpoint, along with the reference token. You can also give your project a name in its new account.
104
+
Call **[ImportProject](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee3)** using your target training key and endpoint, along with the reference token. You can also give your project a name in its new account.
105
105
106
106
```curl
107
107
curl -v -G -X POST "{endpoint}/customvision/v3.3/Training/projects/import"
@@ -139,4 +139,4 @@ You'll get a `200/OK` response with metadata about your newly imported project.
139
139
## Next steps
140
140
141
141
In this guide, you learned how to copy and move a project between Custom Vision resources. Next, explore the API reference docs to see what else you can do with Custom Vision.
142
-
*[REST API reference documentation](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)
142
+
*[REST API reference documentation](/rest/api/custom-vision/)
Copy file name to clipboardExpand all lines: articles/cognitive-services/Custom-Vision-Service/faq.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ sections:
73
73
- question: |
74
74
Can training images be exported with the tags that were added in the Custom Vision portal?
75
75
answer: |
76
-
Yes, you can use the [GetImages API](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb4) to export with tags.
76
+
Yes, you can use the [GetImages API](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb4) to export with tags.
77
77
78
78
- question: |
79
79
I'm getting the message, `Can't train just yet. Reserved budget in hours is not enough to do advanced training`. What should I do?
* Optionally set other URL parameters to configure what type of model your project will use. See the [CreatProject API](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeae) for options.
45
+
* Optionally set other URL parameters to configure what type of model your project will use. See the [CreatProject API](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeae) for options.
46
46
47
47
You'll receive a JSON response like the following. Save the `"id"` value of your project to a temporary location.
48
48
@@ -99,7 +99,7 @@ You'll get a JSON response like the following. Save the `"id"` value of each tag
99
99
100
100
Next, download the sample images for this project. Save the contents of the [sample Images folder](https://github.com/Azure-Samples/cognitive-services-sample-data-files/tree/master/CustomVision/ImageClassification/Images) to your local device.
101
101
102
-
Use the following command to upload the images and apply tags; once for the "Hemlock" images, and separately for the "Japanese Cherry" images. See the [Create Images From Data](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb5) API for more options.
102
+
Use the following command to upload the images and apply tags; once for the "Hemlock" images, and separately for the "Japanese Cherry" images. See the [Create Images From Data](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb5) API for more options.
@@ -118,7 +118,7 @@ This method trains the model on the tagged images you've uploaded and returns an
118
118
* Replace `{projectId}` with your own project ID.
119
119
* Replace `{tagArray}` with the ID of a tag.
120
120
* Then, populate the body of the request with the binary data of the images you want to tag.
121
-
* Optionally use other URL parameters. See the [Train Project](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee1) API for options.
121
+
* Optionally use other URL parameters. See the [Train Project](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee1) API for options.
122
122
123
123
> [!TIP]
124
124
> Train with selected tags
@@ -168,7 +168,7 @@ This method makes the current iteration of the model available for querying. You
168
168
* Replace `{iterationId}` with the ID returned in the previous step.
169
169
* Replace `{publishedName}` with the name you'd like to assign to your prediction model.
170
170
* Replace `{predictionId}` with your own prediction resource ID. You can find the prediction resource ID on the resource's **Properties** tab in the Azure portal, listed as **Resource ID**.
171
-
* Optionally use other URL parameters. See the [Publish Iteration](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fdded5) API.
171
+
* Optionally use other URL parameters. See the [Publish Iteration](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fdded5) API.
172
172
173
173
## Test the prediction endpoint
174
174
@@ -180,7 +180,7 @@ Finally, use this command to test your trained model by uploading a new image fo
180
180
* Replace `{projectId}` with your own project ID.
181
181
* Replace `{publishedName}` with the name you used in the previous step.
182
182
* Add the binary data of your local image to the request body.
183
-
* Optionally use other URL parameters. See the [Classify Image](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Prediction_3.1/operations/5eb37d24548b571998fde5f3) API.
183
+
* Optionally use other URL parameters. See the [Classify Image](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Prediction_3.1/operations/5eb37d24548b571998fde5f3) API.
184
184
185
185
The returned JSON response will list each of the tags that the model applied to your image, along with probability scores for each tag.
186
186
@@ -217,5 +217,5 @@ Now you've done every step of the image classification process using the REST AP
217
217
> [Test and retrain a model](../../test-your-model.md)
Copy file name to clipboardExpand all lines: articles/cognitive-services/Custom-Vision-Service/release-notes.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
@@ -106,6 +106,6 @@ Bug fixes, including for ONNX export with special characters.
106
106
107
107
- Export to Android (TensorFlow) added, in addition to previously released export to iOS (CoreML.) This allows export of a trained compact model to be run offline in an application.
108
108
- Added Retail and Landmark "compact" domains to enable model export for these domains.
109
-
- Released version [1.2 Training API](https://southcentralus.dev.cognitive.microsoft.com/docs/services/f2d62aa3b93843d79e948fe87fa89554/operations/5a3044ee08fa5e06b890f11f) and [1.1 Prediction API](https://southcentralus.dev.cognitive.microsoft.com/docs/services/57982f59b5964e36841e22dfbfe78fc1/operations/5a3044f608fa5e06b890f164). Updated APIs support model export, new Prediction operation that does not save images to "Predictions," and introduced batch operations to the Training API.
109
+
- Released version [1.2 Training API](https://westus2.dev.cognitive.microsoft.com/docs/services/f2d62aa3b93843d79e948fe87fa89554/operations/5a3044ee08fa5e06b890f11f) and [1.1 Prediction API](https://westus2.dev.cognitive.microsoft.com/docs/services/57982f59b5964e36841e22dfbfe78fc1/operations/5a3044f608fa5e06b890f164). Updated APIs support model export, new Prediction operation that does not save images to "Predictions," and introduced batch operations to the Training API.
110
110
- UX tweaks, including the ability to see which domain was used to train an iteration.
111
111
- Updated [C# SDK and sample](https://github.com/Microsoft/Cognitive-CustomVision-Windows).
Copy file name to clipboardExpand all lines: articles/cognitive-services/Custom-Vision-Service/storage-integration.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ Now that you have the integration URLs, you can create a new Custom Vision proje
58
58
59
59
### Create new project
60
60
61
-
When you call the [CreateProject](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeae) API, add the optional parameters _exportModelContainerUri_ and _notificationQueueUri_. Assign the URL values you got in the previous section.
61
+
When you call the [CreateProject](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeae) API, add the optional parameters _exportModelContainerUri_ and _notificationQueueUri_. Assign the URL values you got in the previous section.
62
62
63
63
```curl
64
64
curl -v -X POST "{endpoint}/customvision/v3.3/Training/projects?exportModelContainerUri={inputUri}¬ificationQueueUri={inputUri}&name={inputName}"
@@ -96,7 +96,7 @@ If you receive a `200/OK` response, that means the URLs have been set up success
96
96
97
97
### Update existing project
98
98
99
-
To update an existing project with Azure storage feature integration, call the [UpdateProject](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb1) API, using the ID of the project you want to update.
99
+
To update an existing project with Azure storage feature integration, call the [UpdateProject](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb1) API, using the ID of the project you want to update.
@@ -152,7 +152,7 @@ In your notification queue, you should see a test notification in the following
152
152
153
153
## Get event notifications
154
154
155
-
When you're ready, call the [TrainProject](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee1) API on your project to do an ordinary training operation.
155
+
When you're ready, call the [TrainProject](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc7548b571998fddee1) API on your project to do an ordinary training operation.
156
156
157
157
In your Storage notification queue, you'll receive a notification once training finishes:
158
158
@@ -173,7 +173,7 @@ The `"trainingStatus"` field may be either `"TrainingCompleted"` or `"TrainingFa
173
173
174
174
## Get model export backups
175
175
176
-
When you're ready, call the [ExportIteration](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddece) API to export a trained model into a specified platform.
176
+
When you're ready, call the [ExportIteration](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddece) API to export a trained model into a specified platform.
177
177
178
178
In your designated storage container, a backup copy of the exported model will appear. The blob name will have the format:
179
179
@@ -202,5 +202,5 @@ The `"exportStatus"` field may be either `"ExportCompleted"` or `"ExportFailed"`
202
202
## Next steps
203
203
204
204
In this guide, you learned how to copy and back up a project between Custom Vision resources. Next, explore the API reference docs to see what else you can do with Custom Vision.
205
-
*[REST API reference documentation (training)](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)
206
-
*[REST API reference documentation (prediction)](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Prediction_3.1/operations/5eb37d24548b571998fde5f3)
205
+
*[REST API reference documentation (training)](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)
206
+
*[REST API reference documentation (prediction)](https://westus2.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Prediction_3.1/operations/5eb37d24548b571998fde5f3)
0 commit comments