Skip to content

Commit b796b9c

Browse files
committed
fix links
1 parent 2d6f5a4 commit b796b9c

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

articles/cognitive-services/LUIS/luis-how-to-add-entities.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom: seodec18
99
ms.service: cognitive-services
1010
ms.subservice: language-understanding
1111
ms.topic: conceptual
12-
ms.date: 10/25/2019
12+
ms.date: 11/11/2019
1313
ms.author: diberry
1414
---
1515

@@ -103,7 +103,7 @@ In the utterance `Where is Request relocation from employee new to the company o
103103

104104
To use the pattern.any entity, add a pattern on the **Patterns** page, in the **Improve app performance** section, with the correct curly brace syntax, such as `Where is **{HumanResourcesFormTitle}** on the server?`.
105105

106-
If you find that your pattern, when it includes a Pattern.any, extracts entities incorrectly, use an [explicit list](luis-concept-patterns.md#explicit-lists) to correct this problem.
106+
If you find that your pattern, when it includes a Pattern.any, extracts entities incorrectly, use an [explicit list](reference-pattern-syntax.md#explicit-lists) to correct this problem.
107107

108108
<a name="add-a-role-to-pattern-based-entity"></a>
109109

articles/cognitive-services/LUIS/luis-quickstart-intent-and-list-entity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.custom: seodec18
99
ms.service: cognitive-services
1010
ms.subservice: language-understanding
1111
ms.topic: tutorial
12-
ms.date: 10/14/2019
12+
ms.date: 11/11/2019
1313
ms.author: diberry
1414
#Customer intent: As a new user, I want to understand how and why to use the list entity.
1515
---
@@ -45,7 +45,7 @@ A list entity is a good choice for this type of data when:
4545

4646
* The data values are a known set.
4747
* The set doesn't exceed the maximum LUIS [boundaries](luis-boundaries.md) for this entity type.
48-
* The text in the utterance is an exact match with a synonym or the canonical name. LUIS doesn't use the list beyond exact text matches. Stemming, plurals, and other variations are not resolved with just a list entity. To manage variations, consider using a [pattern](luis-concept-patterns.md#syntax-to-mark-optional-text-in-a-template-utterance) with the optional text syntax.
48+
* The text in the utterance is an exact match with a synonym or the canonical name. LUIS doesn't use the list beyond exact text matches. Stemming, plurals, and other variations are not resolved with just a list entity. To manage variations, consider using a [pattern](reference-pattern-syntax.md#syntax-to-mark-optional-text-in-a-template-utterance) with the optional text syntax.
4949

5050
## Create a new app
5151

articles/cognitive-services/LUIS/luis-tutorial-pattern-any.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: language-understanding
1111
ms.topic: tutorial
12-
ms.date: 10/14/2019
12+
ms.date: 11/11/2019
1313
ms.author: diberry
1414
#Customer intent: As a new user, I want to understand how and why to use pattern.any entity to improve predictions.
1515
---
@@ -134,7 +134,7 @@ The Pattern.any entity extracts entities of varying length. It only works in a p
134134

135135
## Using an explicit list
136136

137-
If you find that your pattern, when it includes a Pattern.any, extracts entities incorrectly, use an [explicit list](luis-concept-patterns.md#explicit-lists) to correct this problem.
137+
If you find that your pattern, when it includes a Pattern.any, extracts entities incorrectly, use an [explicit list](reference-pattern-syntax.md#explicit-lists) to correct this problem.
138138

139139

140140
## Clean up resources

articles/cognitive-services/LUIS/reference-entity-list.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: language-understanding
1010
ms.topic: reference
11-
ms.date: 09/29/2019
11+
ms.date: 11/11/2019
1212
ms.author: diberry
1313
---
1414
# List entity
@@ -22,7 +22,7 @@ A list entity isn't machine-learned. It is an exact text match. LUIS marks any m
2222
* Are a known set.
2323
* Doesn't change often. If you need to change the list often or want the list to self-expand, a simple entity boosted with a phrase list is a better choice.
2424
* The set doesn't exceed the maximum LUIS [boundaries](luis-boundaries.md) for this entity type.
25-
* The text in the utterance is an exact match with a synonym or the canonical name. LUIS doesn't use the list beyond exact text matches. Fuzzy matching, case-insensitivity, stemming, plurals, and other variations are not resolved with a list entity. To manage variations, consider using a [pattern](luis-concept-patterns.md#syntax-to-mark-optional-text-in-a-template-utterance) with the optional text syntax.
25+
* The text in the utterance is an exact match with a synonym or the canonical name. LUIS doesn't use the list beyond exact text matches. Fuzzy matching, case-insensitivity, stemming, plurals, and other variations are not resolved with a list entity. To manage variations, consider using a [pattern](reference-pattern-syntax.md#syntax-to-mark-optional-text-in-a-template-utterance) with the optional text syntax.
2626

2727
![list entity](./media/luis-concept-entities/list-entity.png)
2828

articles/cognitive-services/LUIS/reference-pattern-syntax.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 11/11/2019
1212
ms.author: diberry
1313
---
1414

15-
## Pattern syntax
15+
# Pattern syntax
1616

1717
Pattern syntax is a template for an utterance. The template should contain words and entities you want to match as well as words and punctuation you want to ignore. It is **not** a regular expression.
1818

@@ -127,4 +127,8 @@ Mark optional text in the utterance using the regular expression square bracket
127127
|`[find] email about {subject} [from {person}]`|`find` and `from {person}` are optional|
128128
|`Can you help me[?]|The punctuation mark is optional|
129129

130-
Punctuation marks (`?`, `!`, `.`) should be ignored and you need to ignore them using the square bracket syntax in patterns.
130+
Punctuation marks (`?`, `!`, `.`) should be ignored and you need to ignore them using the square bracket syntax in patterns.
131+
132+
## Next steps
133+
134+
Understand how [sentiment](luis-reference-prebuilt-sentiment.md) is returned in the .json response.

0 commit comments

Comments
 (0)