Interface TFITrainingMetricsValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TFITrainingMetricsValue.Builder,TFITrainingMetricsValue>,SdkBuilder<TFITrainingMetricsValue.Builder,TFITrainingMetricsValue>,SdkPojo
- Enclosing class:
- TFITrainingMetricsValue
public static interface TFITrainingMetricsValue.Builder extends SdkPojo, CopyableBuilder<TFITrainingMetricsValue.Builder,TFITrainingMetricsValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TFITrainingMetricsValue.BuildermetricDataPoints(Collection<TFIMetricDataPoint> metricDataPoints)The model's performance metrics data points.TFITrainingMetricsValue.BuildermetricDataPoints(Consumer<TFIMetricDataPoint.Builder>... metricDataPoints)The model's performance metrics data points.TFITrainingMetricsValue.BuildermetricDataPoints(TFIMetricDataPoint... metricDataPoints)The model's performance metrics data points.default TFITrainingMetricsValue.BuildermodelPerformance(Consumer<TFIModelPerformance.Builder> modelPerformance)The model performance score.TFITrainingMetricsValue.BuildermodelPerformance(TFIModelPerformance modelPerformance)The model performance score.-
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, sdkFields
-
-
-
-
Method Detail
-
metricDataPoints
TFITrainingMetricsValue.Builder metricDataPoints(Collection<TFIMetricDataPoint> metricDataPoints)
The model's performance metrics data points.
- Parameters:
metricDataPoints- The model's performance metrics data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricDataPoints
TFITrainingMetricsValue.Builder metricDataPoints(TFIMetricDataPoint... metricDataPoints)
The model's performance metrics data points.
- Parameters:
metricDataPoints- The model's performance metrics data points.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
metricDataPoints
TFITrainingMetricsValue.Builder metricDataPoints(Consumer<TFIMetricDataPoint.Builder>... metricDataPoints)
The model's performance metrics data points.
This is a convenience method that creates an instance of theTFIMetricDataPoint.Builderavoiding the need to create one manually viaTFIMetricDataPoint.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#metricDataPoints(List.) - Parameters:
metricDataPoints- a consumer that will call methods onTFIMetricDataPoint.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#metricDataPoints(java.util.Collection)
-
modelPerformance
TFITrainingMetricsValue.Builder modelPerformance(TFIModelPerformance modelPerformance)
The model performance score.
- Parameters:
modelPerformance- The model performance score.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelPerformance
default TFITrainingMetricsValue.Builder modelPerformance(Consumer<TFIModelPerformance.Builder> modelPerformance)
The model performance score.
This is a convenience method that creates an instance of theTFIModelPerformance.Builderavoiding the need to create one manually viaTFIModelPerformance.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomodelPerformance(TFIModelPerformance).- Parameters:
modelPerformance- a consumer that will call methods onTFIModelPerformance.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
modelPerformance(TFIModelPerformance)
-
-