Skip to content

Commit b340ecd

Browse files
Merge pull request #217404 from PatrickFarley/freshness-pass
[cog svcs] Freshness pass
2 parents f65b5f6 + 7bff5b1 commit b340ecd

File tree

10 files changed

+24
-18
lines changed

10 files changed

+24
-18
lines changed

articles/cognitive-services/Computer-vision/how-to/find-similar-faces.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: nitinme
99
ms.service: cognitive-services
1010
ms.subservice: face-api
1111
ms.topic: how-to
12-
ms.date: 05/05/2022
12+
ms.date: 11/07/2022
1313
ms.author: pafarley
1414
ms.custom:
1515
---
@@ -27,7 +27,7 @@ This guide demonstrates how to use the Find Similar feature in the different lan
2727
This guide uses remote images that are accessed by URL. Save a reference to the following URL string. All of the images accessed in this guide are located at this URL path.
2828

2929
```
30-
"https://csdx.blob.core.windows.net/resources/Face/media/"
30+
https://raw.githubusercontent.com/Azure-Samples/cognitive-services-sample-data-files/master/Face/images/
3131
```
3232

3333
## Detect faces for comparison

articles/cognitive-services/Computer-vision/how-to/mitigate-latency.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: PatrickFarley
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.topic: how-to
10-
ms.date: 1/5/2021
10+
ms.date: 11/07/2021
1111
ms.author: pafarley
1212
ms.devlang: csharp
1313
ms.custom: cogserv-non-critical-vision
@@ -42,7 +42,7 @@ The Face service must then download the image from the remote server. If the con
4242
To mitigate this situation, consider [storing the image in Azure Premium Blob Storage](../../../storage/blobs/storage-upload-process-images.md?tabs=dotnet). For example:
4343

4444
``` csharp
45-
var faces = await client.Face.DetectWithUrlAsync("https://csdx.blob.core.windows.net/resources/Face/Images/Family1-Daughter1.jpg");
45+
var faces = await client.Face.DetectWithUrlAsync("https://raw.githubusercontent.com/Azure-Samples/cognitive-services-sample-data-files/master/Face/images/Family1-Daughter1.jpg");
4646
```
4747

4848
### Large upload size
@@ -61,7 +61,7 @@ If the file to upload is large, that will impact the response time of the `Detec
6161
Mitigations:
6262
- Consider [storing the image in Azure Premium Blob Storage](../../../storage/blobs/storage-upload-process-images.md?tabs=dotnet). For example:
6363
``` csharp
64-
var faces = await client.Face.DetectWithUrlAsync("https://csdx.blob.core.windows.net/resources/Face/Images/Family1-Daughter1.jpg");
64+
var faces = await client.Face.DetectWithUrlAsync("https://raw.githubusercontent.com/Azure-Samples/cognitive-services-sample-data-files/master/Face/images/Family1-Daughter1.jpg");
6565
```
6666
- Consider uploading a smaller file.
6767
- See the guidelines regarding [input data for face detection](../concept-face-detection.md#input-data) and [input data for face recognition](../concept-face-recognition.md#input-data).

articles/cognitive-services/Computer-vision/overview-identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: face-api
1010
ms.topic: overview
11-
ms.date: 06/13/2022
11+
ms.date: 11/06/2022
1212
ms.author: pafarley
1313
ms.custom: cog-serv-seo-aug-2020
1414
keywords: facial recognition, facial recognition software, facial analysis, face matching, face recognition app, face search by image, facial recognition search
@@ -40,7 +40,7 @@ This documentation contains the following types of articles:
4040
* The [conceptual articles](./concept-face-detection.md) provide in-depth explanations of the service's functionality and features.
4141
* The [tutorials](./enrollment-overview.md) are longer guides that show you how to use this service as a component in broader business solutions.
4242

43-
For a more structured approach, follow a Learn module for Face.
43+
For a more structured approach, follow a Training module for Face.
4444
* [Detect and analyze faces with the Face service](/training/modules/detect-analyze-faces/)
4545

4646
## Example use cases

articles/cognitive-services/Computer-vision/overview-image-analysis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: cognitive-services
1010
ms.subservice: computer-vision
1111
ms.custom: ignite-2022
1212
ms.topic: overview
13-
ms.date: 11/03/2022
13+
ms.date: 11/06/2022
1414
ms.author: pafarley
1515
keywords: computer vision, computer vision applications, computer vision service
1616
---
@@ -37,7 +37,7 @@ This documentation contains the following types of articles:
3737
* The [conceptual articles](concept-tagging-images.md) provide in-depth explanations of the service's functionality and features.
3838
* The [tutorials](./tutorials/storage-lab-tutorial.md) are longer guides that show you how to use this service as a component in broader business solutions.
3939

40-
For a more structured approach, follow a Learn module for Image Analysis.
40+
For a more structured approach, follow a Training module for Image Analysis.
4141
* [Analyze images with the Computer Vision service](/training/modules/analyze-images-computer-vision/)
4242

4343
## Image Analysis features

articles/cognitive-services/Computer-vision/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ items:
312312
href: https://azure.microsoft.com/support/legal/cognitive-services-compliance-and-privacy/
313313
- name: Support and help options
314314
href: ../cognitive-services-support-options.md?context=/azure/cognitive-services/computer-vision/context/context
315-
- name: Learn modules
315+
- name: Training modules
316316
href: /training/paths/explore-computer-vision-microsoft-azure/
317317
- name: Azure updates
318318
href: https://azure.microsoft.com/updates/?product=cognitive-services

articles/cognitive-services/Computer-vision/vehicle-analysis.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: cognitive-services
99
ms.subservice: computer-vision
1010
ms.custom: ignite-2022
1111
ms.topic: conceptual
12-
ms.date: 09/28/2022
12+
ms.date: 11/07/2022
1313
ms.author: pafarley
1414
---
1515

@@ -21,11 +21,14 @@ Vehicle analysis is a set of capabilities that, when used with the Spatial Analy
2121

2222
* To utilize the operations of vehicle analysis, you must first follow the steps to [install and run spatial analysis container](./spatial-analysis-container.md) including configuring your host machine, downloading and configuring your [DeploymentManifest.json](https://github.com/Azure-Samples/cognitive-services-sample-data-files/blob/master/ComputerVision/spatial-analysis/DeploymentManifest.json) file, executing the deployment, and setting up device [logging](spatial-analysis-logging.md).
2323
* When you configure your [DeploymentManifest.json](https://github.com/Azure-Samples/cognitive-services-sample-data-files/blob/master/ComputerVision/spatial-analysis/DeploymentManifest.json) file, refer to the steps below to add the graph configurations for vehicle analysis to your manifest prior to deploying the container. Or, once the spatial analysis container is up and running, you may add the graph configurations and follow the steps to redeploy. The steps below will outline how to properly configure your container.
24-
If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
24+
* If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
2525

2626
> [!NOTE]
2727
> Make sure that the edge device has at least 50GB disk space available before deploying the Spatial Analysis module.
2828
29+
> [!div class="nextstepaction"]
30+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Vision&Product=spatial-analysis&Page=howto&Section=prerequisites" target="_target">I ran into an issue</a>
31+
2932
## Vehicle analysis operations
3033

3134
Similar to Spatial Analysis, vehicle analysis enables the analysis of real-time streaming video from camera devices. For each camera device you configure, the operations for vehicle analysis will generate an output stream of JSON messages that are being sent to your instance of Azure IoT Hub.
@@ -140,6 +143,9 @@ Below is the graph optimized for the **vehicle in polygon** operation, utilized
140143
}
141144
```
142145

146+
> [!div class="nextstepaction"]
147+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Vision&Product=spatial-analysis&Page=howto&Section=configuring-the-vehicle-analysis-operations" target="_target">I ran into an issue</a>
148+
143149
## Sample cognitiveservices.vision.vehicleanalysis-vehiclecount-preview and cognitiveservices.vision.vehicleanalysis-vehiclecount.cpu-preview output
144150

145151
The JSON below demonstrates an example of the vehicle count operation graph output.

articles/cognitive-services/Content-Moderator/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: nitinme
99
ms.service: cognitive-services
1010
ms.subservice: content-moderator
1111
ms.topic: overview
12-
ms.date: 09/29/2021
12+
ms.date: 11/06/2021
1313
ms.author: pafarley
1414
ms.custom: cog-serv-seo-aug-2020
1515
keywords: content moderator, azure content moderator, online moderator, content filtering software, content moderation service, content moderation
@@ -32,7 +32,7 @@ This documentation contains the following article types:
3232
* [**Concepts**](text-moderation-api.md) provide in-depth explanations of the service functionality and features.
3333
* [**Tutorials**](ecommerce-retail-catalog-moderation.md) are longer guides that show you how to use the service as a component in broader business solutions.
3434

35-
For a more structured approach, follow a Learn module for Content Moderator.
35+
For a more structured approach, follow a Training module for Content Moderator.
3636
* [Introduction to Content Moderator](/training/modules/intro-to-content-moderator/)
3737
* [Classify and moderate text with Azure Content Moderator](/training/modules/classify-and-moderate-text-with-azure-content-moderator/)
3838

articles/cognitive-services/Content-Moderator/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
href: https://azure.microsoft.com/support/legal/cognitive-services-compliance-and-privacy/
8787
- name: Support and help options
8888
href: ../cognitive-services-support-options.md?context=/azure/cognitive-services/content-moderator/context/context
89-
- name: Learn modules
89+
- name: Training modules
9090
href: /training/browse/?terms=content+moderator
9191
- name: Azure webinar series
9292
href: https://info.microsoft.com/cognitive-services-content-moderator-ondemand.html

articles/cognitive-services/Custom-Vision-Service/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: nitinme
99
ms.service: cognitive-services
1010
ms.subservice: custom-vision
1111
ms.topic: overview
12-
ms.date: 07/20/2022
12+
ms.date: 11/06/2022
1313
ms.author: pafarley
1414
ms.custom: cog-serv-seo-aug-2020
1515
keywords: image recognition, image identifier, image recognition app, custom vision
@@ -33,7 +33,7 @@ This documentation contains the following types of articles:
3333
* The [tutorials](./iot-visual-alerts-tutorial.md) are longer guides that show you how to use this service as a component in broader business solutions.
3434
<!--* The [conceptual articles](Vision-API-How-to-Topics/call-read-api.md) provide in-depth explanations of the service's functionality and features.-->
3535

36-
For a more structured approach, follow a Learn module for Custom Vision:
36+
For a more structured approach, follow a Training module for Custom Vision:
3737
* [Classify images with the Custom Vision service](/training/modules/classify-images-custom-vision/)
3838
* [Classify endangered bird species with Custom Vision](/training/modules/cv-classify-bird-species/)
3939

articles/cognitive-services/personalizer/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
href: https://azure.microsoft.com/global-infrastructure/services/?products=cognitive-services
144144
- name: Compliance and certification
145145
href: https://azure.microsoft.com/support/legal/cognitive-services-compliance-and-privacy/
146-
- name: Learn modules
146+
- name: Training modules
147147
href: /training/browse/?terms=personalizer
148148
- name: Support and help options
149149
href: ../cognitive-services-support-options.md?context=/azure/cognitive-services/personalizer/context/context

0 commit comments

Comments
 (0)