Skip to content

Commit f5907dc

Browse files
authored
Merge pull request #115683 from diberry/diberry/0519-luis-machine-learned-4
[Cogsvcs] LUIS machine-learned -> learning 4
2 parents be7c896 + 444c39e commit f5907dc

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

articles/cognitive-services/LUIS/includes/decomposable-tutorial-links.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ ms.date: 05/06/2020
99
ms.author: diberry
1010
---
1111

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:
1313

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**
1515
* [Add prebuilt number entity](../tutorial-machine-learned-entity.md#add-prebuilt-number-entity-to-app) from the **Entities list page**.
1616
* [Add subentity with required feature](../tutorial-machine-learned-entity.md#create-subcomponent-entity-with-constraint-to-help-extract-data) from the **Entity detail page**.
1717
* [Label example utterance with subentity](../tutorial-machine-learned-entity.md#label-example-utterance-to-teach-luis-about-the-entity) on **Intent detail page**

articles/cognitive-services/LUIS/reference-entity-simple.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Simple entity type - LUIS
33
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.
55
services: cognitive-services
66
author: diberry
77
manager: nitinme
@@ -13,7 +13,7 @@ ms.author: diberry
1313
---
1414
# Simple entity
1515

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

1818
**The entity is a good fit when:**
1919

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.author: diberry
1111
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.
1212

1313
> [!CAUTION]
14-
> Patterns only include machine-learned entity parents, not subentities.
14+
> Patterns only include machine-learning entity parents, not subentities.
1515
1616
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.
1717

articles/cognitive-services/LUIS/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
displayName: Calendar, Communication,Email,HomeAutomation,Note,Places, RestaurantReservation,ToDo,Utilities,Weather,Web
379379
- name: Custom entity reference
380380
items:
381-
- name: Machine-learned entity
381+
- name: machine-learning entity
382382
href: reference-entity-machine-learned-entity.md
383383
- name: Composite entity
384384
href: reference-entity-composite.md

articles/cognitive-services/LUIS/tutorial-machine-learned-entity.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
---
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.
44
ms.topic: tutorial
55
ms.date: 05/08/2020
66
#Customer intent: As a new user, I want to understand how to extract complex data contained in a user utterance.
77
---
88

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)
1010

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.
1212

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).
1414

1515
**In this tutorial, you learn how to:**
1616

1717
> [!div class="checklist"]
1818
> * Import example app
19-
> * Add machine-learned entity
19+
> * Add machine-learning entity
2020
> * Add subentity and feature
2121
> * Train, Test, Publish app
2222
> * Get entity prediction from endpoint
2323
2424
[!INCLUDE [LUIS Free account](includes/quickstart-tutorial-use-free-starter-key.md)]
2525

2626

27-
## Why use a machine-learned entity?
27+
## Why use a machine-learning entity?
2828

29-
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.
3030

3131
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.
3232

@@ -38,11 +38,11 @@ In order to define the data, you need to:
3838

3939
Entity decomposability is important for both intent prediction and for data extraction with the entity.
4040

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.
4242

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.
4444

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.
4646

4747
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.
4848

@@ -56,7 +56,7 @@ Download and save the [app JSON file](https://raw.githubusercontent.com/Azure-Sa
5656

5757
## Create machine learned entity
5858

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.
6060

6161
1. On the **Intents** page, select the **OrderPizza** intent.
6262

@@ -180,7 +180,7 @@ To train the app, select **Train**. Training applies the changes, such as the ne
180180

181181
## Add a new example utterance
182182

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.
184184

185185
|Order example utterance|
186186
|--|
@@ -198,7 +198,7 @@ To train the app, select **Train**. Training applies the changes, such as the ne
198198
> [!div class="mx-imgBorder"]
199199
> ![Partial screenshot of new example utterance predicted with entity](media/tutorial-machine-learned-entity/confirm-entity-prediction-for-new-example-utterance-added.png)
200200
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.
202202

203203

204204
## 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,
300300

301301
## Next steps
302302

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.
304304

305305
> [!div class="nextstepaction"]
306306
> [Add a prebuilt keyphrase entity](luis-quickstart-intent-and-key-phrase.md)

articles/cognitive-services/LUIS/what-is-luis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Your LUIS app contains a domain-specific natural language model. You can start t
4141

4242
* **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.
4343

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.
4545

4646
## Build the LUIS model
4747
Build the model with the [authoring](https://go.microsoft.com/fwlink/?linkid=2092087) APIs or with the [LUIS portal](https://www.luis.ai).

articles/cognitive-services/LUIS/whats-new.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ Learn what's new in the service. These items include release notes, videos, blog
1616
* Released as **generally available** (GA):
1717
* [Language Understanding container](luis-container-howto.md)
1818
* Preview portal promoted to [current portal](https://www.luis.ai), [previous](https://previous.luis.ai) portal still available
19-
* New machine-learned entity creation and labeling experience
20-
* [Upgrade process](migrate-from-composite-entity.md) from composite and simple entities to machine-learned entities
19+
* New machine-learning entity creation and labeling experience
20+
* [Upgrade process](migrate-from-composite-entity.md) from composite and simple entities to machine-learning entities
2121
* [Setting](how-to-application-settings-portal.md) support for normalizing word variants
2222
* Preview Authoring API changes
23-
* App schema 7.x for nested machine-learned entities
23+
* App schema 7.x for nested machine-learning entities
2424
* [Migration to required feature](luis-migration-authoring-entities.md#api-change-constraint-replaced-with-required-feature)
2525
* New resources for developers
2626
* [Continuous integration tools](developer-reference-resource.md#continuous-integration-tools)
@@ -49,13 +49,13 @@ Learn what's new in the service. These items include release notes, videos, blog
4949
* Italian [prebuilt entities](luis-reference-prebuilt-entities.md#italian-entity-support) - age, currency, dimension, number, and percentage resolution changed from V2.
5050
* 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:
5151
* [Intents only](tutorial-intents-only.md)
52-
* [Decomposable machine-learned entity](tutorial-machine-learned-entity.md)
52+
* [Decomposable machine-learning entity](tutorial-machine-learned-entity.md)
5353
* Advance language understanding capabilities - [building sophisticated language models](luis-concept-entity-types.md) with less effort.
5454
* 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.
5555
* New, expanded [limits](luis-limits.md) - higher maximum for phrase lists and total phrases, new model as a feature limits
5656
* Extract information from text in the format of deep hierarchy structure, making conversation applications more powerful.
5757

58-
![machine-learned entity image](./media/whats-new/deep-entity-extraction-example.png)
58+
![machine-learning entity image](./media/whats-new/deep-entity-extraction-example.png)
5959

6060
### September 3, 2019
6161

0 commit comments

Comments
 (0)