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

Merge branch 'bugfix-marginalized-pool-reconstruction' into 'master'

BUGFIX: Fix marginalized parameter reconstruction with pool

See merge request !1132
parents e9382843 c71f7e0e
No related branches found
Tags 0.5.0
1 merge request!1132BUGFIX: Fix marginalized parameter reconstruction with pool
Pipeline #439008 failed
...@@ -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