Skip to content

Commit 5472821

Browse files
pass on the tune argument to fix #3965
closes #3965
1 parent 0590767 commit 5472821

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/step_methods/hmc/quadpotential.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def update(self, sample, grad, tune):
307307
self._ngrads2 += 1
308308

309309
if self._n_samples <= 150:
310-
super().update(sample, grad)
310+
super().update(sample, grad, tune)
311311
else:
312312
self._update((self._ngrads1 / self._grads1) ** 2)
313313

0 commit comments

Comments
 (0)