collector.add(target, score);
line = in.readLine();
}
if (showAuc) {
output.printf(Locale.ENGLISH, "AUC = %.2f%n", collector.auc());
}
if (showConfusion) {
Matrix m = collector.confusion();
output.printf(Locale.ENGLISH, "confusion: [[%.1f, %.1f], [%.1f, %.1f]]%n",
m.get(0, 0), m.get(1, 0), m.get(0, 1), m.get(1, 1));