Calculates the contingency table and binary classification metrics for a binary classifier given predictions and truth labels
Calculates the contingency table and binary classification metrics for a binary classifier given predictions and truth labels
Similar to MLlib's org.apache.spark.mllib.evaluation.BinaryClassificationMetrics, but runs in one pass, but only contains metrics that can be calculated from the contingency table
An RDD[Boolean] containing the predictions
An RDD[Boolean] containing the true labels, must be zippable with predictions
An evaluation.