Class: Aws::MachineLearning::Types::PredictOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::PredictOutput
- Defined in:
- gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb
Constant Summary collapse
- SENSITIVE =
[]
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 aBINARY
orMULTICLASS
MLModel
request.PredictedScores
- Contains the raw classification score corresponding to each label.PredictedValue
- Present for aREGRESSION
MLModel
request.
2683 2684 2685 2686 2687 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 2683 class PredictOutput < Struct.new( :prediction) SENSITIVE = [] include Aws::Structure end |