-
-
Notifications
You must be signed in to change notification settings - Fork 113
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
[WIP] Add discrete/continuous support+more samplers #229
Conversation
Check out this pull request on You'll be able to see Jupyter notebook diff and discuss changes. Powered by ReviewNB. |
There are some problems with sampling discrete distributions with |
@junpenglao can you please provide some feedback on the issues #233, I've implemented the sampling of the models with categorical distribution (with support of Also tests are not passing because of the notebooks, now they should be edited too, but it is going to be messy here. |
Sorry for some notebooks edited, tests do not pass without it. There are also some issues with notebook testing, the radon notebook doesn't work on my local machine. |
So basically, I had two ways of designing sampler methods. This PR implementation is similar to For now there is a lack of support for clever |
I assume |
addr #187 #171
PR should include:
auto_assign_method
based on a set of certain criterias (like inpymc3
)Current user design of compound step for user looks like this:
There is currently support for categorical distribution mcmc sampling with custom state function, implemented in
pymc4/distributions/state_functions.py
, but more distributions should be tested and supported.