Values.PredictionSourceThe 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.
type nonrec t = {predictedLabel : Label.t option;The prediction label for either a BINARY or MULTICLASS MLModel.
*)predictedValue : FloatLabel.t option;The prediction value for REGRESSION MLModel.
*)predictedScores : ScoreValuePerLabelMap.t option;details : DetailsMap.t option;}val to_value :
t ->
[> `Structure of
(string
* [> `Float of FloatLabel.t
| `Map of
([> `Enum of string | `String of Label.t ]
* [> `Float of ScoreValue.t | `String of DetailsValue.t ])
list
| `String of Label.t ])
list ]