Interface TFITrainingMetricsValue.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<TFITrainingMetricsValue.Builder,
,TFITrainingMetricsValue> SdkBuilder<TFITrainingMetricsValue.Builder,
,TFITrainingMetricsValue> SdkPojo
- Enclosing class:
TFITrainingMetricsValue
@Mutable
@NotThreadSafe
public static interface TFITrainingMetricsValue.Builder
extends SdkPojo, CopyableBuilder<TFITrainingMetricsValue.Builder,TFITrainingMetricsValue>
-
Method Summary
Modifier and TypeMethodDescriptionmetricDataPoints
(Collection<TFIMetricDataPoint> metricDataPoints) The model's performance metrics data points.metricDataPoints
(Consumer<TFIMetricDataPoint.Builder>... metricDataPoints) The model's performance metrics data points.metricDataPoints
(TFIMetricDataPoint... metricDataPoints) The model's performance metrics data points.default TFITrainingMetricsValue.Builder
modelPerformance
(Consumer<TFIModelPerformance.Builder> modelPerformance) The model performance score.modelPerformance
(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, sdkFieldNameToField, sdkFields
-
Method Details
-
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
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.Builder
avoiding the need to create one manually viaTFIMetricDataPoint.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tometricDataPoints(List<TFIMetricDataPoint>)
.- 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:
-
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.Builder
avoiding the need to create one manually viaTFIModelPerformance.builder()
.When the
Consumer
completes,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:
-