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

DefaultHyperParameterRanges

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

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

interface DefaultHyperParameterRanges {
categoricalHyperParameterRanges?: DefaultCategoricalHyperParameterRange[] | null;
continuousHyperParameterRanges?: DefaultContinuousHyperParameterRange[] | null;
integerHyperParameterRanges?: DefaultIntegerHyperParameterRange[] | null;
}

§Properties

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

The categorical hyperparameters and their default ranges.

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

The continuous hyperparameters and their default ranges.

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

The integer-valued hyperparameters and their default ranges.