Arize Phoenix TS
    Preparing search index...

    An experiment is a set of task runs on a dataset version

    interface ExperimentInfo {
        createdAt: string;
        datasetId: string;
        datasetSplits?: string[];
        datasetVersionId: string;
        exampleCount: number;
        failedRunCount: number;
        id: string;
        metadata: Record<string, unknown>;
        missingRunCount: number;
        projectName: string | null;
        repetitions: number;
        successfulRunCount: number;
        updatedAt: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    createdAt: string

    The creation timestamp of the experiment

    datasetId: string
    datasetSplits?: string[]
    datasetVersionId: string
    exampleCount: number

    Number of examples in the experiment

    failedRunCount: number

    Number of failed runs in the experiment

    id: string
    metadata: Record<string, unknown>

    Metadata about the experiment as an object of key values e.x. model name

    missingRunCount: number

    Number of missing (not yet executed) runs in the experiment

    projectName: string | null

    The project under which the experiment task traces are recorded Note: This can be null when no project is associated with the experiment

    repetitions: number

    Number of times the experiment is repeated

    successfulRunCount: number

    Number of successful runs in the experiment

    updatedAt: string

    The last update timestamp of the experiment