Class HyperbandStrategyConfig
- java.lang.Object
-
- software.amazon.awssdk.services.sagemaker.model.HyperbandStrategyConfig
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<HyperbandStrategyConfig.Builder,HyperbandStrategyConfig>
@Generated("software.amazon.awssdk:codegen") public final class HyperbandStrategyConfig extends Object implements SdkPojo, Serializable, ToCopyableBuilder<HyperbandStrategyConfig.Builder,HyperbandStrategyConfig>
The configuration for
Hyperband, a multi-fidelity based hyperparameter tuning strategy.Hyperbanduses the final and intermediate results of a training job to dynamically allocate resources to utilized hyperparameter configurations while automatically stopping under-performing configurations. This parameter should be provided only ifHyperbandis selected as theStrategyConfigunder theHyperParameterTuningJobConfigAPI.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceHyperbandStrategyConfig.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HyperbandStrategyConfig.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()IntegermaxResource()The maximum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job.IntegerminResource()The minimum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job.Map<String,SdkField<?>>sdkFieldNameToField()List<SdkField<?>>sdkFields()static Class<? extends HyperbandStrategyConfig.Builder>serializableBuilderClass()HyperbandStrategyConfig.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
minResource
public final Integer minResource()
The minimum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job. If the value for
MinResourcehas not been reached, the training job is not stopped byHyperband.- Returns:
- The minimum number of resources (such as epochs) that can be used by a training job launched by a
hyperparameter tuning job. If the value for
MinResourcehas not been reached, the training job is not stopped byHyperband.
-
maxResource
public final Integer maxResource()
The maximum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job. Once a job reaches the
MaxResourcevalue, it is stopped. If a value forMaxResourceis not provided, andHyperbandis selected as the hyperparameter tuning strategy,HyperbandTrainingattempts to inferMaxResourcefrom the following keys (if present) in StaticsHyperParameters:-
epochs -
numepochs -
n-epochs -
n_epochs -
num_epochs
If
HyperbandStrategyConfigis unable to infer a value forMaxResource, it generates a validation error. The maximum value is 20,000 epochs. All metrics that correspond to an objective metric are used to derive early stopping decisions. For distributed training jobs, ensure that duplicate metrics are not printed in the logs across the individual nodes in a training job. If multiple nodes are publishing duplicate or incorrect metrics, training jobs may make an incorrect stopping decision and stop the job prematurely.- Returns:
- The maximum number of resources (such as epochs) that can be used by a training job launched by a
hyperparameter tuning job. Once a job reaches the
MaxResourcevalue, it is stopped. If a value forMaxResourceis not provided, andHyperbandis selected as the hyperparameter tuning strategy,HyperbandTrainingattempts to inferMaxResourcefrom the following keys (if present) in StaticsHyperParameters:-
epochs -
numepochs -
n-epochs -
n_epochs -
num_epochs
If
HyperbandStrategyConfigis unable to infer a value forMaxResource, it generates a validation error. The maximum value is 20,000 epochs. All metrics that correspond to an objective metric are used to derive early stopping decisions. For distributed training jobs, ensure that duplicate metrics are not printed in the logs across the individual nodes in a training job. If multiple nodes are publishing duplicate or incorrect metrics, training jobs may make an incorrect stopping decision and stop the job prematurely. -
-
-
toBuilder
public HyperbandStrategyConfig.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<HyperbandStrategyConfig.Builder,HyperbandStrategyConfig>
-
builder
public static HyperbandStrategyConfig.Builder builder()
-
serializableBuilderClass
public static Class<? extends HyperbandStrategyConfig.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToFieldin interfaceSdkPojo
-
-