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

ParameterRange

import type { ParameterRange } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.

interface ParameterRange {
CategoricalParameterRangeSpecification?: CategoricalParameterRangeSpecification | null;
ContinuousParameterRangeSpecification?: ContinuousParameterRangeSpecification | null;
IntegerParameterRangeSpecification?: IntegerParameterRangeSpecification | null;
}

§Properties

§
CategoricalParameterRangeSpecification?: CategoricalParameterRangeSpecification | null
[src]

A CategoricalParameterRangeSpecification object that defines the possible values for a categorical hyperparameter.

§
ContinuousParameterRangeSpecification?: ContinuousParameterRangeSpecification | null
[src]

A ContinuousParameterRangeSpecification object that defines the possible values for a continuous hyperparameter.

§
IntegerParameterRangeSpecification?: IntegerParameterRangeSpecification | null
[src]

A IntegerParameterRangeSpecification object that defines the possible values for an integer hyperparameter.