The result of an evaluation

interface EvaluationResult {
    explanation?: string;
    label?: string;
    score?: number;
}

Properties

explanation?: string

The explanation of the evaluation.

"The model correctly identified the sentiment of the text."
label?: string

The label of the evaluation.

"correct"
score?: number

The score of the evaluation.

0.95