Member Junction
    Preparing search index...

    The resolved, ready-to-persist configuration for one MJ: ML Training Pipelines row.

    interface PipelineConfig {
        algorithmName: string;
        asOf: AsOfStrategy;
        description: string;
        featureSteps: FeatureStepGraph;
        leakageGuard: LeakageGuard;
        name: string;
        problemType: ProblemType;
        sourceBindings: SourceBinding[];
        targetEntityName: string;
        targetVariable: string;
        validation: ValidationStrategy;
    }
    Index

    Properties

    algorithmName: string

    The algorithm NAME the chosen experiment proposes (resolved to AlgorithmID by the builder).

    Point-in-time assembly strategy.

    description: string

    Plain-language description carried onto the pipeline row.

    featureSteps: FeatureStepGraph

    The assembled FeatureStep DAG.

    leakageGuard: LeakageGuard

    Leakage protection (deny-list + dominance threshold).

    name: string

    Human-readable pipeline name (derived from the plan's Goal).

    problemType: ProblemType

    Classification or regression.

    sourceBindings: SourceBinding[]

    Source bindings the features draw from.

    targetEntityName: string

    The training-unit entity NAME (resolved to TargetEntityID by the builder).

    targetVariable: string

    Label column / expression.

    validation: ValidationStrategy

    Validation strategy.