Skip to content

Commit 021971c

Browse files
authored
Merge pull request #280911 from MicrosoftDocs/main
7/16 11:00 AM IST Publish
2 parents e2927a8 + 770b03b commit 021971c

File tree

53 files changed

+1693
-649
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1693
-649
lines changed

articles/ai-services/speech-service/faq-stt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,9 +155,9 @@ sections:
155155
answer: |
156156
Training a model with audio data can be a lengthy process. Depending on the amount of data, it can take several days to create a custom model. If it can't be finished within one week, the service might abort the training operation and report the model as failed.
157157
158-
In general, Speech service processes approximately 10 hours of audio data per day in regions that have dedicated hardware. It can process only about 1 hour of audio data per day in other regions. Training with text only is faster and ordinarily finishes within minutes.
158+
In general, Speech service processes approximately 10 hours of audio data per day in regions that have dedicated hardware. Training with text only is faster and ordinarily finishes within minutes.
159159
160-
Use one of the regions where dedicated hardware is available for training. The Speech service uses up to 20 hours of audio for training in these regions. In other regions, the Speech service uses up to 8 hours.
160+
Use one of the regions where dedicated hardware is available for training. The Speech service uses up to 100 hours of audio for training in these regions.
161161
162162
- name: Accuracy testing
163163
questions:

articles/ai-services/speech-service/how-to-custom-speech-create-project.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: eric-urban
66
manager: nitinme
77
ms.service: azure-ai-speech
88
ms.topic: how-to
9-
ms.date: 4/15/2024
9+
ms.date: 7/15/2024
1010
ms.author: eur
1111
zone_pivot_groups: speech-studio-cli-rest
1212
---
@@ -44,20 +44,20 @@ To create a project, use the `spx csr project create` command. Construct the req
4444
Here's an example Speech CLI command that creates a project:
4545

4646
```azurecli-interactive
47-
spx csr project create --api-version v3.1 --name "My Project" --description "My Project Description" --language "en-US"
47+
spx csr project create --api-version v3.2 --name "My Project" --description "My Project Description" --language "en-US"
4848
```
4949

5050
You should receive a response body in the following format:
5151

5252
```json
5353
{
54-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed",
54+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52",
5555
"links": {
56-
"evaluations": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/evaluations",
57-
"datasets": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/datasets",
58-
"models": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/models",
59-
"endpoints": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/endpoints",
60-
"transcriptions": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/transcriptions"
56+
"evaluations": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/evaluations",
57+
"datasets": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/datasets",
58+
"models": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/models",
59+
"endpoints": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/endpoints",
60+
"transcriptions": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/transcriptions"
6161
},
6262
"properties": {
6363
"datasetCount": 0,
@@ -66,7 +66,7 @@ You should receive a response body in the following format:
6666
"transcriptionCount": 0,
6767
"endpointCount": 0
6868
},
69-
"createdDateTime": "2022-05-17T22:15:18Z",
69+
"createdDateTime": "2024-07-14T17:15:55Z",
7070
"locale": "en-US",
7171
"displayName": "My Project",
7272
"description": "My Project Description"
@@ -97,20 +97,20 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
9797
"displayName": "My Project",
9898
"description": "My Project Description",
9999
"locale": "en-US"
100-
} ' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.1/projects"
100+
} ' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.2/projects"
101101
```
102102

103103
You should receive a response body in the following format:
104104

105105
```json
106106
{
107-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed",
107+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52",
108108
"links": {
109-
"evaluations": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/evaluations",
110-
"datasets": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/datasets",
111-
"models": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/models",
112-
"endpoints": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/endpoints",
113-
"transcriptions": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/1cdfa276-0f9d-425b-a942-5f2be93017ed/transcriptions"
109+
"evaluations": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/evaluations",
110+
"datasets": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/datasets",
111+
"models": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/models",
112+
"endpoints": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/endpoints",
113+
"transcriptions": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/projects/0198f569-cc11-4099-a0e8-9d55bc3d0c52/transcriptions"
114114
},
115115
"properties": {
116116
"datasetCount": 0,
@@ -119,7 +119,7 @@ You should receive a response body in the following format:
119119
"transcriptionCount": 0,
120120
"endpointCount": 0
121121
},
122-
"createdDateTime": "2022-05-17T22:15:18Z",
122+
"createdDateTime": "2024-07-14T17:15:55Z",
123123
"locale": "en-US",
124124
"displayName": "My Project",
125125
"description": "My Project Description"

0 commit comments

Comments
 (0)