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

interface RanExperiment {
    datasetId: string;
    datasetVersionId: string;
    evaluationRuns?: ExperimentEvaluationRun[];
    id: string;
    params: ExperimentParameters;
    projectName: string;
    repetitions: number;
    runs: Record<string, ExperimentRun>;
}

Hierarchy (View Summary)

Properties

datasetId: string
datasetVersionId: string
evaluationRuns?: ExperimentEvaluationRun[]
id: string
projectName: string

The project under which the experiment task traces are recorded

repetitions: number
runs: Record<string, ExperimentRun>