edgarmtze
edgarmtze

Reputation: 25048

Implement Bayes Net

Is there any c or java example implementing Bayesian Net?

I want to solve some things but Do not where to start?.

Upvotes: 6

Views: 4740

Answers (2)

ŁukaszBachman
ŁukaszBachman

Reputation: 33735

I have been using JavaBayes with great success for my master thesis final project. Check it out under http://www.cs.cmu.edu/~javabayes/ It has a great set of examples, very decent documentation, a graphical designer and very useful API.

I remember I did a little research regarding available Bayesian Networks implementations in Java and I was pleasantly surprised when I found this library. I can strongly recommend it.

Upvotes: 4

David Weiser
David Weiser

Reputation: 5195

Use Weka. It not only implements Bayes Nets, but also a lot of other ML algorithms.

Upvotes: 5

Related Questions