Arize Phoenix TS
    Preparing search index...

    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: string | null;
        repetitions: number;
        runs: Record<ExperimentRunID, ExperimentRun>;
        successfulRunCount: number;
        updatedAt: string;
    }

    Hierarchy (View Summary)

    Index

    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: 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