Class: Aws::MachineLearning::Types::PredictOutput

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

#predictionTypes::Prediction

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.

Returns:



2685
2686
2687
2688
2689
# File 'lib/aws-sdk-machinelearning/types.rb', line 2685

class PredictOutput < Struct.new(
  :prediction)
  SENSITIVE = []
  include Aws::Structure
end