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

TrainingSpecification

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

Defines how the algorithm is used for a training job.

interface TrainingSpecification {
MetricDefinitions?: MetricDefinition[] | null;
SupportedHyperParameters?: HyperParameterSpecification[] | null;
SupportedTrainingInstanceTypes: TrainingInstanceType[];
SupportedTuningJobObjectiveMetrics?: HyperParameterTuningJobObjective[] | null;
SupportsDistributedTraining?: boolean | null;
TrainingChannels: ChannelSpecification[];
TrainingImage: string;
TrainingImageDigest?: string | null;
}

§Properties

§
MetricDefinitions?: MetricDefinition[] | null
[src]

A list of MetricDefinition objects, which are used for parsing metrics generated by the algorithm.

§
SupportedHyperParameters?: HyperParameterSpecification[] | null
[src]

A list of the HyperParameterSpecification objects, that define the supported hyperparameters. This is required if the algorithm supports automatic model tuning.>

§
SupportedTrainingInstanceTypes: TrainingInstanceType[]
[src]

A list of the instance types that this algorithm can use for training.

§
SupportedTuningJobObjectiveMetrics?: HyperParameterTuningJobObjective[] | null
[src]

A list of the metrics that the algorithm emits that can be used as the objective metric in a hyperparameter tuning job.

§
SupportsDistributedTraining?: boolean | null
[src]

Indicates whether the algorithm supports distributed training. If set to false, buyers can't request more than one instance during training.

§
TrainingChannels: ChannelSpecification[]
[src]

A list of ChannelSpecification objects, which specify the input sources to be used by the algorithm.

§
TrainingImage: string
[src]

The Amazon ECR registry path of the Docker image that contains the training algorithm.

§
TrainingImageDigest?: string | null
[src]

An MD5 hash of the training algorithm that identifies the Docker image used for training.