An experiment that has been run and been recorded on the server

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

Hierarchy (View Summary)

Properties

createdAt: string

The creation timestamp of the experiment

datasetId: string
datasetSplits?: string[]
datasetVersionId: string
evaluationRuns?: ExperimentEvaluationRun[]
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: null | string

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

runs: Record<string, ExperimentRun>
successfulRunCount: number

Number of successful runs in the experiment

updatedAt: string

The last update timestamp of the experiment