From 4cf782f7ab559ea9a4d23011e46b706cf8dcdd5c Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 9 Jul 2019 13:35:47 +0200 Subject: [PATCH] Fixed formatting Signed-off-by: Jim Martens --- src/twomartens/masterthesis/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/twomartens/masterthesis/cli.py b/src/twomartens/masterthesis/cli.py index 92c1714..84c0876 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -478,9 +478,9 @@ def _ssd_evaluate(args: argparse.Namespace) -> None: # compute matches between predictions and ground truth true_positives, false_positives, \ - cum_true_positives, cum_false_positives, open_set_error = evaluate.match_predictions(predictions_per_class, - labels, - ssd.N_CLASSES) + cum_true_positives, cum_false_positives, open_set_error = evaluate.match_predictions(predictions_per_class, + labels, + ssd.N_CLASSES) del labels cum_precisions, cum_recalls = evaluate.get_precision_recall(number_gt_per_class, cum_true_positives,