Class: Aws::MachineLearning::Types::PredictOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::PredictOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
Instance Attribute Summary collapse
-
#prediction ⇒ Types::Prediction
The output from a ‘Predict` operation:.
Instance Attribute Details
#prediction ⇒ Types::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.
2790 2791 2792 2793 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 2790 class PredictOutput < Struct.new( :prediction) include Aws::Structure end |