Skip to content
Snippets Groups Projects
Commit cc323c25 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Fixing dynesty pickling issue

Removes line which saves the raw dynesty output to file
parent 80f02931
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -246,7 +246,7 @@ class Dynesty(Sampler):
nested_sampler.run_nested(dlogz=self.kwargs['dlogz'])
out = nested_sampler.results
self.result.sampler_output = out
# self.result.sampler_output = out
weights = np.exp(out['logwt'] - out['logz'][-1])
self.result.samples = dynesty.utils.resample_equal(
out.samples, weights)
......
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