You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cognitive-services/LUIS/includes/decomposable-tutorial-links.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ ms.date: 05/06/2020
9
9
ms.author: diberry
10
10
---
11
11
12
-
To take advantage of [decomposable concepts](../luis-concept-model.md#v3-authoring-model-decomposition), start with the machine-learned entity. Follow the [machine-learned entity tutorial](../tutorial-machine-learned-entity.md) for steps on how to create this type of entity including examples of:
12
+
To take advantage of [decomposable concepts](../luis-concept-model.md#v3-authoring-model-decomposition), start with the machine-learning entity. Follow the [machine-learning entity tutorial](../tutorial-machine-learned-entity.md) for steps on how to create this type of entity including examples of:
13
13
14
-
*[Create and label machine-learned entity](../tutorial-machine-learned-entity.md#label-text-as-entities-in-example-utterances) with structure and a feature (phrase list) from example utterance on **Intent detail page**
14
+
*[Create and label machine-learning entity](../tutorial-machine-learned-entity.md#label-text-as-entities-in-example-utterances) with structure and a feature (phrase list) from example utterance on **Intent detail page**
15
15
*[Add prebuilt number entity](../tutorial-machine-learned-entity.md#add-prebuilt-number-entity-to-app) from the **Entities list page**.
16
16
*[Add subentity with required feature](../tutorial-machine-learned-entity.md#create-subcomponent-entity-with-constraint-to-help-extract-data) from the **Entity detail page**.
17
17
*[Label example utterance with subentity](../tutorial-machine-learned-entity.md#label-example-utterance-to-teach-luis-about-the-entity) on **Intent detail page**
Copy file name to clipboardExpand all lines: articles/cognitive-services/LUIS/reference-entity-simple.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Simple entity type - LUIS
3
3
titleSuffix: Azure Cognitive Services
4
-
description: A simple entity describes a single concept from the machine-learned context. Add a phrase list when using a simple entity to improve results.
4
+
description: A simple entity describes a single concept from the machine-learning context. Add a phrase list when using a simple entity to improve results.
5
5
services: cognitive-services
6
6
author: diberry
7
7
manager: nitinme
@@ -13,7 +13,7 @@ ms.author: diberry
13
13
---
14
14
# Simple entity
15
15
16
-
A simple entity is a generic entity that describes a single concept and is learned from the machine-learned context. Because simple entities are generally names such as company names, product names, or other categories of names, add a [phrase list](luis-concept-feature.md) when using a simple entity to boost the signal of the names used.
16
+
A simple entity is a generic entity that describes a single concept and is learned from the machine-learning context. Because simple entities are generally names such as company names, product names, or other categories of names, add a [phrase list](luis-concept-feature.md) when using a simple entity to boost the signal of the names used.
Copy file name to clipboardExpand all lines: articles/cognitive-services/LUIS/reference-pattern-syntax.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.author: diberry
11
11
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](luis-reference-application-settings.md#punctuation-normalization) you want to ignore. It is **not** a regular expression.
12
12
13
13
> [!CAUTION]
14
-
> Patterns only include machine-learned entity parents, not subentities.
14
+
> Patterns only include machine-learning entity parents, not subentities.
15
15
16
16
Entities in patterns are surrounded by curly brackets, `{}`. Patterns can include entities, and entities with roles. [Pattern.any](luis-concept-entity-types.md#patternany-entity) is an entity only used in patterns.
Copy file name to clipboardExpand all lines: articles/cognitive-services/LUIS/tutorial-machine-learned-entity.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,32 +1,32 @@
1
1
---
2
-
title: "Tutorial: extract structured data with machine-learned entity - LUIS"
3
-
description: Extract structured data from an utterance using the machine-learned entity. To increase the extraction accuracy, add subentities with features.
2
+
title: "Tutorial: extract structured data with machine-learning entity - LUIS"
3
+
description: Extract structured data from an utterance using the machine-learning entity. To increase the extraction accuracy, add subentities with features.
4
4
ms.topic: tutorial
5
5
ms.date: 05/08/2020
6
6
#Customer intent: As a new user, I want to understand how to extract complex data contained in a user utterance.
7
7
---
8
8
9
-
# Tutorial: Extract structured data from user utterance with machine-learned entities in Language Understanding (LUIS)
9
+
# Tutorial: Extract structured data from user utterance with machine-learning entities in Language Understanding (LUIS)
10
10
11
-
In this tutorial, extract structured data from an utterance using the machine-learned entity.
11
+
In this tutorial, extract structured data from an utterance using the machine-learning entity.
12
12
13
-
The machine-learned entity supports the [model decomposition concept](luis-concept-model.md#v3-authoring-model-decomposition) by providing subentity entities with [features](luis-concept-feature.md).
13
+
The machine-learning entity supports the [model decomposition concept](luis-concept-model.md#v3-authoring-model-decomposition) by providing subentity entities with [features](luis-concept-feature.md).
This tutorial adds a machine-learned entity to extract data from a user's utterance.
29
+
This tutorial adds a machine-learning entity to extract data from a user's utterance.
30
30
31
31
The entity defines the data to extract from within the utterance. This includes giving the data a name, a type (if possible), any resolution of the data if there is ambiguity, and the exact text that makes up the data.
32
32
@@ -38,11 +38,11 @@ In order to define the data, you need to:
38
38
39
39
Entity decomposability is important for both intent prediction and for data extraction with the entity.
40
40
41
-
Start with a machine-learned entity, which is the beginning and top-level entity for data extraction. Then decompose the entity into subentities.
41
+
Start with a machine-learning entity, which is the beginning and top-level entity for data extraction. Then decompose the entity into subentities.
42
42
43
-
While you may not know how detailed you want your entity when you begin your app, a best practice is to start with a machine-learned entity, then decompose with subentities as your app matures.
43
+
While you may not know how detailed you want your entity when you begin your app, a best practice is to start with a machine-learning entity, then decompose with subentities as your app matures.
44
44
45
-
In this tutorial, you create a machine-learned entity to represent an order for a pizza app. The entity will extract order-related text, pulling out size, and quantity.
45
+
In this tutorial, you create a machine-learning entity to represent an order for a pizza app. The entity will extract order-related text, pulling out size, and quantity.
46
46
47
47
An utterance of `Please deliver one large cheese pizza to me` should extract `one large cheese pizza` as the order, then also extract `1` for quantity and `large` for size.
48
48
@@ -56,7 +56,7 @@ Download and save the [app JSON file](https://raw.githubusercontent.com/Azure-Sa
56
56
57
57
## Create machine learned entity
58
58
59
-
To extract details about a pizza order, create a top level, machine-learned`Order` entity.
59
+
To extract details about a pizza order, create a top level, machine-learning`Order` entity.
60
60
61
61
1. On the **Intents** page, select the **OrderPizza** intent.
62
62
@@ -180,7 +180,7 @@ To train the app, select **Train**. Training applies the changes, such as the ne
180
180
181
181
## Add a new example utterance
182
182
183
-
1. After training, add a new example utterance to the `OrderPizza` intent to see how well LUIS understands the machine-learned entity.
183
+
1. After training, add a new example utterance to the `OrderPizza` intent to see how well LUIS understands the machine-learning entity.
184
184
185
185
|Order example utterance|
186
186
|--|
@@ -198,7 +198,7 @@ To train the app, select **Train**. Training applies the changes, such as the ne
198
198
> [!div class="mx-imgBorder"]
199
199
> 
200
200
201
-
At this point, the machine-learned entity is working because it can find the entity within a new example utterance. As you add example utterances, if the entity is not predicted correctly, label the entity and the subentities. If the entity is predicted correctly, make sure to confirm the predictions.
201
+
At this point, the machine-learning entity is working because it can find the entity within a new example utterance. As you add example utterances, if the entity is not predicted correctly, label the entity and the subentities. If the entity is predicted correctly, make sure to confirm the predictions.
202
202
203
203
204
204
## Train the app to apply the entity changes to the app
@@ -300,7 +300,7 @@ In order to receive a LUIS prediction in a chat bot or other client application,
300
300
301
301
## Next steps
302
302
303
-
In this tutorial, the app uses a machine-learned entity to find the intent of a user's utterance and extract details from that utterance. Using the machine-learned entity allows you to decompose the details of the entity.
303
+
In this tutorial, the app uses a machine-learning entity to find the intent of a user's utterance and extract details from that utterance. Using the machine-learning entity allows you to decompose the details of the entity.
304
304
305
305
> [!div class="nextstepaction"]
306
306
> [Add a prebuilt keyphrase entity](luis-quickstart-intent-and-key-phrase.md)
Copy file name to clipboardExpand all lines: articles/cognitive-services/LUIS/what-is-luis.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ Your LUIS app contains a domain-specific natural language model. You can start t
41
41
42
42
***Prebuilt model** LUIS has many prebuilt domain models including intents, utterances, and prebuilt entities. You can use the prebuilt entities without having to use the intents and utterances of the prebuilt model. [Prebuilt domain models](luis-how-to-use-prebuilt-domains.md) include the entire design for you and are a great way to start using LUIS quickly.
43
43
44
-
***Custom model** LUIS gives you several ways to identify your own custom models including intents, and entities. Entities include machine-learned entities, specific or literal entities, and a combination of machine-learned and literal.
44
+
***Custom model** LUIS gives you several ways to identify your own custom models including intents, and entities. Entities include machine-learning entities, specific or literal entities, and a combination of machine-learning and literal.
45
45
46
46
## Build the LUIS model
47
47
Build the model with the [authoring](https://go.microsoft.com/fwlink/?linkid=2092087) APIs or with the [LUIS portal](https://www.luis.ai).
@@ -49,13 +49,13 @@ Learn what's new in the service. These items include release notes, videos, blog
49
49
* Italian [prebuilt entities](luis-reference-prebuilt-entities.md#italian-entity-support) - age, currency, dimension, number, and percentage resolution changed from V2.
50
50
* Enhanced user experience in [preview.luis.ai portal](https://preview.luis.ai) - revamped labeling experience to enable building and debugging complex models. Try the preview portal tutorials:
* Advance language understanding capabilities - [building sophisticated language models](luis-concept-entity-types.md) with less effort.
54
54
* Define machine learning features at the model level and enable models to be used as signals to other models, for example using entities as features to intents and to other entities.
55
55
* New, expanded [limits](luis-limits.md) - higher maximum for phrase lists and total phrases, new model as a feature limits
56
56
* Extract information from text in the format of deep hierarchy structure, making conversation applications more powerful.
0 commit comments