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/cognitive-services/language-service/orchestration-workflow/includes/rest-api/train-model.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ Use the following object in your request. The model will be named `MyModel` once
40
40
```json
41
41
{
42
42
"modelLabel": "{MODEL-NAME}",
43
+
"trainingMode": "standard"
43
44
"trainingConfigVersion": "{CONFIG-VERSION}",
44
45
"evaluationOptions": {
45
46
"kind": "percentage",
@@ -51,6 +52,7 @@ Use the following object in your request. The model will be named `MyModel` once
51
52
|Key |Placeholder|Value | Example |
52
53
|---------|-----|----|---------|
53
54
|`modelLabel`|`{MODEL-NAME}`|Your Model name. |`Model1`|
55
+
|`trainingMode`|`standard`| Training mode. Only one mode for training is available in orchestration, which is `standard`. |`standard`|
54
56
|`trainingConfigVersion`|`{CONFIG-VERSION}`| The training configuration model version. By default, the latest [model version](../../../concepts/model-lifecycle.md) is used. |`2022-05-01`|
55
57
|`kind`|`percentage`| Split methods. Possible values are `percentage` or `manual`. See [how to train a model](../../how-to/train-model.md) for more information. |`percentage`|
56
58
|`trainingSplitPercentage`|`80`| Percentage of your tagged data to be included in the training set. Recommended value is `80`. |`80`|
0 commit comments