BinaryClassificationMetrics constructor

BinaryClassificationMetrics({
  1. AggregateClassificationMetrics? aggregateClassificationMetrics,
  2. List<BinaryConfusionMatrix>? binaryConfusionMatrixList,
  3. String? negativeLabel,
  4. String? positiveLabel,
})

Implementation

BinaryClassificationMetrics({
  this.aggregateClassificationMetrics,
  this.binaryConfusionMatrixList,
  this.negativeLabel,
  this.positiveLabel,
});