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

GoogleCloudAiplatformV1StudySpecMedianAutomatedStoppingSpec

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

The median automated stopping rule stops a pending Trial if the Trial's best objective_value is strictly below the median 'performance' of all completed Trials reported up to the Trial's last measurement. Currently, 'performance' refers to the running average of the objective values reported by the Trial in each measurement.

interface GoogleCloudAiplatformV1StudySpecMedianAutomatedStoppingSpec {
useElapsedDuration?: boolean;
}

§Properties

§
useElapsedDuration?: boolean
[src]

True if median automated stopping rule applies on Measurement.elapsed_duration. It means that elapsed_duration field of latest measurement of current Trial is used to compute median objective value for each completed Trials.