Updates the MLModelName
and the ScoreThreshold
of an MLModel
.
See https://www.paws-r-sdk.com/docs/machinelearning_update_ml_model/ for full documentation.
machinelearning_update_ml_model(
MLModelId,
MLModelName = NULL,
ScoreThreshold = NULL
)
[required] The ID assigned to the MLModel
during creation.
A user-supplied name or description of the MLModel
.
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
.