From a884d1d0a22ccdf4709947c4d8891e211acd0faf Mon Sep 17 00:00:00 2001 From: Lars Nieradzik Date: Mon, 12 Feb 2018 05:08:51 +0100 Subject: [PATCH] Removed print --- tests/test_voc2007.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_voc2007.py b/tests/test_voc2007.py index 2474051..414147f 100644 --- a/tests/test_voc2007.py +++ b/tests/test_voc2007.py @@ -32,7 +32,6 @@ class TestVoc2007(TestCase): dataset = self.__load_dataset() out = kmeans(dataset, 5, iterations=50) percentage = avg_iou(dataset, out) - print(percentage) np.testing.assert_almost_equal(percentage, 0.61, decimal=2) @@ -40,6 +39,5 @@ class TestVoc2007(TestCase): dataset = self.__load_dataset() out = kmeans(dataset, 9, iterations=50) percentage = avg_iou(dataset, out) - print(percentage) np.testing.assert_almost_equal(percentage, 0.672, decimal=2) -- GitLab