Skip to content

Commit 935c4c6

Browse files
Merge pull request #231768 from PatrickFarley/comvis-updates
[cog svcs] Comvis updates
2 parents 1a96df5 + fa563d4 commit 935c4c6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

articles/cognitive-services/Computer-vision/how-to/image-retrieval.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ The Image Retrieval APIs enable the _vectorization_ of images and text queries.
3131

3232
You can try out the Image Retrieval feature quickly and easily in your browser using Vision Studio.
3333

34+
> [!IMPORTANT]
35+
> The Vision Studio experience is limited to 500 images. To use a larger image set, create your own search application using the APIs in this guide.
36+
3437
> [!div class="nextstepaction"]
3538
> [Try Vision Studio](https://portal.vision.cognitive.azure.com/)
3639

articles/cognitive-services/Computer-vision/how-to/model-customization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,13 @@ The `datasets/<dataset-name>` API lets you create a new dataset object that refe
151151
1. Replace `<endpoint>` with your Computer Vision endpoint.
152152
1. Replace `<dataset-name>` with a name for your dataset.
153153
1. Replace `<subscription-key>` with your Computer Vision key.
154-
1. In the request body, set `"annotationKind"` to either `"MultiClassClassification"` or `"ObjectDetection"`, depending on your project.
154+
1. In the request body, set `"annotationKind"` to either `"imageClassification"` or `"imageObjectDetection"`, depending on your project.
155155
1. In the request body, set the `"annotationFileUris"` array to an array of string(s) that show the URI location(s) of your COCO file(s) in blob storage.
156156

157157
```bash
158158
curl.exe -v -X PUT "https://<endpoint>/computervision/datasets/<dataset-name>?api-version=2023-02-01-preview" -H "Content-Type: application/json" -H "Ocp-Apim-Subscription-Key: <subscription-key>" --data-ascii "
159159
{
160-
'annotationKind':'MultiClassClassification',
160+
'annotationKind':'imageClassification',
161161
'annotationFileUris':['<URI>']
162162
}"
163163
```

0 commit comments

Comments
 (0)