Skip to content

Commit 208aa79

Browse files
fonnesbecktwiecki
authored andcommitted
Reverted function in delta_logp to not accept mode argument
1 parent fbd1d5b commit 208aa79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/step_methods/metropolis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,6 @@ def delta_logp(logp, vars, shared):
433433

434434
logp1 = pm.CallableTensor(logp0)(inarray1)
435435

436-
f = theano.function([inarray1, inarray0], logp1 - logp0, mode=self.mode)
436+
f = theano.function([inarray1, inarray0], logp1 - logp0)
437437
f.trust_input = True
438438
return f

0 commit comments

Comments
 (0)