Learn R Programming

paws.machine.learning (version 0.9.0)

machinelearning_update_ml_model: Updates the MLModelName and the ScoreThreshold of an MLModel

Description

Updates the MLModelName and the ScoreThreshold of an MLModel.

See https://www.paws-r-sdk.com/docs/machinelearning_update_ml_model/ for full documentation.

Usage

machinelearning_update_ml_model(
  MLModelId,
  MLModelName = NULL,
  ScoreThreshold = NULL
)

Arguments

MLModelId

[required] The ID assigned to the MLModel during creation.

MLModelName

A user-supplied name or description of the MLModel.

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.