TrainingSpecification constructor

TrainingSpecification({
  1. required List<TrainingInstanceType> supportedTrainingInstanceTypes,
  2. required List<ChannelSpecification> trainingChannels,
  3. required String trainingImage,
  4. List<MetricDefinition>? metricDefinitions,
  5. List<HyperParameterSpecification>? supportedHyperParameters,
  6. List<HyperParameterTuningJobObjective>? supportedTuningJobObjectiveMetrics,
  7. bool? supportsDistributedTraining,
  8. String? trainingImageDigest,
})

Implementation

TrainingSpecification({
  required this.supportedTrainingInstanceTypes,
  required this.trainingChannels,
  required this.trainingImage,
  this.metricDefinitions,
  this.supportedHyperParameters,
  this.supportedTuningJobObjectiveMetrics,
  this.supportsDistributedTraining,
  this.trainingImageDigest,
});