TuningSnapshot constructor

TuningSnapshot({
  1. int step = 0,
  2. int epoch = 0,
  3. double meanLoss = 0,
  4. Timestamp? computeTime,
})

Implementation

TuningSnapshot({
  this.step = 0,
  this.epoch = 0,
  this.meanLoss = 0,
  this.computeTime,
}) : super(fullyQualifiedName);