Skip to content

Commit 3f7bdef

Browse files
committed
updating for ntts
1 parent 2abe028 commit 3f7bdef

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

articles/cognitive-services/cognitive-services-container-support.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.custom: cog-serv-seo-aug-2020, ignite-fall-2021
99
ms.service: cognitive-services
1010
ms.topic: conceptual
11-
ms.date: 01/12/2022
11+
ms.date: 03/11/2022
1212
ms.author: aahi
1313
keywords: on-premises, Docker, container, Kubernetes
1414
#Customer intent: As a potential customer, I want to know more about how Cognitive Services provides and supports Docker containers for each service.
@@ -63,7 +63,7 @@ Azure Cognitive Services containers provide the following set of Docker containe
6363
| [Speech Service API][sp-containers-cstt] | **Custom Speech-to-text** ([image](https://hub.docker.com/_/microsoft-azure-cognitive-services-speechservices-custom-speech-to-text)) | Transcribes continuous real-time speech into text using a custom model. | Generally available |
6464
| [Speech Service API][sp-containers-tts] | **Text-to-speech** ([image](https://hub.docker.com/_/microsoft-azure-cognitive-services-speechservices-text-to-speech)) | Converts text to natural-sounding speech. | Generally available |
6565
| [Speech Service API][sp-containers-ctts] | **Custom Text-to-speech** ([image](https://hub.docker.com/_/microsoft-azure-cognitive-services-speechservices-custom-text-to-speech)) | Converts text to natural-sounding speech using a custom model. | Gated preview |
66-
| [Speech Service API][sp-containers-ntts] | **Neural Text-to-speech** ([image](https://hub.docker.com/_/microsoft-azure-cognitive-services-speechservices-neural-text-to-speech)) | Converts text to natural-sounding speech using deep neural network technology, allowing for more natural synthesized speech. | Generally available. |
66+
| [Speech Service API][sp-containers-ntts] | **Neural Text-to-speech** ([image](https://hub.docker.com/_/microsoft-azure-cognitive-services-speechservices-neural-text-to-speech)) | Converts text to natural-sounding speech using deep neural network technology, allowing for more natural synthesized speech. | Generally available. <br> container can also [run in disconnected environments](containers/disconnected-containers.md). |
6767
| [Speech Service API][sp-containers-lid] | **Speech language detection** ([image](https://hub.docker.com/_/microsoft-azure-cognitive-services-speechservices-language-detection)) | Determines the language of spoken audio. | Gated preview |
6868

6969
### Vision containers

articles/cognitive-services/containers/disconnected-container-faq.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ metadata:
88
manager: nitinme
99
ms.service: cognitive-services
1010
ms.topic: faq
11-
ms.date: 01/11/2022
11+
ms.date: 03/11/2022
1212
ms.author: aahi
1313
title: FAQ for Azure Cognitive Services disconnected containers
1414
summary: |
@@ -21,6 +21,7 @@ sections:
2121
Disconnected containers are offered through commitment tier pricing, each offering a discounted rate compared to the pay-as-you-go pricing model. With commitment tier pricing, you can commit to using the following Cognitive Services features for a fixed fee, enabling you to have a predictable total cost based on the needs of your workload.
2222
* Speech services
2323
* Speech to Text (Standard)
24+
* Neural Text to Speech
2425
* Text Translation (Standard)
2526
* Azure Cognitive Service for Language
2627
* Sentiment Analysis
@@ -127,6 +128,7 @@ sections:
127128
128129
* [Speech Services](https://azure.microsoft.com/pricing/details/cognitive-services/speech-services/) for:
129130
* Speech to Text (Standard)
131+
* Neural Text to Speech
130132
* [Text Translation (Standard)](https://azure.microsoft.com/pricing/details/cognitive-services/translator/)
131133
* [Azure Cognitive Service for Language pricing](https://azure.microsoft.com/pricing/details/cognitive-services/language-service/) for
132134
* Sentiment Analysis
@@ -146,6 +148,7 @@ sections:
146148
147149
* [Speech Services](../speech-service/speech-container-howto.md#host-computer-requirements-and-recommendations) for:
148150
* Speech to Text (Standard)
151+
* Neural Text to Speech
149152
* [Text Translation (Standard)](../translator/containers/translator-how-to-install-container.md#host-computer)
150153
* Azure Cognitive Service for Language documentation for
151154
* [Sentiment Analysis](../language-service/sentiment-opinion-mining/how-to/use-containers.md#host-computer-requirements-and-recommendations)

articles/cognitive-services/containers/disconnected-containers.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: aahill
77
manager: nitinme
88
ms.service: cognitive-services
99
ms.topic: reference
10-
ms.date: 01/20/2022
10+
ms.date: 03/11/2022
1111
ms.author: aahi
1212
---
1313

@@ -16,6 +16,7 @@ ms.author: aahi
1616
Containers enable you to run Cognitive Services APIs in your own environment, and are great for your specific security and data governance requirements. Disconnected containers enable you to use several of these APIs completely disconnected from the internet. Currently, the following containers can be run in this manner:
1717

1818
* [Speech to Text (Standard)](../speech-service/speech-container-howto.md?tabs=stt)
19+
* [Neural Text to Speech](../speech-service/speech-container-howto.md?tabs=ntts)
1920
* [Text Translation (Standard)](../translator/containers/translator-how-to-install-container.md#host-computer)
2021
* Azure Cognitive Service for Language
2122
* [Sentiment Analysis](../language-service/sentiment-opinion-mining/how-to/use-containers.md)
@@ -112,7 +113,7 @@ After you have configured the container, use the next section to run the contain
112113
## Run the container in a disconnected environment
113114

114115
> [!IMPORTANT]
115-
> If you're using the Translator or Speech-to-text containers, read the **Additional parameters** section below for information on commands or additional parameters you will need to use.
116+
> If you're using the Translator, Neural text-to-speech, or Speech-to-text containers, read the **Additional parameters** section below for information on commands or additional parameters you will need to use.
116117
117118
Once the license file has been downloaded, you can run the container in a disconnected environment. The following example shows the formatting of the `docker run` command you'll use, with placeholder values. Replace these placeholder values with your own values.
118119

@@ -147,9 +148,9 @@ If you're using the [Translator container](../translator/containers/translator-h
147148
-e TRANSLATORSYSTEMCONFIG=/path/to/model/config/translatorsystemconfig.json
148149
```
149150

150-
#### Speech-to-text container
151+
#### Speech-to-text and Neural text-to-speech containers
151152

152-
The [speech-to-text container](../speech-service/speech-container-howto.md?tabs=stt) provides two default directories, `license` and `output`, by default for writing the license file and billing log at runtime. When you're mounting these directories to the container with the `docker run -v` command, make sure the local machine directory is set ownership to `user:group nonroot:nonroot` before running the container.
153+
The [speech-to-text](../speech-service/speech-container-howto.md?tabs=stt) and [neural text-to-speech](../speech-service/speech-container-howto.md?tabs=ntts) containers provide a default directory for writing the license file and billing log at runtime. When you're mounting these directories to the container with the `docker run -v` command, make sure the local machine directory is set ownership to `user:group nonroot:nonroot` before running the container.
153154

154155
Below is a sample command to set file/directory ownership.
155156

0 commit comments

Comments
 (0)