Skip to content
Snippets Groups Projects
Commit 8dde9069 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Try to investigate test failures on Travis-CI

parent 74ac2228
No related branches found
No related tags found
No related merge requests found
...@@ -375,6 +375,8 @@ def test_plda_EM_vs_Python(): ...@@ -375,6 +375,8 @@ def test_plda_EM_vs_Python():
t.train(m, l) t.train(m, l)
t_py.train(m_py, l) t_py.train(m_py, l)
assert numpy.allclose(m.mu, m_py.mu) 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.f, m_py.f)
assert numpy.allclose(m.g, m_py.g) assert numpy.allclose(m.g, m_py.g)
assert numpy.allclose(m.sigma, m_py.sigma) assert numpy.allclose(m.sigma, m_py.sigma)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment