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

HyperParameterRanges

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

Specifies the hyperparameters and their ranges. Hyperparameters can be categorical, continuous, or integer-valued.

interface HyperParameterRanges {
categoricalHyperParameterRanges?: CategoricalHyperParameterRange[] | null;
continuousHyperParameterRanges?: ContinuousHyperParameterRange[] | null;
integerHyperParameterRanges?: IntegerHyperParameterRange[] | null;
}

§Properties

§
categoricalHyperParameterRanges?: CategoricalHyperParameterRange[] | null
[src]

The categorical hyperparameters and their ranges.

§
continuousHyperParameterRanges?: ContinuousHyperParameterRange[] | null
[src]

The continuous hyperparameters and their ranges.

§
integerHyperParameterRanges?: IntegerHyperParameterRange[] | null
[src]

The integer-valued hyperparameters and their ranges.