Skip to content

Commit e3a89fb

Browse files
committed
clu updates
1 parent f2b6006 commit e3a89fb

File tree

5 files changed

+12
-50
lines changed

5 files changed

+12
-50
lines changed

articles/cognitive-services/.openpublishing.redirection.cognitive-services.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4290,6 +4290,11 @@
42904290
"redirect_url": "/azure/cognitive-services/speech-service/speech-translation",
42914291
"redirect_document_id": false
42924292
},
4293+
{
4294+
"source_path_from_root": "/articles/cognitive-services/Speech-Service/index-intent-recognition.yml",
4295+
"redirect_url": "/azure/cognitive-services/speech-service/intent-recognition",
4296+
"redirect_document_id": false
4297+
},
42934298
{
42944299
"source_path_from_root": "/articles/cognitive-services/Speech-Service/intent.md",
42954300
"redirect_url": "/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech-csharp",

articles/cognitive-services/Speech-Service/how-to-use-custom-entity-pattern-matching.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ In this guide, you use the Speech SDK to develop a console application that deri
3030
3131
## When to use pattern matching
3232

33-
Use this sample code if:
34-
* You're only interested in matching strictly what the user said. These patterns match more aggressively than LUIS.
35-
* You don't have access to a [LUIS](../LUIS/index.yml) app, but still want intents.
36-
* You can't or don't want to create a [LUIS](../LUIS/index.yml) app but you still want some voice-commanding capability.
33+
Use pattern matching if:
34+
* You're only interested in matching strictly what the user said. These patterns match more aggressively than [conversational language understanding (CLU)](../LUIS/index.yml).
35+
* You don't have access to a CLU model, but still want intents.
3736

3837
For more information, see the [pattern matching overview](./pattern-matching-overview.md).
3938

articles/cognitive-services/Speech-Service/how-to-use-simple-language-pattern-matching.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ In this guide, you use the Speech SDK to develop a C++ console application that
3030
3131
## When to use pattern matching
3232

33-
Use this sample code if:
34-
* You're only interested in matching strictly what the user said. These patterns match more aggressively than LUIS.
35-
* You don't have access to a [LUIS](../LUIS/index.yml) app, but still want intents.
36-
* You can't or don't want to create a [LUIS](../LUIS/index.yml) app but you still want some voice-commanding capability.
33+
Use pattern matching if:
34+
* You're only interested in matching strictly what the user said. These patterns match more aggressively than [conversational language understanding (CLU)](../LUIS/index.yml).
35+
* You don't have access to a CLU model, but still want intents.
3736

3837
For more information, see the [pattern matching overview](./pattern-matching-overview.md).
3938

articles/cognitive-services/Speech-Service/includes/quickstarts/intent-recognition-clu/csharp.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,9 @@ Follow these steps to create a new console application and install the Speech SD
6666
speechConfig.SpeechRecognitionLanguage = "en-US";
6767
6868
using var audioConfig = AudioConfig.FromDefaultMicrophoneInput();
69-
using var speechRecognizer = new SpeechRecognizer(speechConfig, audioConfig);
7069
7170
// Creates an intent recognizer in the specified language using microphone as audio input.
72-
using (var intentRecognizer = new IntentRecognizer(speechConfig))
71+
using (var intentRecognizer = new IntentRecognizer(speechConfig, audioConfig))
7372
{
7473
var cluModel = new ConversationalLanguageUnderstandingModel(
7574
languageKey,

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

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)