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

DefaultIntegerHyperParameterRange

import type { DefaultIntegerHyperParameterRange } from "https://aws-api.deno.dev/v0.3/services/personalize.ts?docs=full";

Provides the name and default range of a integer-valued hyperparameter and whether the hyperparameter is tunable. A tunable hyperparameter can have its value determined during hyperparameter optimization (HPO).

interface DefaultIntegerHyperParameterRange {
isTunable?: boolean | null;
maxValue?: number | null;
minValue?: number | null;
name?: string | null;
}

§Properties

§
isTunable?: boolean | null
[src]

Indicates whether the hyperparameter is tunable.

§
maxValue?: number | null
[src]

The maximum allowable value for the hyperparameter.

§
minValue?: number | null
[src]

The minimum allowable value for the hyperparameter.

§
name?: string | null
[src]

The name of the hyperparameter.