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/ai-services/language-service/custom-text-classification/includes/rest-api/unassign-resources.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
@@ -49,7 +49,7 @@ Use the following sample JSON as your body.
49
49
50
50
|Key |Placeholder |Value | Example |
51
51
|---------|---------|----------|--|
52
-
|`assignedResourceIds`|`{AZURE-RESOURCE-ID}`| The full resource ID path you want to unassign. Found in the Azure portal under the _Properties_ tab for the resource as the _Resource ID_ field. |`/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/ContosoResourceGroup/providers/Microsoft.CognitiveServices/accounts/ContosoResource`|
52
+
|`assignedResourceIds`|`{AZURE-RESOURCE-ID}`| The full resource ID path you want to unassign. Found in the Azure portal under the _Properties_ tab for the resource as the _Resource ID_ field. |`/subscriptions/a0a0a0a0-bbbb-cccc-dddd-e1e1e1e1e1e1/resourceGroups/ContosoResourceGroup/providers/Microsoft.CognitiveServices/accounts/ContosoResource`|
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/how-to-custom-speech-create-project.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
@@ -116,7 +116,7 @@ To get the project ID for a custom speech project in [Speech Studio](https://aka
116
116
1. Inspect the URL in your browser. The project ID is part of the URL. For example, the project ID is `00001111-aaaa-2222-bbbb-3333cccc4444` in the following URL:
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/how-to-custom-speech-model-and-endpoint-lifecycle.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ To get the training and transcription expiration dates for a base model, use the
87
87
Here's an example Speech CLI command to get the training and transcription expiration dates for a base model:
88
88
89
89
```azurecli-interactive
90
-
spx csr model status --api-version v3.2 --model https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/models/base/b0bbc1e0-78d5-468b-9b7c-a5a43b2bb83f
90
+
spx csr model status --api-version v3.2 --model https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/models/base/aaaabbbb-0000-cccc-1111-dddd2222eeee
91
91
```
92
92
93
93
> [!IMPORTANT]
@@ -99,7 +99,7 @@ You should receive a response body in the following format:
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/how-to-custom-speech-train-model.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,7 +87,7 @@ To create a model with datasets for training, use the `spx csr model create` com
87
87
- Set the required `dataset` property 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.
88
88
- Set the required `language` property. The dataset locale must match the locale of the project. The locale can't be changed later. The Speech CLI `language` property corresponds to the `locale` property in the JSON request and response.
89
89
- Set the required `name` property. This parameter is the name that is displayed in the [Azure AI Foundry portal](https://ai.azure.com/?cid=learnDocs). The Speech CLI `name` property corresponds to the `displayName` property in the JSON request and response.
90
-
- Optionally, you can set the `base` property. For example: `--base 5988d691-0893-472c-851e-8e36a0fe7aaf`. If you don't specify the `base`, the default base model for the locale is used. The Speech CLI `base` property corresponds to the `baseModel` property in the JSON request and response.
90
+
- Optionally, you can set the `base` property. For example: `--base bbbbcccc-1111-dddd-2222-eeee3333ffff`. If you don't specify the `base`, the default base model for the locale is used. The Speech CLI `base` property corresponds to the `baseModel` property in the JSON request and response.
91
91
92
92
Here's an example Speech CLI command that creates a model with datasets for training:
93
93
@@ -102,13 +102,13 @@ You should receive a response body in the following format:
@@ -166,21 +166,21 @@ To create a model with datasets for training, use the [Models_Create](/rest/api/
166
166
- Set the required `datasets` property to the URI of the datasets that you want used for training.
167
167
- 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.
168
168
- Set the required `displayName` property. This property is the name that is displayed in the [Azure AI Foundry portal](https://ai.azure.com/?cid=learnDocs).
169
-
- Optionally, you can set the `baseModel` property. For example: `"baseModel": {"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/5988d691-0893-472c-851e-8e36a0fe7aaf"}`. If you don't specify the `baseModel`, the default base model for the locale is used.
169
+
- Optionally, you can set the `baseModel` property. For example: `"baseModel": {"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/bbbbcccc-1111-dddd-2222-eeee3333ffff"}`. If you don't specify the `baseModel`, the default base model for the locale is used.
170
170
171
171
Make an HTTP POST request using the URI as shown in the following example. Replace `YourSpeechResoureKey` with your Speech resource key, replace `YourServiceRegion` with your Speech resource region, and set the request body properties as previously described.
The required Transcription ID is the GUID value contained in the main `self` element of the Response body returned by requests, like [Transcriptions - Submit](/rest/api/speechtotext/transcriptions/submit).
97
97
98
-
The following is and example response body of a [Transcriptions - Submit](/rest/api/speechtotext/transcriptions/submit) request. GUID value `537216f8-0620-4a10-ae2d-00bdb423b36f` found in the first `self` element is the Transcription ID.
98
+
The following is and example response body of a [Transcriptions - Submit](/rest/api/speechtotext/transcriptions/submit) request. GUID value `aaaabbbb-0000-cccc-1111-dddd2222eeee` found in the first `self` element is the Transcription ID.
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/includes/how-to/professional-voice/create-consent/rest.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,13 +68,12 @@ You should receive a response body in the following format:
68
68
The response header contains the `Operation-Location` property. Use this URI to get details about the [Consents_Create](/rest/api/aiservices/speechapi/consents/create) operation. Here's an example of the response header:
The response header contains the `Operation-Location` property. Use this URI to get details about the [TrainingSets_UploadData](/rest/api/aiservices/speechapi/training-sets/upload-data) operation. Here's an example of the response header:
0 commit comments