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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-machinelearning/types.rb

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ml_model_idString

The ID assigned to the ‘MLModel` during creation.

Returns:

  • (String)


3661
3662
3663
3664
3665
3666
3667
# File 'lib/aws-sdk-machinelearning/types.rb', line 3661

class UpdateMLModelInput < Struct.new(
  :ml_model_id,
  :ml_model_name,
  :score_threshold)
  SENSITIVE = []
  include Aws::Structure
end

#ml_model_nameString

A user-supplied name or description of the ‘MLModel`.

Returns:

  • (String)


3661
3662
3663
3664
3665
3666
3667
# File 'lib/aws-sdk-machinelearning/types.rb', line 3661

class UpdateMLModelInput < Struct.new(
  :ml_model_id,
  :ml_model_name,
  :score_threshold)
  SENSITIVE = []
  include Aws::Structure
end

#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)


3661
3662
3663
3664
3665
3666
3667
# File 'lib/aws-sdk-machinelearning/types.rb', line 3661

class UpdateMLModelInput < Struct.new(
  :ml_model_id,
  :ml_model_name,
  :score_threshold)
  SENSITIVE = []
  include Aws::Structure
end