TrainingJobInputDataConfig constructor

const TrainingJobInputDataConfig({
  1. required Input<String> channelName,
  2. Input<String?>? compressionType,
  3. Input<String?>? contentType,
  4. Input<TrainingJobInputDataConfigDataSource?>? dataSource,
  5. Input<String?>? inputMode,
  6. Input<String?>? recordWrapperType,
  7. 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,
});