Skip to content
Snippets Groups Projects
Commit a4467c22 authored by Rhys Green's avatar Rhys Green
Browse files

fixing bug from mr - changing curemthod to curmethod

parent 1512c99c
No related branches found
No related tags found
1 merge request!299Fixing some argument bugs in pymc3.py.
......@@ -448,7 +448,7 @@ class Pymc3(MCMCSampler):
args = {}
else:
if step_kwargs is not None:
args = step_kwargs.get('curmethod', {})
args = step_kwargs.get(curmethod, {})
else:
args = {}
self.kwargs['step'].append(pymc3.__dict__[step_methods[curmethod]](vars=[self.pymc3_priors[key]], **args))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment