Skip to content

Update Ml Model

machinelearning_update_ml_model R Documentation

Updates the MLModelName and the ScoreThreshold of an MLModel

Description

Updates the MLModelName and the ScoreThreshold of an MLModel.

You can use the get_ml_model operation to view the contents of the updated data element.

Usage

machinelearning_update_ml_model(MLModelId, MLModelName, ScoreThreshold)

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.

Value

A list with the following syntax:

list(
  MLModelId = "string"
)

Request syntax

svc$update_ml_model(
  MLModelId = "string",
  MLModelName = "string",
  ScoreThreshold = 123.0
)