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

DefaultCategoricalHyperParameterRange

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

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

interface DefaultCategoricalHyperParameterRange {
isTunable?: boolean | null;
name?: string | null;
values?: string[] | null;
}

§Properties

§
isTunable?: boolean | null
[src]

Whether the hyperparameter is tunable.

§
name?: string | null
[src]

The name of the hyperparameter.

§
values?: string[] | null
[src]

A list of the categories for the hyperparameter.