Skip to content

Commit 57b6f13

Browse files
authored
Merge pull request #1543 from pymc-devs/reduce_advi_n_init
MAINT Reduce number of n_init advi steps. Closes #1540.
2 parents 27f663d + 47dd7d7 commit 57b6f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/sampling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def assign_step_methods(model, step=None, methods=(NUTS, HamiltonianMC, Metropol
8181
return steps
8282

8383

84-
def sample(draws, step=None, init='advi', n_init=500000, start=None,
84+
def sample(draws, step=None, init='advi', n_init=200000, start=None,
8585
trace=None, chain=0, njobs=1, tune=None, progressbar=True,
8686
model=None, random_seed=-1):
8787
"""

0 commit comments

Comments
 (0)