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

GoogleCloudAiplatformV1StudySpecDecayCurveAutomatedStoppingSpec

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

The decay curve automated stopping rule builds a Gaussian Process Regressor to predict the final objective value of a Trial based on the already completed Trials and the intermediate measurements of the current Trial. Early stopping is requested for the current Trial if there is very low probability to exceed the optimal value found so far.

interface GoogleCloudAiplatformV1StudySpecDecayCurveAutomatedStoppingSpec {
useElapsedDuration?: boolean;
}

§Properties

§
useElapsedDuration?: boolean
[src]

True if Measurement.elapsed_duration is used as the x-axis of each Trials Decay Curve. Otherwise, Measurement.step_count will be used as the x-axis.