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

ChannelSpecification

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

Defines a named input source, called a channel, to be used by an algorithm.

interface ChannelSpecification {
Description?: string | null;
IsRequired?: boolean | null;
Name: string;
SupportedCompressionTypes?: CompressionType[] | null;
SupportedContentTypes: string[];
SupportedInputModes: TrainingInputMode[];
}

§Properties

§
Description?: string | null
[src]

A brief description of the channel.

§
IsRequired?: boolean | null
[src]

Indicates whether the channel is required by the algorithm.

§
Name: string
[src]

The name of the channel.

§
SupportedCompressionTypes?: CompressionType[] | null
[src]

The allowed compression types, if data compression is used.

§
SupportedContentTypes: string[]
[src]

The supported MIME types for the data.

§
SupportedInputModes: TrainingInputMode[]
[src]

The allowed input mode, either FILE or PIPE.

In FILE mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode.

In PIPE mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.