We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a406410 commit 002beb0Copy full SHA for 002beb0
tests/tarp_test.py
@@ -293,7 +293,7 @@ def test_consistent_run_tarp_results_with_posterior(method):
293
num_dim = 2
294
prior = BoxUniform(-ones(num_dim), ones(num_dim))
295
296
- num_simulations = 1000
+ num_simulations = 1500
297
num_tarp_sims = 500
298
num_posterior_samples = 1000
299
@@ -308,7 +308,7 @@ def simulator(theta):
308
theta = prior.sample((num_simulations,))
309
x = simulator(theta)
310
311
- inferer.append_simulations(theta, x).train(training_batch_size=200)
+ inferer.append_simulations(theta, x).train()
312
posterior = inferer.build_posterior()
313
314
thetas = prior.sample((num_tarp_sims,))
0 commit comments