Member Junction
    Preparing search index...

    Interface PredictiveStudioScoreRecordSetOutput

    Output of PredictiveStudio.ScoreRecordSet — the run summary.

    interface PredictiveStudioScoreRecordSetOutput {
        failed: number;
        predictions?: PredictiveStudioEphemeralPrediction[];
        scored: number;
        skipped: number;
        wroteBack: boolean;
    }
    Index

    Properties

    failed: number

    Number of records that failed to score.

    Ephemeral predictions, present only when wroteBack is false.

    scored: number

    Number of records successfully scored.

    skipped: number

    Number of records skipped (no selector matched / nothing to score).

    wroteBack: boolean

    True when the runner wrote scores back to the target (predictions are then NOT returned ephemerally).