Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clojure or Scheme bayesian classification libraries?

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

like image 678
Sean T Allen Avatar asked Jun 27 '10 16:06

Sean T Allen


3 Answers

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.

like image 156
dvogel Avatar answered Nov 16 '22 00:11

dvogel


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

like image 44
GabiMe Avatar answered Nov 16 '22 00:11

GabiMe


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).

like image 2
G__ Avatar answered Nov 16 '22 00:11

G__