TuningTask constructor

TuningTask({
  1. Timestamp? startTime,
  2. Timestamp? completeTime,
  3. List<TuningSnapshot> snapshots = const [],
  4. required Dataset? trainingData,
  5. Hyperparameters? hyperparameters,
})

Implementation

TuningTask({
  this.startTime,
  this.completeTime,
  this.snapshots = const [],
  required this.trainingData,
  this.hyperparameters,
}) : super(fullyQualifiedName);