Member Junction
    Preparing search index...

    The outcome of a staleness evaluation for a single binding/model.

    interface StalenessResult {
        bindingId: string;
        currentRowCount?: number;
        modelId: string;
        reasons: StalenessReason[];
        stale: boolean;
        trainedRowCount?: number;
    }
    Index

    Properties

    bindingId: string

    The scoring binding evaluated.

    currentRowCount?: number

    The current target-entity row count observed (for transparency/audit).

    modelId: string

    The model the binding scores with.

    reasons: StalenessReason[]

    Every trigger that fired (empty when fresh).

    stale: boolean

    Whether ANY trigger flagged the model stale.

    trainedRowCount?: number

    The row count the model was trained on (MJMLModelEntity.TrainingRowCount).