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

GoogleCloudAiplatformV1StudySpecParameterSpecDiscreteValueSpec

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

Value specification for a parameter in DISCRETE type.

interface GoogleCloudAiplatformV1StudySpecParameterSpecDiscreteValueSpec {
defaultValue?: number;
values?: number[];
}

§Properties

§
defaultValue?: number
[src]

A default value for a DISCRETE parameter that is assumed to be a relatively good starting point. Unset value signals that there is no offered starting point. It automatically rounds to the nearest feasible discrete point. Currently only supported by the Vertex AI Vizier service. Not supported by HyperparameterTuningJob or TrainingPipeline.

§
values?: number[]
[src]

Required. A list of possible values. The list should be in increasing order and at least 1e-10 apart. For instance, this parameter might have possible settings of 1.5, 2.5, and 4.0. This list should not contain more than 1,000 values.