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

ParameterRanges

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

Specifies ranges of integer, continuous, and categorical hyperparameters that a hyperparameter tuning job searches. The hyperparameter tuning job launches training jobs with hyperparameter values within these ranges to find the combination of values that result in the training job with the best performance as measured by the objective metric of the hyperparameter tuning job.

Note: You can specify a maximum of 20 hyperparameters that a hyperparameter tuning job can search over. Every possible value of a categorical parameter range counts against this limit.

interface ParameterRanges {
CategoricalParameterRanges?: CategoricalParameterRange[] | null;
ContinuousParameterRanges?: ContinuousParameterRange[] | null;
IntegerParameterRanges?: IntegerParameterRange[] | null;
}

§Properties

§
CategoricalParameterRanges?: CategoricalParameterRange[] | null
[src]

The array of "CategoricalParameterRange" objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.

§
ContinuousParameterRanges?: ContinuousParameterRange[] | null
[src]

The array of "ContinuousParameterRange" objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.

§
IntegerParameterRanges?: IntegerParameterRange[] | null
[src]

The array of "IntegerParameterRange" objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.