-
Notifications
You must be signed in to change notification settings - Fork 49
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
Towards BayesNets 2.0 #46
Comments
Looks good to me! |
We now have a common interface for samplers:
The only function new samplers need to implement is From that we provide:
rand(bn) defaults to DirectSampler |
I introduced a new common interface for inference:
Ideally it would return a distribution over the queried variables, ie a multivariable distribution. That isn't really possible right now, so for discrete variables we are using factors (which are basically the same thing) and for continuous / hybrid we can't really do anything. |
New Inference branch. Incorporated updated (the excellent) inference methods from @hamzaelsaawy |
We dropped support for Julia 0.4, so the next release will need to increment the major tick. Thus, BayesNets v2.0.0
Before I tag a new release I would like to:
Does anyone have any additional issues to post? Things we need to clear up before moving forward?
The text was updated successfully, but these errors were encountered: