You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MachineLearning::Types::UpdateMLModelInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateMLModelInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  ml_model_id: "EntityId", # required
  ml_model_name: "EntityName",
  score_threshold: 1.0,
}

Instance Attribute Summary collapse

Instance Attribute Details

#ml_model_idString

The ID assigned to the MLModel during creation.

Returns:

  • (String)

    The ID assigned to the MLModel during creation.

#ml_model_nameString

A user-supplied name or description of the MLModel.

Returns:

  • (String)

    A user-supplied name or description of the MLModel.

#score_thresholdFloat

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.

Returns:

  • (Float)

    The ScoreThreshold used in binary classification MLModel that marks the boundary between a positive prediction and a negative prediction.