-
Notifications
You must be signed in to change notification settings - Fork 430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Combine powers with PYMC 3? #140
Comments
+10,000 As a bayesian noob the pymc API is much more approachable. It would be a huge win to embed the emcee sampler in PyMC! |
+1 :) |
Oh hai @twiecki... weren't you going to do that?? ;-) |
Well, I sorta already did ;). I'd be happy to help but probably more advising than taking the lead. I don't think it should be too hard. Mainly we need something with the same interface as the Someone interested? |
Do moves have to be proposed serially or can that part be parallelized? If I remember correctly it's serial (but groups of walkers can be split up). |
One half of walkers propose positions for other half using it's parameters and parameters of the others + some random numbers (from some specified distribution). That's the idea i suppose:) |
Ah, neat. So this could be sped up significantly by testing the proposals on the GPU (which pymc3 supports). |
I think the most heavy part it the |
FYI: pymc-devs/pymc#1689 |
Thanks @twiecki |
Both Emcee and PYMC are amazing packages with differing but somewhat overlapping utility.
Any thought of combining the two, ala: http://twiecki.github.io/blog/2013/09/23/emcee-pymc/
Would provide great synergy for bayesian analysis in python while reducing package fragmentation and perhaps be a boon to both packages.
The text was updated successfully, but these errors were encountered: