Interface HPOObjective.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<HPOObjective.Builder,HPOObjective>,SdkBuilder<HPOObjective.Builder,HPOObjective>,SdkPojo
- Enclosing class:
- HPOObjective
public static interface HPOObjective.Builder extends SdkPojo, CopyableBuilder<HPOObjective.Builder,HPOObjective>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HPOObjective.BuildermetricName(String metricName)The name of the metric.HPOObjective.BuildermetricRegex(String metricRegex)A regular expression for finding the metric in the training job logs.HPOObjective.Buildertype(String type)The type of the metric.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
type
HPOObjective.Builder type(String type)
The type of the metric. Valid values are
MaximizeandMinimize.- Parameters:
type- The type of the metric. Valid values areMaximizeandMinimize.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricName
HPOObjective.Builder metricName(String metricName)
The name of the metric.
- Parameters:
metricName- The name of the metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricRegex
HPOObjective.Builder metricRegex(String metricRegex)
A regular expression for finding the metric in the training job logs.
- Parameters:
metricRegex- A regular expression for finding the metric in the training job logs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-