Interface EvaluationMetric.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EvaluationMetric.Builder,EvaluationMetric>
,SdkBuilder<EvaluationMetric.Builder,EvaluationMetric>
,SdkPojo
- Enclosing class:
- EvaluationMetric
public static interface EvaluationMetric.Builder extends SdkPojo, CopyableBuilder<EvaluationMetric.Builder,EvaluationMetric>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationMetric.Builder
f1Score(Float f1Score)
The F1 score for an adapter version.EvaluationMetric.Builder
precision(Float precision)
The Precision score for an adapter version.EvaluationMetric.Builder
recall(Float recall)
The Recall score for an adapter version.-
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
-
f1Score
EvaluationMetric.Builder f1Score(Float f1Score)
The F1 score for an adapter version.
- Parameters:
f1Score
- The F1 score for an adapter version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
precision
EvaluationMetric.Builder precision(Float precision)
The Precision score for an adapter version.
- Parameters:
precision
- The Precision score for an adapter version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recall
EvaluationMetric.Builder recall(Float recall)
The Recall score for an adapter version.
- Parameters:
recall
- The Recall score for an adapter version.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-