From 6b29c6f9c320d4e7daecfa72de0c3c33d8aceeb0 Mon Sep 17 00:00:00 2001 From: Tiago Freitas Pereira <tiagofrepereira@gmail.com> Date: Sun, 1 Mar 2015 17:02:18 +0100 Subject: [PATCH] Removed accidental print --- bob/learn/em/test/test_plda.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bob/learn/em/test/test_plda.py b/bob/learn/em/test/test_plda.py index 6ea34cc..b51a598 100644 --- a/bob/learn/em/test/test_plda.py +++ b/bob/learn/em/test/test_plda.py @@ -481,7 +481,6 @@ def test_plda_machine_log_likelihood_Python(): assert abs(m.compute_log_likelihood(ar_s, False) - compute_log_likelihood(ar_s, mu, C_F, C_G, sigma)) < 1e-10 ar_p2d = numpy.reshape(ar_p, (1,C_dim_d)) - print ar_p.shape a = m.compute_log_likelihood(ar_p, False) assert abs(m.compute_log_likelihood(ar_p, False) - compute_log_likelihood(ar_p2d, mu, C_F, C_G, sigma)) < 1e-10 -- GitLab