Skip to content

Commit

Permalink
Temp debug qlse test
Browse files Browse the repository at this point in the history
  • Loading branch information
robertapplin committed Apr 6, 2024
1 parent 00dc1f1 commit 5947984
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion quasielasticbayes/test/qlse_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ def test_qlres_minimal_input(self):
decimal=dp)
np.testing.assert_almost_equal(reference['eout'], eout,
decimal=dp)
np.testing.assert_almost_equal(reference['yfit'], yfit,
np.testing.assert_almost_equal(reference['yfit'][:1000], yfit[:1000],
decimal=dp)
np.testing.assert_almost_equal(reference['yfit'][1000:2000], yfit[1000:2000],
decimal=dp)
ref_prob = get_qlse_prob(reference['yprob'])
np.testing.assert_almost_equal(ref_prob, yprob,
Expand Down

0 comments on commit 5947984

Please sign in to comment.