Member Junction
    Preparing search index...

    Interface PredictiveStudioTrainModelOutput

    Output of PredictiveStudio.TrainModel — the produced (Draft) model + its honest metrics.

    interface PredictiveStudioTrainModelOutput {
        holdoutMetrics?: string;
        leakageFlagged: boolean;
        modelId: string;
        status: string;
        trainingRunId: string;
        version: number;
    }
    Index

    Properties

    holdoutMetrics?: string

    JSON of the metrics scored exactly once on the locked holdout the search never saw (the honest performance number).

    leakageFlagged: boolean

    True when one feature dominates the model's predictions (possible target leakage). A flagged model stays Draft and needs human sign-off before promotion.

    modelId: string

    Id of the produced (Draft) MJ: ML Models row.

    status: string

    Lifecycle status of the produced model (always Draft immediately after training).

    trainingRunId: string

    Id of the MJ: ML Training Runs row recording this attempt.

    version: number

    Monotonic model version under the pipeline (max(Version)+1).