Member Junction
    Preparing search index...

    Optional point-in-time assembly strategy for the train (mirrors the pipeline's stored AsOfStrategy).

    interface PredictiveStudioTrainAsOf {
        Column?: string;
        Mode: "column" | "none" | "offset";
        OffsetDays?: number;
    }
    Index

    Properties

    Column?: string

    Column carrying the as-of timestamp (when Mode is column).

    Mode: "column" | "none" | "offset"

    How to anchor feature assembly in time: no anchoring, a column on the row, or an offset before the label event.

    OffsetDays?: number

    Days before the label event to assemble features (when Mode is offset).