Skip to content

Commit b4456df

Browse files
committed
seo updates
1 parent 3230e36 commit b4456df

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

articles/cognitive-services/Computer-vision/quickstarts-sdk/client-library.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Quickstart: Optical character recognition client library or REST API"
2+
title: "Quickstart: Optical character recognition (OCR) client library or REST API"
33
titleSuffix: Azure Cognitive Services
44
description: Learn how to use Optical character recognition (OCR) in your application through a native client library in the language of your choice.
55
services: cognitive-services
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: computer-vision
1010
ms.topic: quickstart
11-
ms.date: 11/17/2021
11+
ms.date: 02/02/2022
1212
ms.author: pafarley
1313
ms.devlang: csharp, golang, java, javascript, python
1414
ms.custom: devx-track-python, devx-track-js, devx-track-csharp, cog-serv-seo-aug-2020, mode-api
@@ -18,8 +18,7 @@ keywords: computer vision, computer vision service
1818

1919
# Quickstart: Use the Optical character recognition (OCR) client library or REST API
2020

21-
Get started with the Computer Vision Read REST API or client libraries. The Read service provides you with AI algorithms for extracting visible text from images and returning it as structured strings. Follow these steps to install a package to your application and try out the sample code for basic tasks.
22-
21+
Get started with the Computer Vision Read REST API or client libraries. The Read service provides you with AI algorithms for extracting text from images and returning it as structured strings. Follow these steps to install a package to your application and try out the sample code for basic tasks.
2322

2423
::: zone pivot="programming-language-csharp"
2524

articles/cognitive-services/Custom-Vision-Service/getting-started-build-a-classifier.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: "Quickstart: Build a classifier with the Custom Vision website"
2+
title: "Quickstart: Build an image classifier model with the Custom Vision portal"
33
titleSuffix: Azure Cognitive Services
4-
description: In this quickstart, you'll learn how to use the Custom Vision website to create, train, and test an image classification model.
4+
description: In this quickstart, you'll learn how to use the Custom Vision web portal to create, train, and test an image classification model.
55
services: cognitive-services
66
author: PatrickFarley
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: custom-vision
1010
ms.topic: quickstart
11-
ms.date: 09/27/2021
11+
ms.date: 02/02/2022
1212
ms.author: pafarley
1313
ms.custom: cog-serv-seo-aug-2020, mode-other
1414
keywords: image recognition, image recognition app, custom vision
1515
---
1616

17-
# Quickstart: Build a classifier with the Custom Vision website
17+
# Quickstart: Build an image classifier model with the Custom Vision web portal
1818

19-
In this quickstart, you'll learn how to use the Custom Vision website to create an image classification model. Once you build a model, you can test it with new images and eventually integrate it into your own image recognition app.
19+
In this quickstart, you'll learn how to use the Custom Vision web portal to create an image classifier model. Once you build a model, you can test it with new images and eventually integrate it into your own image recognition app.
2020

2121
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/cognitive-services/) before you begin.
2222

@@ -44,11 +44,11 @@ In your web browser, navigate to the [Custom Vision web page](https://customvisi
4444
1. Enter a name and a description for the project. Then select a Resource Group. If your signed-in account is associated with an Azure account, the Resource Group dropdown will display all of your Azure Resource Groups that include a Custom Vision Service Resource.
4545

4646
> [!NOTE]
47-
> If no resource group is available, please confirm that you have logged into [customvision.ai](https://customvision.ai) with the same account as you used to log into the [Azure portal](https://portal.azure.com/). Also, please confirm you have selected the same "Directory" in the Custom Vision website as the directory in the Azure portal where your Custom Vision resources are located. In both sites, you may select your directory from the drop down account menu at the top right corner of the screen.
47+
> If no resource group is available, please confirm that you have logged into [customvision.ai](https://customvision.ai) with the same account as you used to log into the [Azure portal](https://portal.azure.com/). Also, please confirm you have selected the same "Directory" in the Custom Vision web portal as the directory in the Azure portal where your Custom Vision resources are located. In both sites, you may select your directory from the drop down account menu at the top right corner of the screen.
4848
4949
1. Select __Classification__ under __Project Types__. Then, under __Classification Types__, choose either **Multilabel** or **Multiclass**, depending on your use case. Multilabel classification applies any number of your tags to an image (zero or more), while multiclass classification sorts images into single categories (every image you submit will be sorted into the most likely tag). You'll be able to change the classification type later if you want to.
5050

51-
1. Next, select one of the available domains. Each domain optimizes the classifier for specific types of images, as described in the following table. You will be able to change the domain later if you wish.
51+
1. Next, select one of the available domains. Each domain optimizes the classifier for specific types of images, as described in the following table. You can change the domain later if you wish.
5252

5353
|Domain|Purpose|
5454
|---|---|
@@ -108,13 +108,13 @@ After training has completed, the model's performance is estimated and displayed
108108

109109
## Manage training iterations
110110

111-
Each time you train your classifier, you create a new _iteration_ with its own updated performance metrics. You can view all of your iterations in the left pane of the **Performance** tab. You'll also find the **Delete** button, which you can use to delete an iteration if it's obsolete. When you delete an iteration, you delete any images that are uniquely associated with it.
111+
Each time you train your classifier, you create a new _iteration_ with updated performance metrics. You can view all of your iterations in the left pane of the **Performance** tab. You'll also find the **Delete** button, which you can use to delete an iteration if it's obsolete. When you delete an iteration, you delete any images that are uniquely associated with it.
112112

113113
See [Use your model with the prediction API](./use-prediction-api.md) to learn how to access your trained models programmatically.
114114

115115
## Next steps
116116

117-
In this quickstart, you learned how to create and train an image classification model using the Custom Vision website. Next, get more information on the iterative process of improving your model.
117+
In this quickstart, you learned how to create and train an image classification model using the Custom Vision web portal. Next, get more information on the iterative process of improving your model.
118118

119119
> [!div class="nextstepaction"]
120120
> [Test and retrain a model](test-your-model.md)

0 commit comments

Comments
 (0)