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

GoogleCloudMlV1_StudyConfig_ParameterSpec

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

Represents a single parameter to optimize.

interface GoogleCloudMlV1_StudyConfig_ParameterSpec {
parameter?: string;
scaleType?:
| "SCALE_TYPE_UNSPECIFIED"
| "UNIT_LINEAR_SCALE"
| "UNIT_LOG_SCALE"
| "UNIT_REVERSE_LOG_SCALE";
type?:
| "PARAMETER_TYPE_UNSPECIFIED"
| "DOUBLE"
| "INTEGER"
| "CATEGORICAL"
| "DISCRETE";
}

§Properties

§

The value spec for a 'CATEGORICAL' parameter.

§

A child node is active if the parameter's value matches the child node's matching_parent_values. If two items in child_parameter_specs have the same name, they must have disjoint matching_parent_values.

§

The value spec for a 'DISCRETE' parameter.

§

The value spec for a 'DOUBLE' parameter.

§

The value spec for an 'INTEGER' parameter.

§
parameter?: string
[src]

Required. The parameter name 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.

§
type?: "PARAMETER_TYPE_UNSPECIFIED" | "DOUBLE" | "INTEGER" | "CATEGORICAL" | "DISCRETE"
[src]

Required. The type of the parameter.