Class: Aws::MachineLearning::Types::Prediction

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

Overview

The output from a ‘Predict` operation:

  • ‘Details` - Contains the following attributes: `DetailsAttributes.PREDICTIVE_MODEL_TYPE - REGRESSION | BINARY | MULTICLASS` `DetailsAttributes.ALGORITHM - SGD`

  • ‘PredictedLabel` - Present for either a `BINARY` or `MULTICLASS` `MLModel` request.

  • ‘PredictedScores` - Contains the raw classification score corresponding to each label.

  • ‘PredictedValue` - Present for a `REGRESSION` `MLModel` request.

Instance Attribute Summary collapse

Instance Attribute Details

#detailsHash<String,String>

Provides any additional details regarding the prediction.

Returns:

  • (Hash<String,String>)


2826
2827
2828
2829
2830
2831
2832
# File 'lib/aws-sdk-machinelearning/types.rb', line 2826

class Prediction < Struct.new(
  :predicted_label,
  :predicted_value,
  :predicted_scores,
  :details)
  include Aws::Structure
end

#predicted_labelString

The prediction label for either a ‘BINARY` or `MULTICLASS` `MLModel`.

Returns:

  • (String)


2826
2827
2828
2829
2830
2831
2832
# File 'lib/aws-sdk-machinelearning/types.rb', line 2826

class Prediction < Struct.new(
  :predicted_label,
  :predicted_value,
  :predicted_scores,
  :details)
  include Aws::Structure
end

#predicted_scoresHash<String,Float>

Provides the raw classification score corresponding to each label.

Returns:

  • (Hash<String,Float>)


2826
2827
2828
2829
2830
2831
2832
# File 'lib/aws-sdk-machinelearning/types.rb', line 2826

class Prediction < Struct.new(
  :predicted_label,
  :predicted_value,
  :predicted_scores,
  :details)
  include Aws::Structure
end

#predicted_valueFloat

The prediction value for ‘REGRESSION` `MLModel`.

Returns:

  • (Float)


2826
2827
2828
2829
2830
2831
2832
# File 'lib/aws-sdk-machinelearning/types.rb', line 2826

class Prediction < Struct.new(
  :predicted_label,
  :predicted_value,
  :predicted_scores,
  :details)
  include Aws::Structure
end