Skip to content

Commit

Permalink
easier test
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed Apr 9, 2019
1 parent aa9fe93 commit 0c16e64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glimix_core/glmm/test/test_glmm_expfam.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,6 @@ def test_glmmexpfam_poisson():
glmm = GLMMExpFam(y, "poisson", M, QS)
glmm.fit(verbose=False)

assert_allclose(glmm.scale, 0.1889331310598134)
assert_allclose(glmm.delta, 1.9602454230599427e-08, atol=1e-4)
assert_allclose(glmm.beta, [-1.0577503637392807, 0.04518668146802441])
assert_allclose(glmm.scale, 0.1889331310598134, rtol=1e-1)
assert_allclose(glmm.delta, 1.9602454230599427e-08, rtol=1e-1, atol=1e-4)
assert_allclose(glmm.beta, [-1.0577503637392807, 0.04518668146802441], rtol=1e-1)

0 comments on commit 0c16e64

Please sign in to comment.