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

GoogleCloudAiplatformV1StudySpec

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

Represents specification of a Study.

interface GoogleCloudAiplatformV1StudySpec {
algorithm?: "ALGORITHM_UNSPECIFIED" | "GRID_SEARCH" | "RANDOM_SEARCH";
measurementSelectionType?: "MEASUREMENT_SELECTION_TYPE_UNSPECIFIED" | "LAST_MEASUREMENT" | "BEST_MEASUREMENT";
observationNoise?: "OBSERVATION_NOISE_UNSPECIFIED" | "LOW" | "HIGH";
}

§Properties

§
algorithm?: "ALGORITHM_UNSPECIFIED" | "GRID_SEARCH" | "RANDOM_SEARCH"
[src]

The search algorithm specified for the Study.

§

The automated early stopping spec using convex stopping rule.

§

The automated early stopping spec using decay curve rule.

§
measurementSelectionType?: "MEASUREMENT_SELECTION_TYPE_UNSPECIFIED" | "LAST_MEASUREMENT" | "BEST_MEASUREMENT"
[src]

Describe which measurement selection type will be used

§

The automated early stopping spec using median rule.

§

Required. Metric specs for the Study.

§
observationNoise?: "OBSERVATION_NOISE_UNSPECIFIED" | "LOW" | "HIGH"
[src]

The observation noise level of the study. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.

§

Required. The set of parameters to tune.

§

Conditions for automated stopping of a Study. Enable automated stopping by configuring at least one condition.