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

HyperParameterSpecification

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

Defines a hyperparameter to be used by an algorithm.

interface HyperParameterSpecification {
DefaultValue?: string | null;
Description?: string | null;
IsRequired?: boolean | null;
IsTunable?: boolean | null;
Name: string;
Range?: ParameterRange | null;
}

§Properties

§
DefaultValue?: string | null
[src]

The default value for this hyperparameter. If a default value is specified, a hyperparameter cannot be required.

§
Description?: string | null
[src]

A brief description of the hyperparameter.

§
IsRequired?: boolean | null
[src]

Indicates whether this hyperparameter is required.

§
IsTunable?: boolean | null
[src]

Indicates whether this hyperparameter is tunable in a hyperparameter tuning job.

§
Name: string
[src]

The name of this hyperparameter. The name must be unique.

§
Range?: ParameterRange | null
[src]

The allowed range for this hyperparameter.

§

The type of this hyperparameter. The valid types are Integer, Continuous, Categorical, and FreeText.