BqmlIterationResult constructor

BqmlIterationResult({
  1. String? durationMs,
  2. double? evalLoss,
  3. int? index,
  4. double? learnRate,
  5. double? trainingLoss,
})

Implementation

BqmlIterationResult({
  this.durationMs,
  this.evalLoss,
  this.index,
  this.learnRate,
  this.trainingLoss,
});