Arize Phoenix TS
    Preparing search index...

    The result of computing precision, recall, and F-score for a batch of predictions.

    interface PrecisionRecallFScoreResult {
        average: AverageType;
        beta: number;
        fScore: number;
        labels: ClassificationLabel[];
        positiveLabel: ClassificationLabel | null;
        precision: number;
        recall: number;
    }
    Index

    Properties

    average: AverageType
    beta: number
    fScore: number

    All labels observed in expected and output, in first-seen order.

    positiveLabel: ClassificationLabel | null

    The label treated as positive in one-vs-rest mode, or null if multi-class averaging was used.

    precision: number
    recall: number