def true_negatives(_, predictions_binary, labels, parameters): return int(confusion_matrix(labels, predictions_binary)[0, 0])