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