You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest version of the emcee package (version 3.0.1) changed the output of emcee.EnsembleSampler.run_mcmc(), so the following line raises a ValueError:
pos, prob, state = sampler.run_mcmc(p0, ninit)
This can possibly simply be fixed by adding a fourth variable: pos, prob, _, state = sample.run_mcmc(p0, ninit). I haven't checked if that accounts for all possible cases.
The text was updated successfully, but these errors were encountered:
The latest version of the
emcee
package (version 3.0.1) changed the output ofemcee.EnsembleSampler.run_mcmc()
, so the following line raises a ValueError:This can possibly simply be fixed by adding a fourth variable:
pos, prob, _, state = sample.run_mcmc(p0, ninit)
. I haven't checked if that accounts for all possible cases.The text was updated successfully, but these errors were encountered: