MDAA TS Docs
    Preparing search index...

    Input channel for a training step.

    interface TrainingInputChannel {
        channelName: string;
        contentType?: string;
        inputMode?: "File" | "Pipe";
        s3DataDistributionType?: "FullyReplicated" | "ShardedByS3Key";
        s3DataType?: "S3Prefix" | "ManifestFile";
        s3Uri: string | StepOutputReference;
    }
    Index

    Properties

    channelName: string

    Channel name (e.g. "train", "validation").

    contentType?: string

    Content type of the training data (e.g. "text/csv").

    inputMode?: "File" | "Pipe"

    Input mode: File (default) or Pipe.

    s3DataDistributionType?: "FullyReplicated" | "ShardedByS3Key"

    S3 data distribution type: FullyReplicated (default) or ShardedByS3Key.

    s3DataType?: "S3Prefix" | "ManifestFile"

    S3 data type: S3Prefix (default) or ManifestFile.

    s3Uri: string | StepOutputReference

    S3 URI or step output reference.