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

ContinuousHyperParameterRange

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

Provides the name and range of a continuous hyperparameter.

interface ContinuousHyperParameterRange {
maxValue?: number | null;
minValue?: number | null;
name?: string | null;
}

§Properties

§
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.