Skip to content

Commit be1b437

Browse files
authored
Merge pull request #188404 from cmcclister/cm-linkfix-20220211-1
LinkFix: azure-docs-pr (2022-02) - 1
2 parents 23a9644 + 0741de0 commit be1b437

File tree

48 files changed

+113
-119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+113
-119
lines changed

articles/azure-sql/database/private-endpoint-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ To establish connectivity from an on-premises environment to the database in SQL
174174
- [Site-to-Site VPN connection](../../vpn-gateway/vpn-gateway-create-site-to-site-rm-powershell.md)
175175
- [ExpressRoute circuit](../../expressroute/expressroute-howto-linkvnet-portal-resource-manager.md)
176176

177-
Consider [DNS configuration scenarios](/azure/private-link/private-endpoint-dns#dns-configuration-scenarios) as well, as the FQDN of the service can resolve to the public IP address.
177+
Consider [DNS configuration scenarios](../../private-link/private-endpoint-dns.md#dns-configuration-scenarios) as well, as the FQDN of the service can resolve to the public IP address.
178178

179179
## Connecting from Azure Synapse Analytics to Azure Storage using Polybase and the COPY statement
180180

@@ -211,4 +211,4 @@ With Private Link, customers can now set up network access controls like NSGs to
211211
[6]: media/private-endpoint/pec-select.png
212212
[7]: media/private-endpoint/pec-click.png
213213
[8]: media/private-endpoint/pec-nic-click.png
214-
[9]: media/private-endpoint/pec-ip-display.png
214+
[9]: media/private-endpoint/pec-ip-display.png

articles/certification/program-requirements-edge-secured-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Overview content
3232

3333
## Windows IoT OS Support
3434
Edge Secured-core for Windows IoT requires Windows 10 IoT Enterprise version 1903 or greater
35-
* [Windows 10 IoT Enterprise Lifecycle](https://docs.microsoft.com/lifecycle/products/windows-10-iot-enterprise)
35+
* [Windows 10 IoT Enterprise Lifecycle](/lifecycle/products/windows-10-iot-enterprise)
3636
> [!Note]
3737
> The Windows secured-core tests require you to download and run the following package (https://aka.ms/Scforwiniot) from an Administrator Command Prompt on the IoT device being validated.
3838
@@ -517,4 +517,4 @@ Validation|Device to be validated through toolset to ensure the device supports
517517
|Resources||
518518

519519
</br>
520-
::: zone-end
520+
::: zone-end

articles/cognitive-services/Custom-Vision-Service/copy-move-projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.author: pafarley
1515

1616
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.
1717

18-
As a part of Azure, Custom Vision Service has components that are maintained across multiple regions. Service zones and regions are used by all of our services to provide continued service to our customers. For more information on zones and regions, see [Azure regions](/azure/availability-zones/az-overview). If you need additional information or have any issues, please [contact support](/answers/topics/azure-custom-vision.html).
18+
As a part of Azure, Custom Vision Service has components that are maintained across multiple regions. Service zones and regions are used by all of our services to provide continued service to our customers. For more information on zones and regions, see [Azure regions](../../availability-zones/az-overview.md). If you need additional information or have any issues, please [contact support](/answers/topics/azure-custom-vision.html).
1919

2020
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.
2121

@@ -141,4 +141,4 @@ You'll get a `200/OK` response with metadata about your newly imported project.
141141
## Next steps
142142

143143
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.
144-
* [REST API reference documentation](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)
144+
* [REST API reference documentation](https://southcentralus.dev.cognitive.microsoft.com/docs/services/Custom_Vision_Training_3.3/operations/5eb0bcc6548b571998fddeb3)

articles/cognitive-services/LUIS/concepts/utterances.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ Collect utterances that you think users will enter. Include utterances, which me
2222
* Pluralization
2323
* Stemming
2424
* Noun and verb choice
25-
* [Punctuation](/azure/cognitive-services/luis/luis-reference-application-settings#punctuation-normalization) - using both correct and incorrect grammar
25+
* [Punctuation](../luis-reference-application-settings.md#punctuation-normalization) - using both correct and incorrect grammar
2626

2727
## Choose varied utterances
2828

2929
When you start [adding example utterances](/azure/cognitive-services/luis/luis-how-to-add-entities) to your LUIS model, there are several principles to keep in mind:
3030

3131
## Utterances aren't always well formed
3232

33-
Your app may need to process sentences, like "Book a ticket to Paris for me", or a fragment of a sentence, like "Booking" or "Paris flight" Users also often make spelling mistakes. When planning your app, consider whether or not you want to use [Bing Spell Check](/azure/cognitive-services/luis/luis-tutorial-bing-spellcheck) to correct user input before passing it to LUIS.
33+
Your app may need to process sentences, like "Book a ticket to Paris for me", or a fragment of a sentence, like "Booking" or "Paris flight" Users also often make spelling mistakes. When planning your app, consider whether or not you want to use [Bing Spell Check](../luis-tutorial-bing-spellcheck.md) to correct user input before passing it to LUIS.
3434

3535
If you do not spell check user utterances, you should train LUIS on utterances that include typos and misspellings.
3636

@@ -75,7 +75,7 @@ If you turn on a normalization setting, scores in the **Test** pane, batch tes
7575

7676
When you clone a version in the LUIS portal, the version settings are kept in the new cloned version.
7777

78-
Set your app's version settings using the LUIS portal by selecting **Manage** from the top navigation menu, in the **Application Settings** page. You can also use the [Update Version Settings API](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/versions-update-application-version-settings). See the [Reference](/azure/cognitive-services/luis/luis-reference-application-settings) documentation for more information.
78+
Set your app's version settings using the LUIS portal by selecting **Manage** from the top navigation menu, in the **Application Settings** page. You can also use the [Update Version Settings API](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/versions-update-application-version-settings). See the [Reference](../luis-reference-application-settings.md) documentation for more information.
7979

8080
## Word forms
8181

@@ -109,11 +109,11 @@ Training is generally non-deterministic: utterance prediction can vary slightly
109109

110110
## Testing utterances
111111

112-
Developers should start testing their LUIS application with real data by sending utterances to the [prediction endpoint](/azure/cognitive-services/luis/luis-how-to-azure-subscription) URL. These utterances are used to improve the performance of the intents and entities with [Review utterances](/azure/cognitive-services/luis/luis-how-to-review-endpoint-utterances). Tests submitted using the testing pane in the LUIS portal are not sent through the endpoint, and don't contribute to active learning.
112+
Developers should start testing their LUIS application with real data by sending utterances to the [prediction endpoint](../luis-how-to-azure-subscription.md) URL. These utterances are used to improve the performance of the intents and entities with [Review utterances](/azure/cognitive-services/luis/luis-how-to-review-endpoint-utterances). Tests submitted using the testing pane in the LUIS portal are not sent through the endpoint, and don't contribute to active learning.
113113

114114
## Review utterances
115115

116-
After your model is trained, published, and receiving [endpoint](/azure/cognitive-services/luis/luis-glossary#endpoint) queries, [review the utterances](/azure/cognitive-services/luis/luis-how-to-review-endpoint-utterances) suggested by LUIS. LUIS selects endpoint utterances that have low scores for either the intent or entity.
116+
After your model is trained, published, and receiving [endpoint](../luis-glossary.md#endpoint) queries, [review the utterances](/azure/cognitive-services/luis/luis-how-to-review-endpoint-utterances) suggested by LUIS. LUIS selects endpoint utterances that have low scores for either the intent or entity.
117117

118118
## Best practices
119119

@@ -148,4 +148,4 @@ After the app is published, only add utterances from active learning in the deve
148148
## Next steps
149149

150150
* [Intents](intents.md)
151-
* [Patterns and features concepts](patterns-features.md)
151+
* [Patterns and features concepts](patterns-features.md)

articles/cognitive-services/LUIS/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ LUIS has a monthly quota and a per-second quota, based on the pricing tier of th
101101

102102
If your LUIS app request rate exceeds the allowed [quota rate](https://azure.microsoft.com/pricing/details/cognitive-services/language-understanding-intelligent-services/), you can:
103103

104-
* Spread the load to more LUIS apps with the [same app definition](luis-concept-enterprise.md#use-multiple-apps-with-same-app-definition). This includes, optionally, running LUIS from a [container](/azure/cognitive-services/luis/luis-container-howto).
104+
* Spread the load to more LUIS apps with the [same app definition](luis-concept-enterprise.md#use-multiple-apps-with-same-app-definition). This includes, optionally, running LUIS from a [container](./luis-container-howto.md).
105105
* Create and [assign multiple keys](luis-concept-enterprise.md#assign-multiple-luis-keys-to-same-app) to the app.
106106

107107
## Can I Use multiple apps with same app definition?
@@ -112,7 +112,7 @@ To get the same top intent between all the apps, make sure the intent prediction
112112

113113
When training these apps, make sure to [train with all data](luis-how-to-train.md#train-with-all-data).
114114

115-
Designate a single main app. Any utterances that are suggested for review should be added to the main app, then moved back to all the other apps. This is either a full export of the app, or loading the labeled utterances from the main app to the other apps. Loading can be done from either the [LUIS](/azure/cognitive-services/luis/luis-reference-regions) website or the authoring API for a [single utterance](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08) or for a [batch](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c09).
115+
Designate a single main app. Any utterances that are suggested for review should be added to the main app, then moved back to all the other apps. This is either a full export of the app, or loading the labeled utterances from the main app to the other apps. Loading can be done from either the [LUIS](./luis-reference-regions.md) website or the authoring API for a [single utterance](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08) or for a [batch](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c09).
116116

117117
Schedule a periodic review, such as every two weeks, of [endpoint utterances](luis-how-to-review-endpoint-utterances.md) for active learning, then retrain and republish the app.
118118

@@ -140,4 +140,4 @@ Yes, you can use the LUIS [container](luis-container-howto.md) for these scenari
140140

141141
## How do I integrate LUIS with Azure Bot Services?
142142

143-
Use this [tutorial](/composer/how-to-add-luis) to integrate LUIS app with a Bot
143+
Use this [tutorial](/composer/how-to-add-luis) to integrate LUIS app with a Bot

articles/cognitive-services/LUIS/how-to/improve-application.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Use this article to learn how you can improve your LUIS apps, such as reviewing
1616

1717
## Active Learning
1818

19-
The process of reviewing endpoint utterances for correct predictions is called Active learning. Active learning captures queries that are sent to the endpoint, and selects user utterances that it is unsure of. You review these utterances to select the intent and mark the entities for these real-world utterances. Then you can accept these changes into your app's example utterances, then [train](/azure/cognitive-services/luis/how-to/train-test?branch=pr-en-us-181263) and [publish](/azure/cognitive-services/luis/how-to/publish?branch=pr-en-us-181263) the app. This helps LUIS identify utterances more accurately.
19+
The process of reviewing endpoint utterances for correct predictions is called Active learning. Active learning captures queries that are sent to the endpoint, and selects user utterances that it is unsure of. You review these utterances to select the intent and mark the entities for these real-world utterances. Then you can accept these changes into your app's example utterances, then [train](./train-test.md?branch=pr-en-us-181263) and [publish](./publish.md?branch=pr-en-us-181263) the app. This helps LUIS identify utterances more accurately.
2020

2121
## Log user queries to enable active learning
2222

23-
To enable active learning, you must log user queries. This is accomplished by calling the [endpoint query](/azure/cognitive-services/luis/luis-get-started-create-app#query-the-v3-api-prediction-endpoint) with the `log=true` query string parameter and value.
23+
To enable active learning, you must log user queries. This is accomplished by calling the [endpoint query](../luis-get-started-create-app.md#query-the-v3-api-prediction-endpoint) with the `log=true` query string parameter and value.
2424

2525
> [!Note]
2626
> To disable active learning, don't log user queries. You can change the query parameters by setting log=false in the endpoint query or omit the log parameter because the default value is false for the V3 endpoint.
@@ -84,4 +84,4 @@ The optional square brackets syntax "*[ ]*" lets you add optional text to the te
8484
8585
### Next Steps:
8686

87-
To test how performance improves, you can access the test console by selecting **Test** in the top panel. For instructions on how to test your app using the test console, see [Train and test your app](/azure/cognitive-services/luis/luis-interactive-test).
87+
To test how performance improves, you can access the test console by selecting **Test** in the top panel. For instructions on how to test your app using the test console, see [Train and test your app](/azure/cognitive-services/luis/luis-interactive-test).

articles/cognitive-services/LUIS/how-to/intents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ When the filters and view are applied and there are example utterances with erro
5252
Each row shows the current training's prediction score for the example utterance, and the nearest other intent score, which is the difference between these two scores.
5353

5454
> [!Tip]
55-
> To fix intent prediction errors, use the [Summary dashboard](/azure/cognitive-services/luis/luis-how-to-use-dashboard). The summary dashboard provides analysis for the active version's last training and offers the top suggestions to fix your model.
55+
> To fix intent prediction errors, use the [Summary dashboard](../luis-how-to-use-dashboard.md). The summary dashboard provides analysis for the active version's last training and offers the top suggestions to fix your model.
5656
5757
## Add a prebuilt intent
5858

@@ -68,4 +68,4 @@ Now imagine you want to quickly create a confirmation intent. You can use one of
6868

6969
* [Add entities](entities.md)
7070
* [Label entities](label-utterances.md)
71-
* [Train and test](train-test.md)
71+
* [Train and test](train-test.md)

articles/cognitive-services/LUIS/how-to/orchestration-projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 01/06/2022
1212

1313
# Combine LUIS and question answering capabilities
1414

15-
Cognitive Services provides two natural language processing services, [Language Understanding](/azure/cognitive-services/luis/what-is-luis) (LUIS) and question answering, each with a different purpose. Understand when to use each service and how they compliment each other.
15+
Cognitive Services provides two natural language processing services, [Language Understanding](../what-is-luis.md) (LUIS) and question answering, each with a different purpose. Understand when to use each service and how they compliment each other.
1616

1717
Natural language processing (NLP) allows your client application, such as a chat bot, to work with your users' natural language.
1818

@@ -60,4 +60,4 @@ You need to follow the following steps to change LUIS authoring resource to a La
6060

6161
## Next steps
6262

63-
[Conversational language understanding documentation](../../language-service/conversational-language-understanding/how-to/create-project.md#create-an-orchestration-workflow-project).
63+
[Conversational language understanding documentation](../../language-service/conversational-language-understanding/how-to/create-project.md#create-an-orchestration-workflow-project).

articles/cognitive-services/LUIS/how-to/publish.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ If you need the endpoint URL, select the link or select **Manage** in the top
6262

6363
## Next steps
6464

65-
- See [Manage keys](/azure/cognitive-services/luis/luis-how-to-azure-subscription) to add keys to Azure subscription key to LUIS
66-
- See [Train and test your app](/azure/cognitive-services/luis/luis-interactive-test) for instructions on how to test your published app in the test console.
65+
- See [Manage keys](../luis-how-to-azure-subscription.md) to add keys to Azure subscription key to LUIS
66+
- See [Train and test your app](/azure/cognitive-services/luis/luis-interactive-test) for instructions on how to test your published app in the test console.

0 commit comments

Comments
 (0)