liblinear-java icon indicating copy to clipboard operation
liblinear-java copied to clipboard

Java version of LIBLINEAR

Results 7 liblinear-java issues
Sort by recently updated
recently updated
newest added

The flag_predict_probability boolean in predict is declared static. This causes a problem when running 2 different predict jobs in the same Java process with different probability options: the setting from...

I am maintaining code that I mostly didn't write which uses liblinear for logistic regression. My understanding from the documentation was that setting bias to a value greater than 0...

Hello everyone, I am currently working on a project that use your library to train classification models, I build a Problem object with sparse feature vectors (following some of your...

Hi -- I am using Weka's LibLINEAR class and want to obtain the support vectors after the classifier has been trained. Is there an example showing how this can be...

Port http://www.csie.ntu.edu.tw/~cjlin/libsvmtools/weights/liblinear-weights-1.94.zip

feature

Hello, I was looking at https://github.com/cjlin1/libsvm/issues/113 and it mentioned that `liblinear` would be able to, now I've seen that to add support for incremental training you need to use the...

This would slightly differ from the original implementation, however, if we replace all instances of `x += y * z;` with `x = Math.fma(y, z, x);` we can get a...