Skip to content

Commit 63b6348

Browse files
committed
inline-feedback-experiment
1 parent 41f0f8a commit 63b6348

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ To create a model with datasets for training, use the `spx csr model create` com
6363
- 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.
6464
- 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.
6565
- 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.
66-
- 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.
6767

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

@@ -72,7 +72,7 @@ spx csr model create --project YourProjectId --name "My Model" --description "My
7272
```
7373

7474
> [!NOTE]
75-
> 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.
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.
7676
7777
You should receive a response body in the following format:
7878

@@ -132,7 +132,7 @@ To create a model with datasets for training, use the [CreateModel](https://east
132132
- Set the required `datasets` property to the URI of the datasets that you want used for training.
133133
- 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.
134134
- Set the required `displayName` property. This is the name that will be displayed in the Speech Studio.
135-
- 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.
136136

137137
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.
138138

0 commit comments

Comments
 (0)