Skip to content

Commit

Permalink
Reduce number of draws in slow BART test
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoV94 authored and twiecki committed Jan 20, 2022
1 parent da7c5df commit 23c375a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymc/tests/test_bart.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def test_missing_data():
mu = pm.BART("mu", X, Y, m=10)
sigma = pm.HalfNormal("sigma", 1)
y = pm.Normal("y", mu, sigma, observed=Y)
idata = pm.sample(random_seed=3415)
idata = pm.sample(tune=10, draws=10, chains=1, random_seed=3415)


class TestUtils:
Expand Down

0 comments on commit 23c375a

Please sign in to comment.