TabularClassificationPredictionResult

Prediction output format for Tabular Classification.

Fields
classes[] string

The name of the classes being classified, contains all possible values of the target column.

scores[] number

The model's confidence in each class being correct, higher value means higher confidence. The N-th score corresponds to the N-th class in classes.

JSON representation
{
  "classes": [
    string
  ],
  "scores": [
    number
  ]
}