TrainingJobInputDataConfig constructor
const
TrainingJobInputDataConfig({
- required Input<
String> channelName, - Input<
String?> ? compressionType, - Input<
String?> ? contentType, - Input<
TrainingJobInputDataConfigDataSource?> ? dataSource, - Input<
String?> ? inputMode, - Input<
String?> ? recordWrapperType, - Input<
TrainingJobInputDataConfigShuffleConfig?> ? shuffleConfig,
Creates a new TrainingJobInputDataConfig.
channelName Name of the channel. Must be between 1 and 64 characters.
compressionType Compression type for the input data. Valid values: None, Gzip.
contentType MIME type of the input data.
dataSource Location of the channel data. See dataSource below.
inputMode Input mode for the channel data. Valid values: File, Pipe, FastFile.
recordWrapperType Record wrapper type. Valid values: None, RecordIO.
shuffleConfig Configuration for shuffling data in the channel. See shuffleConfig below.
Implementation
const TrainingJobInputDataConfig({
required this.channelName,
this.compressionType,
this.contentType,
this.dataSource,
this.inputMode,
this.recordWrapperType,
this.shuffleConfig,
});