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/machine-learning/v1/how-to-tune-hyperparameters.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ author: ssalgadodev
7
7
services: machine-learning
8
8
ms.service: machine-learning
9
9
ms.subservice: core
10
-
ms.date: 05/02/2022
10
+
ms.date: 05/30/2024
11
11
ms.topic: how-to
12
12
ms.custom: UpdateFrequency5
13
13
---
@@ -202,7 +202,7 @@ Azure Machine Learning supports the following early termination policies:
202
202
203
203
### Bandit policy
204
204
205
-
[Bandit policy](/python/api/azureml-train-core/azureml.train.hyperdrive.banditpolicy#definition) is based on slack factor/slack amount and evaluation interval. Bandit ends runs when the primary metric isn't within the specified slack factor/slack amount of the most successful run.
205
+
[Bandit policy](/python/api/azureml-train-core/azureml.train.hyperdrive.banditpolicy#definition) is based on slack factor/slack amount and evaluation interval. Bandit ends the runs when the primary metric isn't within the specified slack factor/slack amount of the most successful run.
206
206
207
207
> [!NOTE]
208
208
> Bayesian sampling does not support early termination. When using Bayesian sampling, set `early_termination_policy = None`.
@@ -261,7 +261,7 @@ In this example, the early termination policy is applied at every interval start
261
261
262
262
### No termination policy (default)
263
263
264
-
If no policy is specified, the hyperparameter tuning service will let all training runs execute to completion.
264
+
If no policy is specified, the hyperparameter tuning service lets all training runs execute to completion.
265
265
266
266
```Python
267
267
policy=None
@@ -305,7 +305,7 @@ To [configure your hyperparameter tuning](/python/api/azureml-train-core/azureml
305
305
* Resource allocation settings
306
306
* ScriptRunConfig `script_run_config`
307
307
308
-
The ScriptRunConfig is the training script that will run with the sampled hyperparameters. It defines the resources per job (single or multi-node), and the compute target to use.
308
+
The ScriptRunConfig is the training script that runs with the sampled hyperparameters. It defines the resources per job (single or multi-node), and the compute target to use.
309
309
310
310
> [!NOTE]
311
311
>The compute target used in `script_run_config` must have enough resources to satisfy your concurrency level. For more information on ScriptRunConfig, see [Configure training runs](how-to-set-up-training-targets.md).
@@ -432,15 +432,15 @@ You can visualize all of your hyperparameter tuning runs in the [Azure Machine L
-**Parallel Coordinates Chart**: This visualization shows the correlation between primary metric performance and individual hyperparameter values. The chart is interactive via movement of axes (click and drag by the axis label), and by highlighting values across a single axis (click and drag vertically along a single axis to highlight a range of desired values). The parallel coordinates chart includes an axis on the right most portion of the chart that plots the best metric value corresponding to the hyperparameters set for that run instance. This axis is provided in order to project the chart gradient legend onto the data in a more readable fashion.
435
+
-**Parallel Coordinates Chart**: This visualization shows the correlation between primary metric performance and individual hyperparameter values. The chart is interactive via movement of axes (select and drag by the axis label), and by highlighting values across a single axis (select and drag vertically along a single axis to highlight a range of desired values). The parallel coordinates chart includes an axis on the rightmost portion of the chart that plots the best metric value corresponding to the hyperparameters set for that run instance. This axis is provided in order to project the chart gradient legend onto the data in a more readable fashion.
-**2-Dimensional Scatter Chart**: This visualization shows the correlation between any two individual hyperparameters along with their associated primary metric value.
-**3-Dimensional Scatter Chart**: This visualization is the same as 2D but allows for three hyperparameter dimensions of correlation with the primary metric value. You can also click and drag to reorient the chart to view different correlations in 3D space.
443
+
-**3-Dimensional Scatter Chart**: This visualization is the same as 2D but allows for three hyperparameter dimensions of correlation with the primary metric value. You can also select and drag to reorient the chart to view different correlations in 3D space.
0 commit comments