Skip to content

Commit 6b1fd02

Browse files
authored
Merge pull request #211083 from eric-urban/eur/cut-qualtrics
Retire inline feedback from some QS
2 parents eb24e83 + 122e91d commit 6b1fd02

19 files changed

+3
-208
lines changed

articles/cognitive-services/Speech-Service/how-to-custom-speech-create-project.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ To create a Custom Speech project, follow these steps:
3434

3535
Select the new project by name or select **Go to project**. You will see these menu items in the left panel: **Speech datasets**, **Train custom models**, **Test models**, and **Deploy models**.
3636

37-
> [!div class="nextstepaction"]
38-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Create-a-project&Section=Create-a-project" target="_target">I ran into an issue</a>
39-
4037
::: zone-end
4138

4239
::: zone pivot="speech-cli"
@@ -52,9 +49,6 @@ Here's an example Speech CLI command that creates a project:
5249
spx csr project create --name "My Project" --description "My Project Description" --language "en-US"
5350
```
5451

55-
> [!div class="nextstepaction"]
56-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Create-a-project&Section=Create-a-project" target="_target">I ran into an issue</a>
57-
5852
You should receive a response body in the following format:
5953

6054
```json
@@ -108,9 +102,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
108102
} ' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/projects"
109103
```
110104

111-
> [!div class="nextstepaction"]
112-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Create-a-project&Section=Create-a-project" target="_target">I ran into an issue</a>
113-
114105
You should receive a response body in the following format:
115106

116107
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-deploy-model.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ Here's an example Speech CLI command to create an endpoint and deploy a model:
7070
spx csr endpoint create --project YourProjectId --model YourModelId --name "My Endpoint" --description "My Endpoint Description" --language "en-US"
7171
```
7272

73-
> [!div class="nextstepaction"]
74-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Add-a-deployment-endpoint" target="_target">I ran into an issue</a>
75-
7673
You should receive a response body in the following format:
7774

7875
```json
@@ -144,9 +141,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
144141
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints"
145142
```
146143

147-
> [!div class="nextstepaction"]
148-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Add-a-deployment-endpoint" target="_target">I ran into an issue</a>
149-
150144
You should receive a response body in the following format:
151145

152146
```json
@@ -212,9 +206,6 @@ Here's an example Speech CLI command that redeploys the custom endpoint with a n
212206
spx csr endpoint update --endpoint YourEndpointId --model YourModelId
213207
```
214208

215-
> [!div class="nextstepaction"]
216-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Add-a-deployment-endpoint" target="_target">I ran into an issue</a>
217-
218209
You should receive a response body in the following format:
219210

220211
```json
@@ -271,9 +262,6 @@ curl -v -X PATCH -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content
271262
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints/YourEndpointId"
272263
```
273264

274-
> [!div class="nextstepaction"]
275-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Change-model-and-redeploy-endpoint" target="_target">I ran into an issue</a>
276-
277265
You should receive a response body in the following format:
278266

279267
```json
@@ -337,9 +325,6 @@ Here's an example Speech CLI command that gets logs for an endpoint:
337325
spx csr endpoint list --endpoint YourEndpointId
338326
```
339327

340-
> [!div class="nextstepaction"]
341-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Change-model-and-redeploy-endpoint" target="_target">I ran into an issue</a>
342-
343328
The location of each log file with more details are returned in the response body.
344329

345330
::: zone-end
@@ -354,9 +339,6 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
354339
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints/YourEndpointId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
355340
```
356341

357-
> [!div class="nextstepaction"]
358-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Change-model-and-redeploy-endpoint" target="_target">I ran into an issue</a>
359-
360342
You should receive a response body in the following format:
361343

362344
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-evaluate-data.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ Follow these steps to create a test:
4343
1. Enter the test name and description, and then select **Next**.
4444
1. Review the test details, and then select **Save and close**.
4545

46-
> [!div class="nextstepaction"]
47-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Create-a-test" target="_target">I ran into an issue</a>
48-
4946
::: zone-end
5047

5148
::: zone pivot="speech-cli"
@@ -65,9 +62,6 @@ Here's an example Speech CLI command that creates a test:
6562
spx csr evaluation create --project 9f8c4cbb-f9a5-4ec1-8bb0-53cfa9221226 --dataset be378d9d-a9d7-4d4a-820a-e0432e8678c7 --model1 ff43e922-e3e6-4bf0-8473-55c08fd68048 --model2 1aae1070-7972-47e9-a977-87e3b05c457d --name "My Evaluation" --description "My Evaluation Description"
6663
```
6764

68-
> [!div class="nextstepaction"]
69-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Create-a-test" target="_target">I ran into an issue</a>
70-
7165
You should receive a response body in the following format:
7266

7367
```json
@@ -168,9 +162,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
168162
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations"
169163
```
170164

171-
> [!div class="nextstepaction"]
172-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Create-a-test" target="_target">I ran into an issue</a>
173-
174165
You should receive a response body in the following format:
175166

176167
```json
@@ -246,9 +237,6 @@ Follow these steps to get test results:
246237

247238
This page lists all the utterances in your dataset and the recognition results, alongside the transcription from the submitted dataset. You can toggle various error types, including insertion, deletion, and substitution. By listening to the audio and comparing recognition results in each column, you can decide which model meets your needs and determine where additional training and improvements are required.
248239

249-
> [!div class="nextstepaction"]
250-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Get-test-results" target="_target">I ran into an issue</a>
251-
252240
::: zone-end
253241

254242
::: zone pivot="speech-cli"
@@ -263,9 +251,6 @@ Here's an example Speech CLI command that gets test results:
263251
spx csr evaluation status --evaluation 8bfe6b05-f093-4ab4-be7d-180374b751ca
264252
```
265253

266-
> [!div class="nextstepaction"]
267-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Get-test-results" target="_target">I ran into an issue</a>
268-
269254
The word error rates and more details are returned in the response body.
270255

271256
You should receive a response body in the following format:
@@ -342,9 +327,6 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
342327
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations/YourEvaluationId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
343328
```
344329

345-
> [!div class="nextstepaction"]
346-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Get-test-results" target="_target">I ran into an issue</a>
347-
348330
The word error rates and more details are returned in the response body.
349331

350332
You should receive a response body in the following format:

articles/cognitive-services/Speech-Service/how-to-custom-speech-inspect-data.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ Follow these instructions to create a test:
3939
1. Enter the test name and description, and then select **Next**.
4040
1. Review your settings, and then select **Save and close**.
4141

42-
> [!div class="nextstepaction"]
43-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Create-a-test" target="_target">I ran into an issue</a>
44-
4542
::: zone-end
4643

4744
::: zone pivot="speech-cli"
@@ -61,9 +58,6 @@ Here's an example Speech CLI command that creates a test:
6158
spx csr evaluation create --project 9f8c4cbb-f9a5-4ec1-8bb0-53cfa9221226 --dataset be378d9d-a9d7-4d4a-820a-e0432e8678c7 --model1 ff43e922-e3e6-4bf0-8473-55c08fd68048 --model2 1aae1070-7972-47e9-a977-87e3b05c457d --name "My Inspection" --description "My Inspection Description"
6259
```
6360

64-
> [!div class="nextstepaction"]
65-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Create-a-test" target="_target">I ran into an issue</a>
66-
6761
You should receive a response body in the following format:
6862

6963
```json
@@ -160,9 +154,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
160154
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations"
161155
```
162156

163-
> [!div class="nextstepaction"]
164-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Create-a-test" target="_target">I ran into an issue</a>
165-
166157
You should receive a response body in the following format:
167158

168159
```json
@@ -236,9 +227,6 @@ Follow these steps to get test results:
236227

237228
This page lists all the utterances in your dataset and the recognition results, alongside the transcription from the submitted dataset. You can toggle various error types, including insertion, deletion, and substitution. By listening to the audio and comparing recognition results in each column, you can decide which model meets your needs and determine where additional training and improvements are required.
238229

239-
> [!div class="nextstepaction"]
240-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Get-test-results" target="_target">I ran into an issue</a>
241-
242230
::: zone-end
243231

244232
::: zone pivot="speech-cli"
@@ -253,9 +241,6 @@ Here's an example Speech CLI command that gets test results:
253241
spx csr evaluation status --evaluation 8bfe6b05-f093-4ab4-be7d-180374b751ca
254242
```
255243

256-
> [!div class="nextstepaction"]
257-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Get-test-results" target="_target">I ran into an issue</a>
258-
259244
The models, audio dataset, transcriptions, and more details are returned in the response body.
260245

261246
You should receive a response body in the following format:
@@ -329,9 +314,6 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
329314
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations/YourEvaluationId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
330315
```
331316

332-
> [!div class="nextstepaction"]
333-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Get-test-results" target="_target">I ran into an issue</a>
334-
335317
The models, audio dataset, transcriptions, and more details are returned in the response body.
336318

337319
You should receive a response body in the following format:

articles/cognitive-services/Speech-Service/how-to-custom-speech-train-model.md

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ After you've uploaded [training datasets](./how-to-custom-speech-test-and-train.
5353
> [!IMPORTANT]
5454
> Take note of the **Expiration** date. This is the last date that you can use your custom model for speech recognition. For more information, see [Model and endpoint lifecycle](./how-to-custom-speech-model-and-endpoint-lifecycle.md).
5555
56-
> [!div class="nextstepaction"]
57-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Create-a-model" target="_target">I ran into an issue</a>
58-
5956
::: zone-end
6057

6158
::: zone pivot="speech-cli"
@@ -66,7 +63,7 @@ To create a model with datasets for training, use the `spx csr model create` com
6663
- Set the required `dataset` parameter to the ID of a dataset that you want used for training. To specify multiple datasets, set the `datasets` (plural) parameter and separate the IDs with a semicolon.
6764
- Set the required `language` parameter. The dataset locale must match the locale of the project. The locale can't be changed later. The Speech CLI `language` parameter corresponds to the `locale` property in the JSON request and response.
6865
- Set the required `name` parameter. This is the name that will be displayed in the Speech Studio. The Speech CLI `name` parameter corresponds to the `displayName` property in the JSON request and response.
69-
- Optionally, you can set the `baseModel` parameter. If you don't specify the `baseModel`, the default base model for the locale is used.
66+
- Optionally, you can set the `base` property. For example: `--base 1aae1070-7972-47e9-a977-87e3b05c457d`. If you don't specify the `base`, the default base model for the locale is used. The Speech CLI `base` parameter corresponds to the `baseModel` property in the JSON request and response.
7067

7168
Here's an example Speech CLI command that creates a model with datasets for training:
7269

@@ -75,10 +72,7 @@ spx csr model create --project YourProjectId --name "My Model" --description "My
7572
```
7673

7774
> [!NOTE]
78-
> In this example, the `baseModel` isn't set, so the default base model for the locale is used. The base model URI is returned in the response.
79-
80-
> [!div class="nextstepaction"]
81-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Create-a-model" target="_target">I ran into an issue</a>
75+
> In this example, the `base` isn't set, so the default base model for the locale is used. The base model URI is returned in the response.
8276
8377
You should receive a response body in the following format:
8478

@@ -138,7 +132,7 @@ To create a model with datasets for training, use the [CreateModel](https://east
138132
- Set the required `datasets` property to the URI of the datasets that you want used for training.
139133
- Set the required `locale` property. The model locale must match the locale of the project and base model. The locale can't be changed later.
140134
- Set the required `displayName` property. This is the name that will be displayed in the Speech Studio.
141-
- Optionally, you can set the `baseModel` property. If you don't specify the `baseModel`, the default base model for the locale is used.
135+
- Optionally, you can set the `baseModel` property. For example: `"baseModel": {"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.0/models/base/1aae1070-7972-47e9-a977-87e3b05c457d"}`. If you don't specify the `baseModel`, the default base model for the locale is used.
142136

143137
Make an HTTP POST request using the URI as shown in the following example. Replace `YourSubscriptionKey` with your Speech resource key, replace `YourServiceRegion` with your Speech resource region, and set the request body properties as previously described.
144138

@@ -162,9 +156,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
162156
> [!NOTE]
163157
> In this example, the `baseModel` isn't set, so the default base model for the locale is used. The base model URI is returned in the response.
164158
165-
> [!div class="nextstepaction"]
166-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Create-a-model" target="_target">I ran into an issue</a>
167-
168159
You should receive a response body in the following format:
169160

170161
```json
@@ -229,9 +220,6 @@ Follow these instructions to copy a model to a project in another region:
229220

230221
After the model is successfully copied, you'll be notified and can view it in the target project.
231222

232-
> [!div class="nextstepaction"]
233-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Copy-a-model" target="_target">I ran into an issue</a>
234-
235223
::: zone-end
236224

237225
::: zone pivot="speech-cli"
@@ -257,9 +245,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
257245
> [!NOTE]
258246
> Only the `targetSubscriptionKey` property in the request body has information about the destination Speech resource.
259247
260-
> [!div class="nextstepaction"]
261-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Copy-a-model" target="_target">I ran into an issue</a>
262-
263248
You should receive a response body in the following format:
264249

265250
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-upload-data.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ To upload your own datasets in Speech Studio, follow these steps:
3636

3737
After your dataset is uploaded, go to the **Train custom models** page to [train a custom model](how-to-custom-speech-train-model.md)
3838

39-
> [!div class="nextstepaction"]
40-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Upload-training-and-testing-datasets&Section=Upload-datasets" target="_target">I ran into an issue</a>
41-
4239
::: zone-end
4340

4441
::: zone pivot="speech-cli"
@@ -59,9 +56,6 @@ Here's an example Speech CLI command that creates a dataset and connects it to a
5956
spx csr dataset create --kind "Acoustic" --name "My Acoustic Dataset" --description "My Acoustic Dataset Description" --project YourProjectId --content YourContentUrl --language "en-US"
6057
```
6158

62-
> [!div class="nextstepaction"]
63-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Upload-training-and-testing-datasets&Section=Upload-datasets" target="_target">I ran into an issue</a>
64-
6559
You should receive a response body in the following format:
6660

6761
```json
@@ -125,9 +119,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
125119
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/datasets"
126120
```
127121

128-
> [!div class="nextstepaction"]
129-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Upload-training-and-testing-datasets&Section=Upload-datasets" target="_target">I ran into an issue</a>
130-
131122
You should receive a response body in the following format:
132123

133124
```json

0 commit comments

Comments
 (0)