jlibsvm icon indicating copy to clipboard operation
jlibsvm copied to clipboard

Efficient training of Support Vector Machines in Java

Results 15 jlibsvm issues
Sort by recently updated
recently updated
newest added

[![mitm_build](https://user-images.githubusercontent.com/1323708/59226671-90645200-8ba1-11e9-8ab3-39292bef99e9.jpeg)](https://medium.com/@jonathan.leitschuh/want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-1fc329d898fb?source=friends_link&sk=3c99970c55a899ad9ef41f126efcde0e) - [Want to take over the Java ecosystem? All you need is a MITM!](https://medium.com/@jonathan.leitschuh/want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-1fc329d898fb?source=friends_link&sk=3c99970c55a899ad9ef41f126efcde0e) - [Update: Want to take over the Java ecosystem? All you need is a MITM!](https://medium.com/bugbountywriteup/update-want-to-take-over-the-java-ecosystem-all-you-need-is-a-mitm-d069d253fe23?source=friends_link&sk=8c8e52a7d57b98d0b7e541665688b454)...

The following is the trace of the error: ``` Exception in thread "main" sun.reflect.generics.reflectiveObjects.NotImplementedException at edu.berkeley.compbio.jlibsvm.SolutionModel.writeToStream(SolutionModel.java:109) at edu.berkeley.compbio.jlibsvm.binary.AlphaModel.writeToStream(AlphaModel.java:140) at edu.berkeley.compbio.jlibsvm.binary.BinaryModel.writeToStream(BinaryModel.java:287) at edu.berkeley.compbio.jlibsvm.SolutionModel.save(SolutionModel.java:96) at Trainer.run(Trainer.java:66) at detectSpoof.main(detectSpoof.java:67) ``` Any help or...

Heya, thanks for doing the refactor work on libsvm! It'll come in handy for my project. I thought I'd post up the gradle equivalent of your pom repo declarations for...

In `MultiClassificationSVM::trainWithoutScaling` there are parallel tasks spawned using Parallel.forEach . This restults in non-deterministic classification results. Serializing this fixes the problem. The reason is that somehow the SVMs size is...

I think the repositories and dependencies you supplied are no longer working.

Hey there, I've been trying to implement this library and also to use the provided svm_train and svm_predict methods, but it's not working. The training seems to work out, I'm...

Hello, I am trying to understand how jlibsvm works. From the source code, I understand that L refers to label (e.g. of type `String`), while P refers to the feature...

Hi developers, I am trying to run jlibsvm using the legacyexec programs svm_train and svm_predict. I have successfully run svm_train and produced a model file. Then, I provided this model...

Using the legacyexec svm_train command with the next command : ``` ... edu.berkeley.compbio.jlibsvm.legacyexec.svm_train -c 100000 -w0 0.427 -w1 0.012 ``` and a set of scores (see attached file labels.txt) I...