Re: Need help to store a SVM Model

2014-02-24 Thread Marcus Lindner
Thanks, that helps a lot. :) Am 24.02.2014 20:57, schrieb r0man: In my svm-clj library I read and write the LibSVM model in a text format that LibSVM's C library also understands. That's a sparse text file you could also store in Mongo. Use or take a look at: https://github.com/r0man/svm-clj/

Re: Need help to store a SVM Model

2014-02-24 Thread r0man
In my svm-clj library I read and write the LibSVM model in a text format that LibSVM's C library also understands. That's a sparse text file you could also store in Mongo. Use or take a look at: https://github.com/r0man/svm-clj/blob/master/src/svm/core.clj#L125 Roman On Monday, February 24, 201

Need help to store a SVM Model

2014-02-24 Thread Goldritter
Hi, I wanted to use the Java library of the libsvm (http://www.csie.ntu.edu.tw/~cjlin/libsvm/) jlibsvm (http://dev.davidsoergel.com/trac/jlibsvm/) to learn a Support Vector Machine and then store the learned model into a MongoDB (used kernel, support vectors, alphas, label(s), rho, ...). A w