Interface ObjectiveStatusCounters.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ObjectiveStatusCounters.Builder,ObjectiveStatusCounters>
,SdkBuilder<ObjectiveStatusCounters.Builder,ObjectiveStatusCounters>
,SdkPojo
- Enclosing class:
- ObjectiveStatusCounters
public static interface ObjectiveStatusCounters.Builder extends SdkPojo, CopyableBuilder<ObjectiveStatusCounters.Builder,ObjectiveStatusCounters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectiveStatusCounters.Builder
failed(Integer failed)
The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process.ObjectiveStatusCounters.Builder
pending(Integer pending)
The number of training jobs that are in progress and pending evaluation of their final objective metric.ObjectiveStatusCounters.Builder
succeeded(Integer succeeded)
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.-
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
-
succeeded
ObjectiveStatusCounters.Builder succeeded(Integer succeeded)
The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.
- Parameters:
succeeded
- The number of training jobs whose final objective metric was evaluated by the hyperparameter tuning job and used in the hyperparameter tuning process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pending
ObjectiveStatusCounters.Builder pending(Integer pending)
The number of training jobs that are in progress and pending evaluation of their final objective metric.
- Parameters:
pending
- The number of training jobs that are in progress and pending evaluation of their final objective metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failed
ObjectiveStatusCounters.Builder failed(Integer failed)
The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.
- Parameters:
failed
- The number of training jobs whose final objective metric was not evaluated and used in the hyperparameter tuning process. This typically occurs when the training job failed or did not emit an objective metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-