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

GoogleCloudAiplatformV1StudySpecParameterSpec

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

Represents a single parameter to optimize.

interface GoogleCloudAiplatformV1StudySpecParameterSpec {
parameterId?: string;
scaleType?:
| "SCALE_TYPE_UNSPECIFIED"
| "UNIT_LINEAR_SCALE"
| "UNIT_LOG_SCALE"
| "UNIT_REVERSE_LOG_SCALE";
}

§Properties

§

The value spec for a 'CATEGORICAL' parameter.

§

A conditional parameter node is active if the parameter's value matches the conditional node's parent_value_condition. If two items in conditional_parameter_specs have the same name, they must have disjoint parent_value_condition.

§

The value spec for a 'DISCRETE' parameter.

§

The value spec for a 'DOUBLE' parameter.

§

The value spec for an 'INTEGER' parameter.

§
parameterId?: string
[src]

Required. The ID of the parameter. Must not contain whitespaces and must be unique amongst all ParameterSpecs.

§
scaleType?: "SCALE_TYPE_UNSPECIFIED" | "UNIT_LINEAR_SCALE" | "UNIT_LOG_SCALE" | "UNIT_REVERSE_LOG_SCALE"
[src]

How the parameter should be scaled. Leave unset for CATEGORICAL parameters.