Member Junction
    Preparing search index...

    The outcome of building a prediction from a plan.

    interface BuildPredictionResult {
        errorMessage: string;
        heldReason: string;
        leakageFlagged: boolean;
        modelId?: string;
        pipelineId?: string;
        published: boolean;
        success: boolean;
        trust?: TrustVerdict;
    }
    Index

    Properties

    errorMessage: string

    A clean error message when the build failed; else null.

    heldReason: string

    When not published, the plain reason (trust gate or leakage); else null.

    leakageFlagged: boolean

    Whether training flagged a leakage warning (held for analyst review).

    modelId?: string

    The trained MJ: ML Models id (present once training completes).

    pipelineId?: string

    The created MJ: ML Training Pipelines id (present once the pipeline is created).

    published: boolean

    Whether the model was published into the business catalog.

    success: boolean

    Whether the build (pipeline create + train) succeeded.

    trust?: TrustVerdict

    The plain-language trust verdict for the trained model.