CreateExperimentParams: ClientFn & {
    datasetId: string;
    datasetVersionId?: string;
    experimentDescription?: string;
    experimentMetadata?: Record<string, unknown>;
    experimentName?: string;
    repetitions?: number;
    splits?: readonly string[];
}

Type declaration

  • datasetId: string

    The dataset ID to create the experiment for

  • OptionaldatasetVersionId?: string

    The dataset version ID (if omitted, the latest version will be used)

  • OptionalexperimentDescription?: string

    An optional description of the experiment

  • OptionalexperimentMetadata?: Record<string, unknown>

    Metadata for the experiment

  • OptionalexperimentName?: string

    The name of the experiment (if omitted, a random name will be generated)

  • Optionalrepetitions?: number

    Number of times the experiment should be repeated for each example

    1
    
  • Optionalsplits?: readonly string[]

    List of dataset split identifiers (GlobalIDs or names) to filter by