libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

Description

 
Synopsis

Documentation

data HyperParameterTuningJobWarmStartConfig Source #

Specifies the configuration for a hyperparameter tuning job that uses one or more previous hyperparameter tuning jobs as a starting point. The results of previous tuning jobs are used to inform which combinations of hyperparameters to search over in the new tuning job.

All training jobs launched by the new hyperparameter tuning job are evaluated by using the objective metric, and the training job that performs the best is compared to the best training jobs from the parent tuning jobs. From these, the training job that performs the best as measured by the objective metric is returned as the overall best training job.

All training jobs launched by parent hyperparameter tuning jobs and the new hyperparameter tuning jobs count against the limit of training jobs for the tuning job.

See: newHyperParameterTuningJobWarmStartConfig smart constructor.

Constructors

HyperParameterTuningJobWarmStartConfig' 

Fields

  • parentHyperParameterTuningJobs :: NonEmpty ParentHyperParameterTuningJob

    An array of hyperparameter tuning jobs that are used as the starting point for the new hyperparameter tuning job. For more information about warm starting a hyperparameter tuning job, see Using a Previous Hyperparameter Tuning Job as a Starting Point.

    Hyperparameter tuning jobs created before October 1, 2018 cannot be used as parent jobs for warm start tuning jobs.

  • warmStartType :: HyperParameterTuningJobWarmStartType

    Specifies one of the following:

    IDENTICAL_DATA_AND_ALGORITHM
    The new hyperparameter tuning job uses the same input data and training image as the parent tuning jobs. You can change the hyperparameter ranges to search and the maximum number of training jobs that the hyperparameter tuning job launches. You cannot use a new version of the training algorithm, unless the changes in the new version do not affect the algorithm itself. For example, changes that improve logging or adding support for a different data format are allowed. You can also change hyperparameters from tunable to static, and from static to tunable, but the total number of static plus tunable hyperparameters must remain the same as it is in all parent jobs. The objective metric for the new tuning job must be the same as for all parent jobs.
    TRANSFER_LEARNING
    The new hyperparameter tuning job can include input data, hyperparameter ranges, maximum number of concurrent training jobs, and maximum number of training jobs that are different than those of its parent hyperparameter tuning jobs. The training image can also be a different version from the version used in the parent hyperparameter tuning job. You can also change hyperparameters from tunable to static, and from static to tunable, but the total number of static plus tunable hyperparameters must remain the same as it is in all parent jobs. The objective metric for the new tuning job must be the same as for all parent jobs.

Instances

Instances details
Eq HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

Read HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

Show HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

Generic HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

NFData HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

Hashable HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

ToJSON HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

FromJSON HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

type Rep HyperParameterTuningJobWarmStartConfig Source # 
Instance details

Defined in Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig

type Rep HyperParameterTuningJobWarmStartConfig = D1 ('MetaData "HyperParameterTuningJobWarmStartConfig" "Amazonka.SageMaker.Types.HyperParameterTuningJobWarmStartConfig" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "HyperParameterTuningJobWarmStartConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "parentHyperParameterTuningJobs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty ParentHyperParameterTuningJob)) :*: S1 ('MetaSel ('Just "warmStartType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 HyperParameterTuningJobWarmStartType)))

newHyperParameterTuningJobWarmStartConfig Source #

Create a value of HyperParameterTuningJobWarmStartConfig with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:parentHyperParameterTuningJobs:HyperParameterTuningJobWarmStartConfig', hyperParameterTuningJobWarmStartConfig_parentHyperParameterTuningJobs - An array of hyperparameter tuning jobs that are used as the starting point for the new hyperparameter tuning job. For more information about warm starting a hyperparameter tuning job, see Using a Previous Hyperparameter Tuning Job as a Starting Point.

Hyperparameter tuning jobs created before October 1, 2018 cannot be used as parent jobs for warm start tuning jobs.

$sel:warmStartType:HyperParameterTuningJobWarmStartConfig', hyperParameterTuningJobWarmStartConfig_warmStartType - Specifies one of the following:

IDENTICAL_DATA_AND_ALGORITHM
The new hyperparameter tuning job uses the same input data and training image as the parent tuning jobs. You can change the hyperparameter ranges to search and the maximum number of training jobs that the hyperparameter tuning job launches. You cannot use a new version of the training algorithm, unless the changes in the new version do not affect the algorithm itself. For example, changes that improve logging or adding support for a different data format are allowed. You can also change hyperparameters from tunable to static, and from static to tunable, but the total number of static plus tunable hyperparameters must remain the same as it is in all parent jobs. The objective metric for the new tuning job must be the same as for all parent jobs.
TRANSFER_LEARNING
The new hyperparameter tuning job can include input data, hyperparameter ranges, maximum number of concurrent training jobs, and maximum number of training jobs that are different than those of its parent hyperparameter tuning jobs. The training image can also be a different version from the version used in the parent hyperparameter tuning job. You can also change hyperparameters from tunable to static, and from static to tunable, but the total number of static plus tunable hyperparameters must remain the same as it is in all parent jobs. The objective metric for the new tuning job must be the same as for all parent jobs.

hyperParameterTuningJobWarmStartConfig_parentHyperParameterTuningJobs :: Lens' HyperParameterTuningJobWarmStartConfig (NonEmpty ParentHyperParameterTuningJob) Source #

An array of hyperparameter tuning jobs that are used as the starting point for the new hyperparameter tuning job. For more information about warm starting a hyperparameter tuning job, see Using a Previous Hyperparameter Tuning Job as a Starting Point.

Hyperparameter tuning jobs created before October 1, 2018 cannot be used as parent jobs for warm start tuning jobs.

hyperParameterTuningJobWarmStartConfig_warmStartType :: Lens' HyperParameterTuningJobWarmStartConfig HyperParameterTuningJobWarmStartType Source #

Specifies one of the following:

IDENTICAL_DATA_AND_ALGORITHM
The new hyperparameter tuning job uses the same input data and training image as the parent tuning jobs. You can change the hyperparameter ranges to search and the maximum number of training jobs that the hyperparameter tuning job launches. You cannot use a new version of the training algorithm, unless the changes in the new version do not affect the algorithm itself. For example, changes that improve logging or adding support for a different data format are allowed. You can also change hyperparameters from tunable to static, and from static to tunable, but the total number of static plus tunable hyperparameters must remain the same as it is in all parent jobs. The objective metric for the new tuning job must be the same as for all parent jobs.
TRANSFER_LEARNING
The new hyperparameter tuning job can include input data, hyperparameter ranges, maximum number of concurrent training jobs, and maximum number of training jobs that are different than those of its parent hyperparameter tuning jobs. The training image can also be a different version from the version used in the parent hyperparameter tuning job. You can also change hyperparameters from tunable to static, and from static to tunable, but the total number of static plus tunable hyperparameters must remain the same as it is in all parent jobs. The objective metric for the new tuning job must be the same as for all parent jobs.