Skip to content

Commit 180de39

Browse files
committed
cusvis freshness pt 2
1 parent 3b36f1f commit 180de39

File tree

7 files changed

+44
-36
lines changed

7 files changed

+44
-36
lines changed

articles/ai-services/custom-vision-service/encrypt-data-at-rest.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Custom Vision encryption of data at rest
33
titleSuffix: Azure AI services
4-
description: Microsoft offers Microsoft-managed encryption keys, and also lets you manage your Azure AI services subscriptions with your own keys, called customer-managed keys (CMK). This article covers data encryption at rest for Custom Vision, and how to enable and manage CMK.
4+
description: Learn how to enable and manage customer-managed keys (CMK) for data encryption at rest in Azure AI Custom Vision.
55
author: erindormier
66
manager: venkyv
77

88
ms.service: azure-ai-custom-vision
99
ms.topic: conceptual
10-
ms.date: 03/07/2024
10+
ms.date: 01/29/2025
1111
ms.author: egeaney
1212
ms.custom: cogserv-non-critical-vision
1313
#Customer intent: As a user of the Face service, I want to learn how encryption at rest works.
@@ -24,7 +24,8 @@ Azure AI Custom Vision automatically encrypts your data when persisting it to th
2424
2525
[!INCLUDE [cognitive-services-cmk](../includes/configure-customer-managed-keys.md)]
2626

27-
## Next steps
27+
## Related content
28+
2829

2930
* For a full list of services that support CMK, see [Customer-Managed Keys for Azure AI services](../encryption/cognitive-services-encryption-keys-portal.md)
3031
* [What is Azure Key Vault](/azure/key-vault/general/overview)?

articles/ai-services/custom-vision-service/export-delete-data.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ description: You maintain full control over your data. This article explains how
55
#services: cognitive-services
66
author: PatrickFarley
77
manager: nitinme
8+
#customer intent: As a user, I want to view, export, or delete my data in the Custom Vision Service so that I can maintain control over my data.
89

910
ms.service: azure-ai-custom-vision
1011
ms.topic: how-to
11-
ms.date: 02/27/2024
12+
ms.date: 01/29/2025
1213
ms.author: pafarley
1314
ms.custom: cogserv-non-critical-vision
1415
---

articles/ai-services/custom-vision-service/export-model-python.md

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,35 @@ description: Run a TensorFlow model in Python. This article only applies to mode
55
#services: cognitive-services
66
author: PatrickFarley
77
manager: nitinme
8+
#customer intent: As a developer, I want to run a TensorFlow model in Python so that I can classify images locally.
89

910
ms.service: azure-ai-custom-vision
1011
ms.topic: how-to
11-
ms.date: 01/22/2024
12+
ms.date: 01/29/2025
1213
ms.author: pafarley
1314
ms.devlang: python
1415
ms.custom: devx-track-python
1516
---
1617

17-
# Tutorial: Run a TensorFlow model in Python
18+
# Run a TensorFlow model in Python
1819

19-
This tutorial shows you how to use an [exported TensorFlow model](./export-your-model.md) locally to classify images.
20+
This guide shows you how to use an [exported TensorFlow model](./export-your-model.md) locally to classify images.
2021

2122
> [!NOTE]
22-
> This tutorial applies only to models exported from "General (compact)" image classification projects. If you exported other models, please visit our [sample code repository](https://github.com/Azure-Samples/customvision-export-samples).
23+
> This guide only applies to models exported from "General (compact)" image classification projects. If you exported other models, please visit our [sample code repository](https://github.com/Azure-Samples/customvision-export-samples).
2324
2425
## Prerequisites
2526

2627
- Install either Python 2.7+ or Python 3.6+.
2728
- Install pip.
28-
29-
Next, you'll need to install the following packages:
30-
31-
```bash
32-
pip install tensorflow
33-
pip install pillow
34-
pip install numpy
35-
pip install opencv-python
36-
```
37-
29+
- Then install the following packages:
30+
```bash
31+
pip install tensorflow
32+
pip install pillow
33+
pip install numpy
34+
pip install opencv-python
35+
```
36+
3837
## Load your model and tags
3938

4039
The downloaded _.zip_ file from the export step contains a _model.pb_ and a _labels.txt_ file. These files represent the trained model and the classification labels. The first step is to load the model into your project. Add the following code to a new Python script.
@@ -198,7 +197,7 @@ The results of running the image tensor through the model will then need to be m
198197
label_index += 1
199198
```
200199
201-
## Next steps
200+
## Related content
202201
203202
Next, learn how to wrap your model into a mobile application:
204203
* [Use your exported Tensorflow model in an Android application](https://github.com/Azure-Samples/cognitive-services-android-customvision-sample)

articles/ai-services/custom-vision-service/export-programmatically.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
22
title: "Export a model programmatically"
33
titleSuffix: Azure AI services
4-
description: Use the Custom Vision client library to export a trained model.
4+
description: Learn how to use the Custom Vision client library to export a trained model programmatically, enabling automation of model retraining and updates.
55
#services: cognitive-services
6+
#customer intent: As a developer, I want to export a trained model programmatically so that I can automate the process of retraining and updating the model.
67
author: PatrickFarley
78
manager: nitinme
89

910
ms.service: azure-ai-custom-vision
1011
ms.topic: how-to
11-
ms.date: 01/22/2024
12+
ms.date: 01/29/2025
1213
ms.author: pafarley
1314
ms.devlang: python
1415
---
@@ -84,7 +85,7 @@ if export.status == "Done":
8485
file.write(export_file.content)
8586
```
8687

87-
## Next steps
88+
## Related content
8889

8990
Integrate your exported model into an application by exploring one of the following articles or samples:
9091

articles/ai-services/custom-vision-service/logo-detector-mobile.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,24 @@ author: PatrickFarley
77
manager: nitinme
88
ms.service: azure-ai-custom-vision
99
ms.topic: tutorial
10-
ms.date: 06/01/2024
10+
ms.date: 01/29/2025
1111
ms.author: pafarley
1212
ms.devlang: csharp
1313
ms.custom: devx-track-csharp
14+
#customer intent: As a developer, I want to use Custom Vision to recognize Azure service logos so that I can automate service deployment.
15+
1416
---
1517

1618
# Tutorial: Recognize Azure service logos in camera pictures
1719

18-
In this tutorial, explore a sample app that uses Custom Vision as part of a larger scenario. The AI Visual Provision app, a Xamarin.Forms application for mobile platforms, analyzes photos of Azure service logos and then deploys those services to the user's Azure account. Here you'll learn how it uses Custom Vision in coordination with other components to deliver a useful end-to-end application. You can run the whole app scenario for yourself, or you can complete only the Custom Vision part of the setup and explore how the app uses it.
20+
In this tutorial, you'll explore a sample app that uses Custom Vision as part of a larger scenario. The AI Visual Provision app, a Xamarin.Forms application for mobile platforms, analyzes photos of Azure service logos and then deploys those services to the user's Azure account. Here you'll learn how it uses Custom Vision in coordination with other components to deliver a useful end-to-end application. You can run the whole app scenario for yourself, or you can complete only the Custom Vision part of the setup and explore how the app uses it.
1921

2022
This tutorial shows you how to:
2123

2224
> [!div class="checklist"]
23-
> - Create a custom object detector to recognize Azure service logos.
24-
> - Connect your app to Azure AI Vision and Custom Vision.
25-
> - Create an Azure service principal account to deploy Azure services from the app.
25+
> * Create a custom object detector to recognize Azure service logos.
26+
> * Connect your app to Azure AI Vision and Custom Vision.
27+
> * Create an Azure service principal account to deploy Azure services from the app.
2628
2729
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/cognitive-services/) before you begin.
2830

@@ -170,7 +172,7 @@ If you've followed all of the steps of this scenario and used the app to deploy
170172
171173
If you plan to create your own object detection project with Custom Vision, you might want to delete the logo detection project you created in this tutorial. A free subscription for Custom Vision allows for only two projects. To delete the logo detection project, on the [Custom Vision website](https://customvision.ai), open **Projects** and then select the trash icon under **My New Project**.
172174
173-
## Next steps
175+
## Next step
174176
175177
In this tutorial, you set up and explored a full-featured Xamarin.Forms app that uses the Custom Vision service to detect logos in mobile camera images. Next, learn the best practices for building a Custom Vision model so that when you create one for your own app, you can make it powerful and accurate.
176178

articles/ai-services/custom-vision-service/role-based-access-control.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ author: PatrickFarley
66
manager: nitinme
77
ms.service: azure-ai-custom-vision
88
ms.topic: how-to
9-
ms.date: 01/22/2024
9+
ms.date: 01/29/2025
1010
ms.author: pafarley
11+
#customer intent: As a user, I want to configure Azure role-based access control for Custom Vision projects so that I can manage individual access to Azure resources.
1112
---
1213

1314
# Azure role-based access control
@@ -40,9 +41,9 @@ Use this table to determine access needs for your Custom Vision resources.
4041
|`Cognitive Services Custom Vision Deployment` | Ability to publish, unpublish, or export the models. Deployers can view projects but can't update a project, training images, or tags. |
4142
|`Cognitive Services Custom Vision Reader` | Ability to view projects. Readers can't make any changes. |
4243

43-
## Next steps
44+
## Next step
4445

4546
Follow a quickstart to get started creating and training a Custom Vision project.
4647

47-
* [Build a classifier](getting-started-build-a-classifier.md)
48-
* [Build an object detector](get-started-build-detector.md)
48+
> [!div class="nextstepaction"]
49+
> [Build a classifier](getting-started-build-a-classifier.md)

articles/ai-services/custom-vision-service/storage-integration.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ author: PatrickFarley
66
manager: nitinme
77
ms.service: azure-ai-custom-vision
88
ms.topic: how-to
9-
ms.date: 02/27/2024
9+
ms.date: 01/29/2025
1010
ms.author: pafarley
1111
ms.custom: cogserv-non-critical-vision
12+
#customer intent: As a developer, I want to integrate Azure storage with Custom Vision so that I can receive notifications and back up models.
13+
1214
---
1315

1416
# Integrate Azure storage for notifications and backup
@@ -204,8 +206,9 @@ Also, you'll receive a notification in your queue when the export finishes.
204206

205207
The `"exportStatus"` field may be either `"ExportCompleted"` or `"ExportFailed"`. The `"modelUri"` field will contain the URL of the backup model stored in your container, assuming you integrated queue notifications in the beginning. If you didn't, the `"modelUri"` field will show the SAS URL for your Custom Vision model blob.
206208

207-
## Next steps
209+
## Next step
208210

209211
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.
210-
* [REST API reference documentation (training)](/rest/api/customvision/train-project)
211-
* [REST API reference documentation (prediction)](/rest/api/customvision/predictions)
212+
213+
> [!div class="nextstepaction"]
214+
> [REST API reference documentation (training)](/rest/api/customvision/train-project)

0 commit comments

Comments
 (0)