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

AutoMLChannel

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

A channel is a named input source that training algorithms can consume. For more information, see .

interface AutoMLChannel {
CompressionType?: CompressionType | null;
ContentType?: string | null;
DataSource: AutoMLDataSource;
TargetAttributeName: string;
}

§Properties

§
CompressionType?: CompressionType | null
[src]

You can use Gzip or None. The default value is None.

§
ContentType?: string | null
[src]

The content type of the data from the input source. You can use text/csv;header=present or x-application/vnd.amazon+parquet. The default value is text/csv;header=present.

§

The data source for an AutoML channel.

§
TargetAttributeName: string
[src]

The name of the target variable in supervised learning, usually represented by 'y'.