AlgorithmSpecification constructor

AlgorithmSpecification({
  1. required TrainingInputMode trainingInputMode,
  2. String? algorithmName,
  3. bool? enableSageMakerMetricsTimeSeries,
  4. List<MetricDefinition>? metricDefinitions,
  5. String? trainingImage,
})

Implementation

AlgorithmSpecification({
  required this.trainingInputMode,
  this.algorithmName,
  this.enableSageMakerMetricsTimeSeries,
  this.metricDefinitions,
  this.trainingImage,
});