Fixed formatting

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-07-09 13:35:47 +02:00
parent b73cffb8c4
commit 4cf782f7ab

View File

@ -478,9 +478,9 @@ def _ssd_evaluate(args: argparse.Namespace) -> None:
# compute matches between predictions and ground truth # compute matches between predictions and ground truth
true_positives, false_positives, \ true_positives, false_positives, \
cum_true_positives, cum_false_positives, open_set_error = evaluate.match_predictions(predictions_per_class, cum_true_positives, cum_false_positives, open_set_error = evaluate.match_predictions(predictions_per_class,
labels, labels,
ssd.N_CLASSES) ssd.N_CLASSES)
del labels del labels
cum_precisions, cum_recalls = evaluate.get_precision_recall(number_gt_per_class, cum_precisions, cum_recalls = evaluate.get_precision_recall(number_gt_per_class,
cum_true_positives, cum_true_positives,