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/includes/containers-cstt-common-run.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
@@ -14,10 +14,10 @@ The following table represents the various `docker run` parameters and their cor
14
14
|---------|---------|
15
15
|`{VOLUME_MOUNT}`| The host computer [volume mount](https://docs.docker.com/storage/volumes/), which Docker uses to persist the custom model. An example is `c:\CustomSpeech` where the `c:\` drive is located on the host machine. |
16
16
|`{MODEL_ID}`| The custom speech or base model ID. For more information, see [Get the model ID](#get-the-model-id). |
17
-
|`{ENDPOINT_URI}`| The endpoint is required for metering and billing. For more information, see [billing arguments](speech-container-howto.md#billing-arguments). |
18
-
|`{API_KEY}`| The API key is required. For more information, see [billing arguments](speech-container-howto.md#billing-arguments). |
17
+
|`{ENDPOINT_URI}`| The endpoint is required for metering and billing. For more information, see [billing arguments](../speech-container-howto.md#billing-arguments). |
18
+
|`{API_KEY}`| The API key is required. For more information, see [billing arguments](../speech-container-howto.md#billing-arguments). |
19
19
20
-
When you run the custom speech-to-text container, configure the port, memory, and CPU according to the custom speech-to-text container [requirements and recommendations](speech-container-howto.md#container-requirements-and-recommendations).
20
+
When you run the custom speech-to-text container, configure the port, memory, and CPU according to the custom speech-to-text container [requirements and recommendations](../speech-container-howto.md#container-requirements-and-recommendations).
21
21
22
22
Here's an example `docker run` command with placeholder values. You must specify the `VOLUME_MOUNT`, `MODEL_ID`, `ENDPOINT_URI`, and `API_KEY` values:
23
23
@@ -41,4 +41,4 @@ This command:
41
41
* If the custom model was previously downloaded, the `ModelId` is ignored.
42
42
* Automatically removes the container after it exits. The container image is still available on the host computer.
43
43
44
-
For more information about `docker run` with Speech containers, see [Install and run Speech containers with Docker](speech-container-howto.md#run-the-container).
44
+
For more information about `docker run` with Speech containers, see [Install and run Speech containers with Docker](../speech-container-howto.md#run-the-container).
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/includes/containers-speech-config-ws.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,13 @@ Speech containers provide websocket-based query endpoint APIs that are accessed
14
14
> When you use the Speech service with containers, be sure to use host authentication. If you configure the key and region, requests will go to the public Speech service. Results from the Speech service might not be what you expect. Requests from disconnected containers will fail.
15
15
16
16
::: zone pivot="programming-language-csharp"
17
-
Change from using this Azure-cloud initialization call:
17
+
Instead of using this Azure-cloud initialization config:
18
18
19
19
```csharp
20
20
varconfig=SpeechConfig.FromSubscription(...);
21
21
```
22
22
23
-
To using this call with the container [host](/dotnet/api/microsoft.cognitiveservices.speech.speechconfig.fromhost):
23
+
Use this config with the container [host](/dotnet/api/microsoft.cognitiveservices.speech.speechconfig.fromhost):
24
24
25
25
```csharp
26
26
varconfig=SpeechConfig.FromHost(
@@ -29,98 +29,98 @@ var config = SpeechConfig.FromHost(
29
29
::: zone-end
30
30
31
31
::: zone pivot="programming-language-cpp"
32
-
Change from using this Azure-cloud initialization call:
32
+
Instead of using this Azure-cloud initialization config:
33
33
34
34
```cpp
35
35
auto speechConfig = SpeechConfig::FromSubscription(...);
36
36
```
37
37
38
-
To using this call with the container [host](/cpp/cognitive-services/speech/speechconfig#fromhost):
38
+
Use this config with the container [host](/cpp/cognitive-services/speech/speechconfig#fromhost):
39
39
40
40
```cpp
41
41
auto speechConfig = SpeechConfig::FromHost("ws://localhost:5000");
42
42
```
43
43
::: zone-end
44
44
45
45
::: zone pivot="programming-language-go"
46
-
Change from using this Azure-cloud initialization call:
46
+
Instead of using this Azure-cloud initialization config:
To using this call with the container [host](/java/api/com.microsoft.cognitiveservices.speech.speechconfig#com-microsoft-cognitiveservices-speech-speechconfig-fromhost(java-net-uri)):
66
+
Use this config with the container [host](/java/api/com.microsoft.cognitiveservices.speech.speechconfig#com-microsoft-cognitiveservices-speech-speechconfig-fromhost(java-net-uri)):
To using this call with the container [host](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechconfig#microsoft-cognitiveservices-speech-sdk-speechconfig-fromhost):
80
+
Use this config with the container [host](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechconfig#microsoft-cognitiveservices-speech-sdk-speechconfig-fromhost):
The Speech language identification container detects the language spoken in audio files. You can get real-time speech or batch audio recordings with intermediate results. In this article, you'll learn how to download, install, and run a language identification container.
20
20
21
21
> [!NOTE]
22
+
> You must [request and get approval](speech-container-overview.md#request-approval-to-run-the-container) to use a Speech container.
23
+
>
22
24
> The Speech language identification container is available in public preview. Containers in preview are still under development and don't meet Microsoft's stability and support requirements.
23
25
26
+
For more information about prerequisites, validating that a container is running, running multiple containers on the same host, and running disconnected containers, see [Install and run Speech containers with Docker](speech-container-howto.md).
27
+
24
28
> [!TIP]
25
29
> To get the most useful results, use the Speech language identification container with the [speech-to-text](speech-container-stt.md) or [custom speech-to-text](speech-container-cstt.md) containers.
26
30
27
-
> [!NOTE]
28
-
> You must [request and get approval](speech-container-overview.md#request-approval-to-run-the-container) to use a Speech container.
29
-
30
-
For more information about prerequisites, validating that a container is running, running multiple containers on the same host, and running disconnected containers, see [Install and run Speech containers with Docker](speech-container-howto.md).
31
-
32
31
## Container images
33
32
34
33
The Speech language identification container image for all supported versions and locales can be found on the [Microsoft Container Registry (MCR)](https://mcr.microsoft.com/product/azure-cognitive-services/speechservices/language-detection/tags) syndicate. It resides within the `azure-cognitive-services/speechservices/` repository and is named `language-detection`.
@@ -40,7 +39,7 @@ The fully qualified container image name is, `mcr.microsoft.com/azure-cognitive-
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/speech-container-ntts.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ The fully qualified container image name is, `mcr.microsoft.com/azure-cognitive-
34
34
| Version | Path |
35
35
|-----------|------------|
36
36
| Latest |`mcr.microsoft.com/azure-cognitive-services/speechservices/neural-text-to-speech:latest`<br/><br/>The `latest` tag pulls the `en-US` locale and `en-us-arianeural` voice. |
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/speech-container-overview.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,19 @@ The Speech containers send billing information to Azure by using a Speech resour
62
62
63
63
Speech containers aren't licensed to run without being connected to Azure for metering. You must configure your container to communicate billing information with the metering service at all times. For more information, see [billing arguments](speech-container-howto.md#billing-arguments).
64
64
65
+
## Container recipes and other container services
66
+
67
+
You can use container recipes to create containers that can be reused. Containers can be built with some or all configuration settings so that they are not needed when the container is started. For container recipes see the following Azure Cognitive Services articles:
68
+
-[Create containers for reuse](../containers/container-reuse-recipe.md)
69
+
-[Deploy and run container on Azure Container Instance](../containers/azure-container-instance-recipe.md)
70
+
-[Deploy a language detection container to Azure Kubernetes Service](../containers/azure-kubernetes-recipe.md)
71
+
-[Use Docker Compose to deploy multiple containers](../containers/docker-compose-recipe.md)
72
+
73
+
For information about other container services, see the following Azure Cognitive Services articles:
74
+
-[Tutorial: Create a container image for deployment to Azure Container Instances](../../container-instances/container-instances-tutorial-prepare-app.md)
75
+
-[Quickstart: Create a private container registry using the Azure CLI](../../container-registry/container-registry-get-started-azure-cli.md)
76
+
-[Tutorial: Prepare an application for Azure Kubernetes Service (AKS)](../../aks/tutorial-kubernetes-prepare-app.md)
77
+
65
78
## Next steps
66
79
67
80
*[Install and run Speech containers](speech-container-howto.md)
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/speech-container-stt.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ The fully qualified container image name is, `mcr.microsoft.com/azure-cognitive-
34
34
| Version | Path |
35
35
|-----------|------------|
36
36
| Latest |`mcr.microsoft.com/azure-cognitive-services/speechservices/speech-to-text:latest`<br/><br/>The `latest` tag pulls the latest image for the `en-US` locale. |
0 commit comments