Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution

import type { GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution } from "https://googleapis.deno.dev/v1/aiplatform:v1.ts";

Dataset distribution for Supervised Tuning.

interface GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution {
readonly max?: number;
readonly mean?: number;
readonly median?: number;
readonly min?: number;
readonly p5?: number;
readonly p95?: number;
readonly sum?: bigint;
}

§Properties

§

Output only. Defines the histogram bucket.

§
readonly max?: number
[src]

Output only. The maximum of the population values.

§
readonly mean?: number
[src]

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

§
readonly median?: number
[src]

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

§
readonly min?: number
[src]

Output only. The minimum of the population values.

§
readonly p5?: number
[src]

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

§
readonly p95?: number
[src]

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

§
readonly sum?: bigint
[src]

Output only. Sum of a given population of values.