Interface SupervisedTuningDatasetDistribution

Dataset distribution for Supervised Tuning.

interface SupervisedTuningDatasetDistribution {
    billableSum?: string;
    buckets?: SupervisedTuningDatasetDistributionDatasetBucket[];
    max?: number;
    mean?: number;
    median?: number;
    min?: number;
    p5?: number;
    p95?: number;
    sum?: string;
}

Properties

billableSum?: string

Output only. Sum of a given population of values that are billable.

Output only. Defines the histogram bucket.

max?: number

Output only. The maximum of the population values.

mean?: number

Output only. The arithmetic mean of the values in the population.

median?: number

Output only. The median of the values in the population.

min?: number

Output only. The minimum of the population values.

p5?: number

Output only. The 5th percentile of the values in the population.

p95?: number

Output only. The 95th percentile of the values in the population.

sum?: string

Output only. Sum of a given population of values.