BinaryConfusionMatrix constructor

BinaryConfusionMatrix({
  1. double? accuracy,
  2. double? f1Score,
  3. String? falseNegatives,
  4. String? falsePositives,
  5. double? positiveClassThreshold,
  6. double? precision,
  7. double? recall,
  8. String? trueNegatives,
  9. String? truePositives,
})

Implementation

BinaryConfusionMatrix({
  this.accuracy,
  this.f1Score,
  this.falseNegatives,
  this.falsePositives,
  this.positiveClassThreshold,
  this.precision,
  this.recall,
  this.trueNegatives,
  this.truePositives,
});