Skip to content

Commit 81cb59f

Browse files
authored
Merge pull request #223208 from goergenj/docs-editor/speech-container-configuration-1673033929
goergenj remove non-supported containers
2 parents a156005 + 6fa6391 commit 81cb59f

File tree

1 file changed

+3
-53
lines changed

1 file changed

+3
-53
lines changed

articles/cognitive-services/Speech-Service/speech-container-configuration.md

Lines changed: 3 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.author: eur
1414

1515
# Configure Speech service containers
1616

17-
Speech containers enable customers to build one speech application architecture that is optimized to take advantage of both robust cloud capabilities and edge locality. The five speech containers we support now are, **speech-to-text**, **custom-speech-to-text**, **text-to-speech**, **neural-text-to-speech** and **custom-text-to-speech**.
17+
Speech containers enable customers to build one speech application architecture that is optimized to take advantage of both robust cloud capabilities and edge locality. The supported speech containers are **speech-to-text**, **Custom speech-to-text**, **speech language identification** and **Neural text-to-speech**.
1818

1919
The **Speech** container runtime environment is configured using the `docker run` command arguments. This container has several required settings, along with a few optional settings. Several [examples](#example-docker-run-commands) of the command are available. The container-specific settings are the billing settings.
2020

@@ -99,7 +99,7 @@ The volume mount setting consists of three color `:` separated fields:
9999
This command mounts the host machine _C:\input_ directory to the containers _/usr/local/models_ directory.
100100

101101
> [!IMPORTANT]
102-
> The volume mount settings are only applicable to **Custom Speech-to-text** and **Custom Text-to-speech** containers. The **Speech-to-text**, **Neural Text-to-speech** and **Text-to-speech** containers do not use volume mounts.
102+
> The volume mount settings are only applicable to **Custom Speech-to-text** containers. The **Speech-to-text**, **Neural Text-to-speech** and **Speech language identification** containers do not use volume mounts.
103103
104104
## Example docker run commands
105105

@@ -175,56 +175,6 @@ ApiKey={API_KEY} \
175175
Logging:Console:LogLevel:Default=Information
176176
```
177177

178-
## [Text-to-speech](#tab/tss)
179-
180-
### Basic example for Text-to-speech
181-
182-
```Docker
183-
docker run --rm -it -p 5000:5000 --memory 2g --cpus 1 \
184-
mcr.microsoft.com/azure-cognitive-services/speechservices/text-to-speech \
185-
Eula=accept \
186-
Billing={ENDPOINT_URI} \
187-
ApiKey={API_KEY}
188-
```
189-
190-
### Logging example for Text-to-speech
191-
192-
```Docker
193-
docker run --rm -it -p 5000:5000 --memory 2g --cpus 1 \
194-
mcr.microsoft.com/azure-cognitive-services/speechservices/text-to-speech \
195-
Eula=accept \
196-
Billing={ENDPOINT_URI} \
197-
ApiKey={API_KEY} \
198-
Logging:Console:LogLevel:Default=Information
199-
```
200-
201-
## [Custom Text-to-speech](#tab/ctts)
202-
203-
### Basic example for Custom Text-to-speech
204-
205-
```Docker
206-
docker run --rm -it -p 5000:5000 --memory 2g --cpus 1 \
207-
-v {VOLUME_MOUNT}:/usr/local/models \
208-
mcr.microsoft.com/azure-cognitive-services/speechservices/custom-text-to-speech \
209-
ModelId={MODEL_ID} \
210-
Eula=accept \
211-
Billing={ENDPOINT_URI} \
212-
ApiKey={API_KEY}
213-
```
214-
215-
### Logging example for Custom Text-to-speech
216-
217-
```Docker
218-
docker run --rm -it -p 5000:5000 --memory 2g --cpus 1 \
219-
-v {VOLUME_MOUNT}:/usr/local/models \
220-
mcr.microsoft.com/azure-cognitive-services/speechservices/custom-text-to-speech \
221-
ModelId={MODEL_ID} \
222-
Eula=accept \
223-
Billing={ENDPOINT_URI} \
224-
ApiKey={API_KEY} \
225-
Logging:Console:LogLevel:Default=Information
226-
```
227-
228178
## [Neural Text-to-speech](#tab/ntts)
229179

230180
### Basic example for Neural Text-to-speech
@@ -272,7 +222,7 @@ Logging:Console:LogLevel:Default=Information
272222
```
273223

274224
---
275-
276225
## Next steps
277226

278227
- Review [How to install and run containers](speech-container-howto.md)
228+

0 commit comments

Comments
 (0)