Member Junction
    Preparing search index...

    The outcome of a retraining trigger for a single stale binding/model.

    interface RetrainOutcome {
        bindingId: string;
        challenger?: TrainModelResult;
        comparison?: ChallengerComparison;
        incumbentModelId: string;
        retrained: boolean;
        stalenessReasons: StalenessReason[];
    }
    Index

    Properties

    bindingId: string

    The binding that triggered the retrain.

    challenger?: TrainModelResult

    The newly-trained challenger model + run (present only when retrained).

    Challenger-vs-incumbent comparison (present only when retrained).

    incumbentModelId: string

    The incumbent model that was found stale.

    retrained: boolean

    Whether a retrain actually ran (false when the model was not stale).

    stalenessReasons: StalenessReason[]

    Why the incumbent was found stale (empty when not stale).