Skip to content

Commit 66299e8

Browse files
authored
Merge pull request #101505 from IEvangelist/speechContainersFAQ
Initial bits of FAQ page for speech
2 parents 92eb9b4 + b222371 commit 66299e8

File tree

4 files changed

+653
-1
lines changed

4 files changed

+653
-1
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
author: IEvangelist
3+
manager: nitinme
4+
ms.service: cognitive-services
5+
ms.topic: include
6+
ms.date: 01/22/2020
7+
ms.author: dapine
8+
---
9+
10+
## Speech modes
11+
12+
**Interactive**
13+
- Meant for command and control scenarios.
14+
- Has a segmentation time out value of X.
15+
- At the end of one recognized utterance, the service stops processing audio from that request ID and ends the turn. The connection is not closed.
16+
- Maximum limit for recognition is 20s.
17+
- Typical Carbon call to invoke is `RecognizeOnceAsync`.
18+
19+
**Conversation**
20+
- Meant for longer running recognitions.
21+
- Has a segmentation time out value of Y. (Y != X)
22+
- Will process multiple complete utterances without ending the turn.
23+
- Will end the turn for too much silence.
24+
- Carbon will continue with a new request ID and replaying audio as needed.
25+
- The service will forcibly disconnect after 10 minutes of speech recognition.
26+
- Carbon will reconnect and replay unacknowledged audio.
27+
- Invoked in Carbon with `StartContinuousRecognition`.
28+
29+
**Dictation**
30+
- Allows users to specify punctuation by speaking it.
31+
- Invoked in Carbon by specifying `EnableDictation` on the `SpeechConfig` object regardless of the API call that starts recognition.
32+
- The 1<sup>st</sup> party cluster returns `speech.fragment` messages for intermediate results, the 3<sup>rd</sup> party return `speech.hypothesis` messages.

articles/cognitive-services/Speech-Service/index-hosting.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ metadata:
1010
manager: nitinme
1111
ms.service: speech-service
1212
ms.topic: landing-page
13-
ms.date: 03/10/2020
13+
ms.date: 03/23/2020
1414
ms.author: dapine
1515

1616
landingContent:
@@ -40,3 +40,5 @@ landingContent:
4040
url: regions.md
4141
- text: Sovereign clouds
4242
url: sovereign-clouds.md
43+
- text: Containers FAQ
44+
url: speech-container-faq.md

0 commit comments

Comments
 (0)