dd-trace
    Preparing search index...

    Interface EvaluationOptions

    interface EvaluationOptions {
        label: string;
        metricType: "categorical" | "score";
        mlApp?: string;
        tags?: { [key: string]: any };
        timestampMs?: number;
        value: string | number;
    }
    Index

    Properties

    label: string

    The name of the evaluation metric

    metricType: "categorical" | "score"

    The type of evaluation metric, one of 'categorical' or 'score'

    mlApp?: string

    The name of the ML application

    tags?: { [key: string]: any }

    An object of string key-value pairs to tag the evaluation metric with.

    timestampMs?: number

    The timestamp in milliseconds when the evaluation metric result was generated.

    value: string | number

    The value of the evaluation metric. Must be string for 'categorical' metrics and number for 'score' metrics.