You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/speech-container-howto.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ manager: nitinme
8
8
ms.service: cognitive-services
9
9
ms.subservice: speech-service
10
10
ms.topic: conceptual
11
-
ms.date: 12/04/2019
11
+
ms.date: 03/09/2020
12
12
ms.author: dapine
13
13
---
14
14
@@ -23,8 +23,8 @@ Speech containers enable customers to build a speech application architecture th
23
23
24
24
| Function | Features | Latest |
25
25
|--|--|--|
26
-
| Speech-to-text | Transcribes continuous real-time speech or batch audio recordings into text with intermediate results. | 2.0.0|
27
-
| Custom Speech-to-text | Using a custom model from the [Custom Speech portal](https://speech.microsoft.com/customspeech), transcribes continuous real-time speech or batch audio recordings into text with intermediate results. | 2.0.0|
26
+
| Speech-to-text | Transcribes continuous real-time speech or batch audio recordings into text with intermediate results. | 2.1.1|
27
+
| Custom Speech-to-text | Using a custom model from the [Custom Speech portal](https://speech.microsoft.com/customspeech), transcribes continuous real-time speech or batch audio recordings into text with intermediate results. | 2.1.1|
28
28
| Text-to-speech | Converts text to natural-sounding speech with plain text input or Speech Synthesis Markup Language (SSML). | 1.3.0 |
29
29
| Custom Text-to-speech | Using a custom model from the [Custom Voice portal](https://aka.ms/custom-voice-portal), converts text to natural-sounding speech with plain text input or Speech Synthesis Markup Language (SSML). | 1.3.0 |
30
30
@@ -159,7 +159,7 @@ All tags, except for `latest` are in the following format and are case-sensitive
159
159
The following tag is an example of the format:
160
160
161
161
```
162
-
2.0.0-amd64-en-us-preview
162
+
2.1.1-amd64-en-us-preview
163
163
```
164
164
165
165
For all of the supported locales of the **speech-to-text** container, please see [Speech-to-text image tags](../containers/container-image-tags.md#speech-to-text).
Copy file name to clipboardExpand all lines: articles/cognitive-services/containers/docker-compose-recipe.md
+13-19Lines changed: 13 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ manager: nitinme
8
8
ms.custom: seodec18
9
9
ms.service: cognitive-services
10
10
ms.topic: conceptual
11
-
ms.date: 01/23/2020
11
+
ms.date: 03/10/2020
12
12
ms.author: dapine
13
13
#As a potential customer, I want to know how to configure containers so I can reuse them.
14
14
@@ -19,9 +19,9 @@ ms.author: dapine
19
19
20
20
This article shows you how to deploy multiple Azure Cognitive Services containers. Specifically, you'll learn how to use Docker Compose to orchestrate multiple Docker container images.
21
21
22
-
> [Docker Compose](https://docs.docker.com/compose/) is a tool for defining and running multi-container Docker applications. In Compose, you use a YAML file to configure your application’s services. Then, you create and start all the services from your configuration by running a single command.
22
+
> [Docker Compose](https://docs.docker.com/compose/) is a tool for defining and running multi-container Docker applications. In Compose, you use a YAML file to configure your application's services. Then, you create and start all the services from your configuration by running a single command.
23
23
24
-
It can be useful to orchestrate multiple container images on a single host computer. In this article, we'll pull together the Recognize Text and Form Recognizer containers.
24
+
It can be useful to orchestrate multiple container images on a single host computer. In this article, we'll pull together the Read and Form Recognizer containers.
A Docker Compose file enables the management of all the stages in a defined service's life cycle: starting, stopping, and rebuilding services; viewing the service status; and log streaming. Open a command-line interface from the project directory (where the docker-compose.yaml file is located).
86
86
87
87
> [!NOTE]
88
-
> To avoid errors, make sure that the host machine correctly shares drives with Docker Engine. For example, if E:\publicpreview is used as a directory in the docker-compose.yaml file, share drive E with Docker.
88
+
> To avoid errors, make sure that the host machine correctly shares drives with Docker Engine. For example, if *E:\publicpreview* is used as a directory in the *docker-compose.yaml* file, share drive **E** with Docker.
89
89
90
-
From the command-line interface, execute the following command to start (or restart) all the services defined in the docker-compose.yaml file:
90
+
From the command-line interface, execute the following command to start (or restart) all the services defined in the *docker-compose.yaml* file:
Open a browser on the host machine and go to **localhost** by using the specified port from the docker-compose.yaml file, such as http://localhost:5021/swagger/index.html. You can use the "Try It" feature in the API to test the Recognize Text endpoint.
174
-
175
-

176
-
177
-
### Test the Form Recognizer container
178
-
179
-
Open a browser on the host machine and go to **localhost** by using the specified port from the docker-compose.yaml file, such as http://localhost:5010/swagger/index.html. You can use the "Try It" feature in the API to test the Form Recognizer endpoint.
173
+
Open a browser on the host machine and go to **localhost** by using the specified port from the *docker-compose.yaml* file, such as http://localhost:5021/swagger/index.html. For example, you could use the **Try It** feature in the API to test the Form Recognizer endpoint. Both containers swagger pages should be available and testable.
0 commit comments