Skip to content

Commit fcd1a7f

Browse files
committed
Updating documentation for max_concurrent_trials
1 parent 7ffc189 commit fcd1a7f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/machine-learning/how-to-auto-train-image-models.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,8 @@ You can control the resources spent on your AutoML Image training job by specify
334334

335335
Parameter | Detail
336336
-----|----
337-
`max_trials` | Parameter for maximum number of configurations to sweep. Must be an integer between 1 and 1000. When exploring just the default hyperparameters for a given model algorithm, set this parameter to 1. default value is 1.
338-
`max_concurrent_trials`| Maximum number of runs that can run concurrently. If not specified, all runs launch in parallel. If specified, must be an integer between 1 and 100. <br><br> **NOTE:** The number of concurrent runs is gated on the resources available in the specified compute target. Ensure that the compute target has the available resources for the desired concurrency. default value is 1.
337+
`max_trials` | Parameter for maximum number of configurations to sweep. Must be an integer between 1 and 1000. When exploring just the default hyperparameters for a given model algorithm, set this parameter to 1. Default value is 1.
338+
`max_concurrent_trials`| Maximum number of runs out of `max_trials` that can run concurrently. If specified, must be an integer between 1 and 100. Default value is 1. <br><br> **NOTE:** <li> The number of concurrent runs is gated on the resources available in the specified compute target. Ensure that the compute target has the available resources for the desired concurrency. <li> If user assigns `max_concurrent_trials` a value greater than that of `max_trials`, then `max_concurrent_trials` would be set to a value same as that of `max_trials`. For example, user sets `max_concurrent_trials=4`, `max_trials=2`; values would be updated `max_concurrent_trials=2`, `max_trials=2`.
339339
`timeout_minutes`| The amount of time in minutes before the experiment terminates. If none specified, default experiment timeout_minutes is seven days (maximum 60 days)
340340

341341
# [Azure CLI](#tab/cli)

articles/machine-learning/how-to-auto-train-nlp-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ You can control the resources spent on your hyperparameter sweep by specifying t
506506
Parameter | Detail
507507
-----|----
508508
`max_trials` | Required parameter for maximum number of configurations to sweep. Must be an integer between 1 and 1000. When exploring just the default hyperparameters for a given model algorithm, set this parameter to 1.
509-
`max_concurrent_trials`| Maximum number of runs that can run concurrently. If not specified, all runs launch in parallel. If specified, must be an integer between 1 and 100. <br><br> **NOTE:** The number of concurrent runs is gated on the resources available in the specified compute target. Ensure that the compute target has the available resources for the desired concurrency.
509+
`max_concurrent_trials`| Maximum number of runs out of `max_trials` that can run concurrently. If specified, must be an integer between 1 and 100. Default value is 1. <br><br> **NOTE:** <li> The number of concurrent runs is gated on the resources available in the specified compute target. Ensure that the compute target has the available resources for the desired concurrency. <li> If user assigns `max_concurrent_trials` a value greater than that of `max_trials`, then `max_concurrent_trials` would be set to a value same as that of `max_trials`. For example, user sets `max_concurrent_trials=4`, `max_trials=2`; values would be updated `max_concurrent_trials=2`, `max_trials=2`.
510510

511511
You can configure all the sweep related parameters as shown in the example below.
512512

0 commit comments

Comments
 (0)