Member Junction
    Preparing search index...

    The output of a FeatureAssembly run.

    interface FeatureAssemblyResult {
        assembledAsOf?: string;
        featureSchema: FeatureSchemaEntry[];
        matrix: MatrixData;
        preprocessing: PreprocessingOp[];
    }
    Index

    Properties

    assembledAsOf?: string

    ISO timestamp the assembly ran (diagnostics).

    featureSchema: FeatureSchemaEntry[]

    Ordered feature schema (the inference input contract) — aligns with matrix.columns.

    matrix: MatrixData

    The assembled RAW feature matrix (columns + row-major values).

    preprocessing: PreprocessingOp[]

    Ordered preprocessing recipe for the sidecar to FIT + APPLY (NOT applied here).