Skip to content

Commit

Permalink
tighten test_sample_after_set_data bound
Browse files Browse the repository at this point in the history
  • Loading branch information
austereantelope authored and ricardoV94 committed Dec 24, 2021
1 parent aaea02a commit 29720d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc/tests/test_data_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_sample_after_set_data(self):

assert pp_trace.posterior_predictive["obs"].shape == (1, 1000, 3)
np.testing.assert_allclose(
new_y, pp_trace.posterior_predictive["obs"].mean(("chain", "draw")), atol=1e-1
new_y, pp_trace.posterior_predictive["obs"].mean(("chain", "draw")), atol=0.015
)

def test_shared_data_as_index(self):
Expand Down

0 comments on commit 29720d0

Please sign in to comment.