Member Junction
    Preparing search index...

    The result of evaluating a freshly-retrained challenger against the incumbent.

    interface ChallengerComparison {
        challengerValue: number;
        delta: number;
        detail: string;
        incumbentValue: number;
        margin: number;
        metric: string;
        recommendation: PromotionRecommendation;
    }
    Index

    Properties

    challengerValue: number

    Challenger's value for that metric (or null when absent).

    delta: number

    challenger − incumbent (when both present).

    detail: string

    Plain-language explanation (business-friendly).

    incumbentValue: number

    Incumbent's value for that metric (or null when absent).

    margin: number

    The configured promotion margin the delta was tested against.

    metric: string

    The metric key the comparison used.

    recommendation: PromotionRecommendation

    promote when delta ≥ margin, else hold. NEVER triggers an actual promotion.