CopyableBuilder<UpdateMLModelRequest.Builder,UpdateMLModelRequest>
, SdkBuilder<UpdateMLModelRequest.Builder,UpdateMLModelRequest>
public static interface UpdateMLModelRequest.Builder extends CopyableBuilder<UpdateMLModelRequest.Builder,UpdateMLModelRequest>
Modifier and Type | Method | Description |
---|---|---|
UpdateMLModelRequest.Builder |
mlModelId(String mlModelId) |
The ID assigned to the
MLModel during creation. |
UpdateMLModelRequest.Builder |
mlModelName(String mlModelName) |
A user-supplied name or description of the
MLModel . |
UpdateMLModelRequest.Builder |
scoreThreshold(Float scoreThreshold) |
The
ScoreThreshold used in binary classification MLModel that marks the boundary
between a positive prediction and a negative prediction. |
copy
apply, build
UpdateMLModelRequest.Builder mlModelId(String mlModelId)
The ID assigned to the MLModel
during creation.
mlModelId
- The ID assigned to the MLModel
during creation.UpdateMLModelRequest.Builder mlModelName(String mlModelName)
A user-supplied name or description of the MLModel
.
mlModelName
- A user-supplied name or description of the MLModel
.UpdateMLModelRequest.Builder scoreThreshold(Float scoreThreshold)
The ScoreThreshold
used in binary classification MLModel
that marks the boundary
between a positive prediction and a negative prediction.
Output values greater than or equal to the ScoreThreshold
receive a positive result from the
MLModel
, such as true
. Output values less than the ScoreThreshold
receive a negative response from the MLModel
, such as false
.
scoreThreshold
- The ScoreThreshold
used in binary classification MLModel
that marks the
boundary between a positive prediction and a negative prediction.
Output values greater than or equal to the ScoreThreshold
receive a positive result from
the MLModel
, such as true
. Output values less than the
ScoreThreshold
receive a negative response from the MLModel
, such as
false
.
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.