Skip to content

Commit

Permalink
Further decrease test tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
adonath committed Jan 7, 2025
1 parent b6b40db commit b078069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_gmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def test_sklearn_api(gmm_jax):

value = gmm.predict_proba(x[:2])
assert_allclose(
value, [[9.990787e-01, 9.212347e-04], [5.027220e-01, 4.972780e-01]], atol=1e-4
value, [[9.990787e-01, 9.212347e-04], [5.027220e-01, 4.972780e-01]], atol=1e-3
)

value = gmm.aic(x[:2])
Expand Down

0 comments on commit b078069

Please sign in to comment.