Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface PredictionOutcome

    Prediction-vs-outcome calibration utilities.

    Focus: deterministic scoring for how well confidence estimates match realized outcomes.

    interface PredictionOutcome {
        confidence: number;
        outcome: boolean;
        predictionId?: string;
        ts?: number;
        weight?: number;
    }
    Index
    confidence: number

    Confidence / probability in [0,1] that outcome=true.

    outcome: boolean

    Realized ground truth.

    predictionId?: string
    ts?: number
    weight?: number

    Optional importance multiplier (default=1).