Any pointers to scheme/racket or clojure bayesian classification libraries? I need one for a toy/learning project that I'm going to do.

link|improve this question

80% accept rate
2  
A huge part of the value of Clojure is that it can use any Java library. So don't restrict yourself from searching in the Java only world. – Allen Jun 28 '10 at 23:07
feedback

4 Answers

up vote 5 down vote accepted

For clojure there is Incanter. It's more than just a bayes library. It is more akin to R. The documentation has two sections about it's bayes capabilities: 1, 2.

link|improve this answer
feedback

Weka is kind of classic. It is a Java lib, so it can be accessed from Clojure

link|improve this answer
feedback

If you use Clojure, you have full access to Java libraries. Classifier4J seems to be a good fit, although development stopped several years ago. You should be able to find several more if you dig through Sourceforge (not sure what your specific requirements are).

link|improve this answer
feedback

There's also https://github.com/psantacl/naive-bayes-clj

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.