The evaluation metrics associated with the evaluated model.

interface FlywheelModelEvaluationMetrics {
    AverageAccuracy?: number;
    AverageF1Score?: number;
    AveragePrecision?: number;
    AverageRecall?: number;
}

Properties

AverageAccuracy?: number

Average accuracy metric for the model.

AverageF1Score?: number

The average F1 score from the evaluation metrics.

AveragePrecision?: number

Average precision metric for the model.

AverageRecall?: number

Average recall metric for the model.