AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig constructor
const
AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig({
- required Input<
String> channelName, - Input<
String?> ? compressionType, - Input<
String?> ? contentType, - required Input<
AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfigDataSource> dataSource, - Input<
String?> ? inputMode, - Input<
String?> ? recordWrapperType, - Input<
AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfigShuffleConfig?> ? shuffleConfig,
Creates a new AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig.
channelName Name of the channel.
compressionType Compression type of the input data. Allowed values are: None and Gzip.
contentType MIME type of the input data.
dataSource Source of the input data. See Data Source.
inputMode Training input mode for the channel. Allowed values are: Pipe, File, and FastFile.
recordWrapperType Record wrapper type. Allowed values are: None and RecordIO.
shuffleConfig Shuffle configuration for the channel. See Shuffle Config.
Implementation
const AlgorithmValidationSpecificationValidationProfilesTrainingJobDefinitionInputDataConfig({
required this.channelName,
this.compressionType,
this.contentType,
required this.dataSource,
this.inputMode,
this.recordWrapperType,
this.shuffleConfig,
});