From 94f4b99710d855bea456210cf91e6e55eeac3926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=A9tan=20Lepage?= <33058747+GaetanLepage@users.noreply.github.com> Date: Sat, 21 Sep 2024 23:06:41 +0200 Subject: [PATCH] Fix flaky test_change_point_x64 (#1863) --- test/infer/test_mcmc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/infer/test_mcmc.py b/test/infer/test_mcmc.py index 6e5d31f4b..249cc4627 100644 --- a/test/infer/test_mcmc.py +++ b/test/infer/test_mcmc.py @@ -346,7 +346,7 @@ def model(): def test_change_point_x64(): # Ref: https://forum.pyro.ai/t/i-dont-understand-why-nuts-code-is-not-working-bayesian-hackers-mail/696 - num_warmup, num_samples = 500, 3000 + num_warmup, num_samples = 1000, 3000 def model(data): alpha = 1 / jnp.mean(data.astype(np.float32))