From 8dde90695ad3b69ed88da8035720a4907bcf617b Mon Sep 17 00:00:00 2001 From: Andre Anjos <andre.dos.anjos@gmail.com> Date: Mon, 26 May 2014 10:44:58 +0200 Subject: [PATCH] Try to investigate test failures on Travis-CI --- xbob/learn/misc/test_plda_trainer.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xbob/learn/misc/test_plda_trainer.py b/xbob/learn/misc/test_plda_trainer.py index 7ac737e..6ea1c36 100644 --- a/xbob/learn/misc/test_plda_trainer.py +++ b/xbob/learn/misc/test_plda_trainer.py @@ -375,6 +375,8 @@ def test_plda_EM_vs_Python(): t.train(m, l) t_py.train(m_py, l) assert numpy.allclose(m.mu, m_py.mu) + print(m.f) + print(m_py.f) assert numpy.allclose(m.f, m_py.f) assert numpy.allclose(m.g, m_py.g) assert numpy.allclose(m.sigma, m_py.sigma) -- GitLab