Skip to content

Commit f2b6006

Browse files
committed
clu updates
1 parent e081e5a commit f2b6006

File tree

4 files changed

+13
-49
lines changed

4 files changed

+13
-49
lines changed

articles/cognitive-services/Speech-Service/get-started-intent-recognition-clu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: quickstart
11-
ms.date: 02/17/2023
11+
ms.date: 02/22/2023
1212
ms.author: eur
1313
zone_pivot_groups: programming-languages-set-thirteen
1414
keywords: intent recognition

articles/cognitive-services/Speech-Service/get-started-intent-recognition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: quickstart
11-
ms.date: 01/08/2022
11+
ms.date: 02/22/2023
1212
ms.author: eur
1313
ms.devlang: cpp, csharp, java, javascript, python
1414
ms.custom: devx-track-js, devx-track-csharp, cog-serv-seo-aug-2020, mode-other

articles/cognitive-services/Speech-Service/index-intent-recognition.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
### YamlMime:Landing
22

33
title: Intent recognition documentation
4-
summary: Intent recognition with the Speech and Language Understanding (LUIS) services, enables real-time transcription of audio streams into text, while identifying intent and entities.
4+
summary: Intent recognition with the Speech and Language services, enables real-time transcription of audio streams into text, while identifying intent and entities.
55
metadata:
66
title: Intent recognition documentation - Tutorials, API Reference - Azure Cognitive Services | Microsoft Docs
77
titleSuffix: Azure Cognitive Services
@@ -26,24 +26,12 @@ landingContent:
2626
links:
2727
- text: Overview
2828
url: intent-recognition.md
29-
- text: Recognize speech intents with CLU
30-
url: get-started-intent-recognition-clu.md
3129
- text: Recognize speech intents with simple pattern matching
3230
url: how-to-use-simple-language-pattern-matching.md
3331
- text: Recognize speech intents with custom entity matching
3432
url: how-to-use-custom-entity-pattern-matching.md
35-
- title: Reference
36-
linkLists:
37-
- linkListType: reference
38-
links:
39-
- text: Language Understanding (LUIS) portal
40-
url: https://www.luis.ai
41-
- text: LUIS developer resources
42-
url: ../luis/developer-reference-resource.md
43-
- text: Language support
44-
url: ../luis/luis-language-support.md
45-
- text: Intent recognition pricing
46-
url: https://azure.microsoft.com/pricing/details/cognitive-services/language-understanding-intelligent-services
33+
- text: Recognize speech intents with CLU
34+
url: get-started-intent-recognition-clu.md
4735
- title: Help and feedback
4836
linkLists:
4937
- linkListType: reference

articles/cognitive-services/Speech-Service/intent-recognition.md

Lines changed: 8 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: nitinme
77
ms.service: cognitive-services
88
ms.subservice: speech-service
99
ms.topic: overview
10-
ms.date: 10/13/2020
10+
ms.date: 02/22/2023
1111
keywords: intent recognition
1212
---
1313

@@ -17,7 +17,7 @@ In this overview, you will learn about the benefits and capabilities of intent r
1717

1818
## Pattern matching
1919

20-
The SDK provides an embedded pattern matcher that you can use to recognize intents in a very strict way. This is useful for when you need a quick offline solution. This works especially well when the user is going to be trained in some way or can be expected to use specific phrases to trigger intents. For example: "Go to floor seven", or "Turn on the lamp" etc. It is recommended to start here and if it no longer meets your needs, switch to using LUIS or a combination of the two.
20+
The Speech SDK provides an embedded pattern matcher that you can use to recognize intents in a very strict way. This is useful for when you need a quick offline solution. This works especially well when the user is going to be trained in some way or can be expected to use specific phrases to trigger intents. For example: "Go to floor seven", or "Turn on the lamp" etc. It is recommended to start here and if it no longer meets your needs, switch to using LUIS or a combination of the two.
2121

2222
Use pattern matching if:
2323
* You're only interested in matching strictly what the user said. These patterns match more aggressively than [conversational language understanding (CLU)](../LUIS/index.yml).
@@ -29,7 +29,10 @@ For more information, see the [pattern matching concepts](./pattern-matching-ove
2929

3030
## Conversational Language Understanding
3131

32-
Conversational language understanding (CLU) enables users to build custom natural language understanding models to predict the overall intention of an incoming utterance and extract important information from it.
32+
Conversational language understanding (CLU) enables users to build custom natural language understanding models to predict the overall intention of an incoming utterance and extract important information from it.
33+
34+
> [!IMPORTANT]
35+
> For information about pricing for conversational language understanding, see [Language service pricing](https://azure.microsoft.com/pricing/details/cognitive-services/language-service/).
3336
3437
Both a Speech resource and Language resource are required to use CLU with the Speech SDK. The Speech resource is used to transcribe the user's speech into text, and the Language resource is used to recognize the intent of the utterance. To get started, see the [quickstart](get-started-intent-recognition-clu.md).
3538

@@ -40,34 +43,7 @@ For information about how to use conversational language understanding without t
4043
>
4144
> Conversational Language Understanding (CLU) is available for C# and C++ with the [Speech SDK](speech-sdk.md) version 1.25 or later. See the [quickstart](get-started-intent-recognition-clu.md) to recognize intents with the Speech SDK and CLU.
4245
43-
### LUIS key required
44-
45-
* LUIS integrates with the Speech service to recognize intents from speech. You don't need a Speech service subscription, just LUIS.
46-
* Speech intent recognition is integrated with the Speech SDK. You can use a LUIS key with the Speech service.
47-
* Intent recognition through the Speech SDK is [offered in a subset of regions supported by LUIS](./regions.md#intent-recognition).
48-
49-
## Get started
50-
See this [how-to](how-to-use-simple-language-pattern-matching.md) to get started with pattern matching.
51-
52-
See this [quickstart](get-started-intent-recognition-clu.md) to get started with conversational language understanding intent recognition.
53-
54-
## Sample code
55-
56-
Sample code for intent recognition:
57-
58-
* [Quickstart: Use prebuilt Home automation app](../luis/luis-get-started-create-app.md)
59-
* [Recognize intents from speech using the Speech SDK for C#](./how-to-recognize-intents-from-speech-csharp.md)
60-
* [Intent recognition and other Speech services using Unity in C#](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/csharp/unity/speechrecognizer)
61-
* [Recognize intents using Speech SDK for Python](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/python/console)
62-
* [Intent recognition and other Speech services using the Speech SDK for C++ on Windows](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/cpp/windows/console)
63-
* [Intent recognition and other Speech services using the Speech SDK for Java on Windows or Linux](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/java/jre/console)
64-
* [Intent recognition and other Speech services using the Speech SDK for JavaScript on a web browser](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/js/browser)
65-
66-
## Reference docs
67-
68-
* [Speech SDK](./speech-sdk.md)
69-
7046
## Next steps
7147

72-
* [Intent recognition quickstart](get-started-intent-recognition.md)
73-
* [Get the Speech SDK](speech-sdk.md)
48+
* [Intent recognition with simple pattern matching](how-to-use-simple-language-pattern-matching.md)
49+
* [Intent recognition with CLU quickstart](get-started-intent-recognition-clu.md)

0 commit comments

Comments
 (0)