Member Junction
    Preparing search index...

    standardize — zero-mean/unit-variance scaling. Mean/std are fit on training data and frozen onto the model.

    interface StandardizeFeatureStep {
        Columns: string[];
        Id: string;
        Inputs?: string[];
        Kind: "standardize";
        Label?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Columns: string[]

    Columns to standardize.

    Id: string

    Stable id for this step, referenced by downstream steps' Inputs.

    Inputs?: string[]

    Ids of upstream steps that feed this step (DAG edges).

    Kind: "standardize"

    Discriminator selecting the concrete step variant.

    Label?: string

    Optional human-readable label for the visual DAG.