HyperDriveRunConfig Class
Configuration that defines a HyperDrive run.
Configuration includes information about parameter space sampling, termination policy, primary metric, estimator and the compute target to execute the experiment runs on.
Initialize the HyperDriveConfig.
- Inheritance
-
azureml.train.hyperdrive.runconfig.HyperDriveConfigHyperDriveRunConfig
Constructor
HyperDriveRunConfig(estimator, hyperparameter_sampling, primary_metric_name, primary_metric_goal, max_total_runs, max_concurrent_runs=None, max_duration_minutes=10080, policy=None)
Parameters
Name | Description |
---|---|
hyperparameter_sampling
Required
|
The hyperparameter sampling space. |
primary_metric_name
Required
|
The name of the primary metric reported by the experiment runs. |
primary_metric_goal
Required
|
One of maximize / minimize. It determines if the primary metric has to be minimized/maximized in the experiment runs' evaluation. |
max_total_runs
Required
|
Maximum number of runs. This is the upper bound; there may be fewer runs when the sample space is smaller than this value. |
max_concurrent_runs
|
Maximum number of runs to run concurrently. If None, all runs are launched in parallel. Default value: None
|
max_duration_minutes
|
Maximum duration of the hyperdrive run. Once this time is exceeded, the run is cancelled. The maximum duration of the child runs can be set with the ScriptRunConfig's "max_run_duration_seconds" argument. Default value: 10080
|
policy
|
The early termination policy to use. If None - the default, no early termination policy will be used. The MedianTerminationPolicy with delay_evaluation of 5 is a good termination policy to start with. These are conservative settings, that can provide 25%-35% savings with no loss on primary metric (based on our evaluation data). Default value: None
|
estimator
Required
|
An estimator that will be called with sampled hyper parameters. |
run_config
Required
|
An object for setting up configuration for script/notebook runs.
Specify only one of the following parameters: |
resume_from
Required
|
A hyperdrive run or a list of hyperdrive runs that will be inherited as data points to warm start the new run. |
resume_child_runs
Required
|
A hyperdrive child run or a list of hyperdrive child runs that will be resumed as new child runs of the new hyperdrive run. |
pipeline
Required
|
A pipeline object for setting up configuration for pipeline runs.
The pipeline object will be called with the sample hyperparameters to submit pipeline runs.
Specify only one of the following parameters: |
hyperparameter_sampling
Required
|
The hyperparameter space sampling definition. |
primary_metric_name
Required
|
The name of the primary metric reported by the experiment runs. |
primary_metric_goal
Required
|
Either PrimaryMetricGoal.MINIMIZE or PrimaryMetricGoal.MAXIMIZE. This parameter determines if the primary metric is to be minimized or maximized when evaluating runs. |
max_total_runs
Required
|
The maximum total number of runs to create. This is the upper bound; there may be fewer runs when the sample space is smaller than this value. |
max_concurrent_runs
Required
|
The maximum number of runs to execute concurrently. If None, all runs are launched in parallel. |
max_duration_minutes
Required
|
The maximum duration of the HyperDrive run. Once this time is exceeded, any runs still executing are cancelled. |
policy
Required
|
The early termination policy to use. If None - the default, no early termination policy will be used. The <xref:azureml.train.hyperdrive.MedianTerminationPolicy> with |
estimator
Required
|
An estimator that will be called with sampled hyper parameters.
Specify only one of the following parameters: |
run_config
Required
|
An object for setting up configuration for script/notebook runs.
Specify only one of the following parameters: |
resume_from
Required
|
A hyperdrive run or a list of hyperdrive runs that will be inherited as data points to warm start the new run. |
resume_child_runs
Required
|
A hyperdrive child run or a list of hyperdrive child runs that will be resumed as new child runs of the new hyperdrive run. |
pipeline
Required
|
A pipeline object for setting up configuration for pipeline runs.
The pipeline object will be called with the sample hyperparameters to submit pipeline runs.
Specify only one of the following parameters: |
custom_run_id
Required
|
Custom run id provided by user |