AggregateClassificationMetrics constructor

AggregateClassificationMetrics({
  1. double? accuracy,
  2. double? f1Score,
  3. double? logLoss,
  4. double? precision,
  5. double? recall,
  6. double? rocAuc,
  7. double? threshold,
})

Implementation

AggregateClassificationMetrics({
  this.accuracy,
  this.f1Score,
  this.logLoss,
  this.precision,
  this.recall,
  this.rocAuc,
  this.threshold,
});