Skip to content

Commit 3d86ef6

Browse files
authored
Merge pull request #213206 from aahill/luis-dep-banner
[BULK] [CogSvcs] Luis deprecation banner
2 parents 55584e6 + e682209 commit 3d86ef6

File tree

90 files changed

+308
-40
lines changed

Some content is hidden

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

90 files changed

+308
-40
lines changed

articles/cognitive-services/LUIS/app-schema-definition.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ ms.date: 08/22/2020
99

1010
# App schema definition
1111

12+
[!INCLUDE [deprecation notice](./includes/deprecation-notice.md)]
13+
14+
1215
The LUIS app is represented in either the `.json` or `.lu` and includes all intents, entities, example utterances, features, and settings.
1316

1417
## Format
@@ -141,4 +144,4 @@ When you import and export the app, choose either `.json` or `.lu`.
141144

142145
## Next steps
143146

144-
* Migrate to the [V3 authoring APIs](luis-migration-authoring-entities.md)
147+
* Migrate to the [V3 authoring APIs](luis-migration-authoring-entities.md)

articles/cognitive-services/LUIS/choose-natural-language-processing-service.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ ms.date: 10/20/2020
99

1010
# Use Cognitive Services with natural language processing (NLP) to enrich chat bot conversations
1111

12+
[!INCLUDE [deprecation notice](./includes/deprecation-notice.md)]
13+
14+
1215
[!INCLUDE [QnA and LUIS - concepts](../includes/luis-qnamaker-shared-concept.md)]
1316

1417
## Next steps
1518

16-
* Learn [enterprise design strategies](luis-concept-enterprise.md)
19+
* Learn [enterprise design strategies](luis-concept-enterprise.md)

articles/cognitive-services/LUIS/client-libraries-rest-api.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ zone_pivot_groups: programming-languages-set-luis
1515
---
1616
# Quickstart: Language Understanding (LUIS) client libraries and REST API
1717

18-
> [!NOTE]
19-
> A newer version of Language Understanding capabilities are now available as part of Azure Cognitive Service for Language. For more information see [Azure Cognitive Service for Language Documentation](../language-service/index.yml). For language understanding capabilities within the Language Service, see [Conversational Language Understanding](../language-service/conversational-language-understanding/overview.md), [Custom Named Entity Recognition](../language-service/custom-named-entity-recognition/overview.md), and [Custom Classification](../language-service/custom-classification/overview.md).
18+
[!INCLUDE [deprecation notice](./includes/deprecation-notice.md)]
2019

2120
Create and query an Azure LUIS artificial intelligence (AI) app with the LUIS SDK client libraries with this quickstart using C#, Python, or JavaScript. You can also use cURL to send requests using the REST API.
2221

articles/cognitive-services/LUIS/concepts/application-design.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ ms.date: 01/10/2022
1616

1717
# Plan your LUIS app
1818

19+
[!INCLUDE [deprecation notice](../includes/deprecation-notice.md)]
20+
21+
1922
A Language Understanding (LUIS) app schema contains [intents](../luis-glossary.md#intent) and [entities](../luis-glossary.md#entity) relevant to your subject [domain](../luis-glossary.md#domain). The intents classify user [utterances](../luis-glossary.md#utterance), and the entities extract data from the user utterances. Intents and entities relevant to your subject domain. The intents classify user utterances.
2023

2124
A LUIS app learns and performs most efficiently when you iteratively develop it. Here's a typical iteration cycle:

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

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ ms.date: 07/19/2022
1616

1717
# Entity types
1818

19+
[!INCLUDE [deprecation notice](../includes/deprecation-notice.md)]
20+
21+
1922
An entity is an item or an element that is relevant to the user's intent. Entities define data that can be extracted from the utterance and is essential to complete a user's required action. For example:
2023

2124

@@ -47,9 +50,9 @@ Matching list entities is both case sensitive and it has to be an exact match. N
4750

4851
| Normalized value | Synonyms |
4952
|--|--|
50-
| Small | sm, sml, tiny, smallest |
51-
| Medium | md, mdm, regular, average, middle |
52-
| Large | lg, lrg, big |
53+
| Small | `sm`, `sml`, `tiny`, `smallest` |
54+
| Medium | `md`, `mdm`, `regular`, `average`, `middle` |
55+
| Large | `lg`, `lrg`, `big` |
5356

5457
See the [list entities reference article](../reference-entity-list.md) for more information.
5558

@@ -59,8 +62,8 @@ A regular expression entity extracts an entity based on a regular expression pat
5962

6063
| Entity | Regular expression | Example |
6164
|--|--|--|
62-
| Flight Number | flight [A-Z]{2} [0-9]{4} | flight AS 1234 |
63-
| Credit Card Number | [0-9]{16} | 5478789865437632 |
65+
| Flight Number | `flight [A-Z]{2} [0-9]{4}` | `flight AS 1234` |
66+
| Credit Card Number | `[0-9]{16}` | `5478789865437632` |
6467

6568
See the [regex entities reference article](../reference-entity-regular-expression.md) for more information.
6669

@@ -74,7 +77,7 @@ When a prebuilt entity is included in your application, its predictions are incl
7477
| Prebuilt entity | Example value |
7578
|--|--|
7679
| PersonName | James, Bill, Tom |
77-
| DatetimeV2 | 2019-05-02, May 2nd, 8am on May 2nd 2019 |
80+
| DatetimeV2 | `2019-05-02`, `May 2nd`, `8am on May 2nd 2019` |
7881

7982
See the [prebuilt entities reference article](../luis-reference-prebuilt-entities.md) for more information.
8083

@@ -85,9 +88,9 @@ A pattern.Any entity is a variable-length placeholder used only in a pattern's t
8588

8689
| Example utterance | Pattern | Entity |
8790
|--|--|--|
88-
| Can I have a burger please? | Can I have a {meal} [please][?] | burger |
89-
| Can I have a pizza? | Can I have a {meal} [please][?] | pizza |
90-
| Where can I find The Great Gatsby? | Where can I find {bookName}? | The Great Gatsby |
91+
| Can I have a burger please? | `Can I have a {meal} [please][?]` | burger |
92+
| Can I have a pizza? | `Can I have a {meal} [please][?]` | pizza |
93+
| Where can I find The Great Gatsby? | `Where can I find {bookName}?` | The Great Gatsby |
9194

9295
See the [Pattern.Any entities reference article](../reference-entity-pattern-any.md) for more information.
9396

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ ms.date: 07/19/2022
1414
---
1515
# Intents
1616

17+
[!INCLUDE [deprecation notice](../includes/deprecation-notice.md)]
18+
19+
1720
An intent represents a task or action the user wants to perform. It is a purpose or goal expressed in a user's [utterance](utterances.md).
1821

1922
Define a set of intents that corresponds to actions users want to take in your application. For example, a travel app would have several intents:

articles/cognitive-services/LUIS/concepts/patterns-features.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ ms.date: 07/19/2022
1515

1616
# Patterns in LUIS apps
1717

18+
[!INCLUDE [deprecation notice](../includes/deprecation-notice.md)]
19+
20+
1821
Patterns are designed to improve accuracy when multiple utterances are very similar. A pattern allows you to gain more accuracy for an intent without providing several more utterances.
1922

2023
## Patterns solve low intent confidence

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ ms.date: 07/19/2022
1111
---
1212
# Utterances
1313

14+
[!INCLUDE [deprecation notice](../includes/deprecation-notice.md)]
15+
16+
1417
Utterances are inputs from users that your app needs to interpret. To train LUIS to extract intents and entities from these inputs, it's important to capture various different example utterances for each intent. Active learning, or the process of continuing to train on new utterances, is essential to the machine-learning intelligence that LUIS provides.
1518

1619
Collect utterances that you think users will enter. Include utterances, which mean the same thing but are constructed in various ways:

articles/cognitive-services/LUIS/data-collection.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ ms.date: 05/06/2020
99

1010
# Data collection for your app
1111

12+
[!INCLUDE [deprecation notice](./includes/deprecation-notice.md)]
13+
14+
1215
A Language Understanding (LUIS) app needs data as part of app development.
1316

1417
## Data used in LUIS

articles/cognitive-services/LUIS/developer-reference-resource.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ ms.custom: "devx-track-js, devx-track-csharp"
1111

1212
# SDK, REST, and CLI developer resources for Language Understanding (LUIS)
1313

14+
[!INCLUDE [deprecation notice](./includes/deprecation-notice.md)]
15+
16+
1417
SDKs, REST APIs, CLI, help you develop Language Understanding (LUIS) apps in your programming language. Manage your Azure resources and LUIS predictions.
1518

1619
## Azure resource management

0 commit comments

Comments
 (0)