Skip to content
Snippets Groups Projects
Commit c71f7e0e authored by Colm Talbot's avatar Colm Talbot
Browse files

BUGFIX: Fix marginalized parameter reconstruction with pool

parent 602eaa64
No related branches found
No related tags found
1 merge request!1132BUGFIX: Fix marginalized parameter reconstruction with pool
...@@ -1566,4 +1566,4 @@ def fill_sample(args): ...@@ -1566,4 +1566,4 @@ def fill_sample(args):
sample = dict(sample).copy() sample = dict(sample).copy()
likelihood.parameters.update(dict(sample).copy()) likelihood.parameters.update(dict(sample).copy())
new_sample = likelihood.generate_posterior_sample_from_marginalized_likelihood() new_sample = likelihood.generate_posterior_sample_from_marginalized_likelihood()
return (new_sample[key] for key in marginalized_parameters) return tuple((new_sample[key] for key in marginalized_parameters))
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