How to construct Bayesian belief network in java ? Is there any library ? API?

404 views Asked by At

Assume I have a dataset with 10 features and one class level. Now, I want to construct Bayesian belief network among the features. How I would be able to do that in java ?

Is there any API or machine learning library ? Any hints or any starting point will be appreciated.

1

There are 1 answers

2
Haroldo_OK On

If you don't need to be specially performant, it's possible to embed Weka on your application. You could also use its graphical inteface to conveniently test your model.

On the other hand, if you need very high performance, it may not be a good choice.