Interface TFIModelPerformance.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TFIModelPerformance.Builder,TFIModelPerformance>,SdkBuilder<TFIModelPerformance.Builder,TFIModelPerformance>,SdkPojo
- Enclosing class:
- TFIModelPerformance
public static interface TFIModelPerformance.Builder extends SdkPojo, CopyableBuilder<TFIModelPerformance.Builder,TFIModelPerformance>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TFIModelPerformance.Builderauc(Float auc)The area under the curve (auc).default TFIModelPerformance.BuilderuncertaintyRange(Consumer<UncertaintyRange.Builder> uncertaintyRange)Indicates the range of area under curve (auc) expected from the TFI model.TFIModelPerformance.BuilderuncertaintyRange(UncertaintyRange uncertaintyRange)Indicates the range of area under curve (auc) expected from the TFI model.-
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
-
auc
TFIModelPerformance.Builder auc(Float auc)
The area under the curve (auc). This summarizes the total positive rate (tpr) and false positive rate (FPR) across all possible model score thresholds.
- Parameters:
auc- The area under the curve (auc). This summarizes the total positive rate (tpr) and false positive rate (FPR) across all possible model score thresholds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uncertaintyRange
TFIModelPerformance.Builder uncertaintyRange(UncertaintyRange uncertaintyRange)
Indicates the range of area under curve (auc) expected from the TFI model. A range greater than 0.1 indicates higher model uncertainity.
- Parameters:
uncertaintyRange- Indicates the range of area under curve (auc) expected from the TFI model. A range greater than 0.1 indicates higher model uncertainity.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uncertaintyRange
default TFIModelPerformance.Builder uncertaintyRange(Consumer<UncertaintyRange.Builder> uncertaintyRange)
Indicates the range of area under curve (auc) expected from the TFI model. A range greater than 0.1 indicates higher model uncertainity.
This is a convenience method that creates an instance of theUncertaintyRange.Builderavoiding the need to create one manually viaUncertaintyRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed touncertaintyRange(UncertaintyRange).- Parameters:
uncertaintyRange- a consumer that will call methods onUncertaintyRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
uncertaintyRange(UncertaintyRange)
-
-