libsvm icon indicating copy to clipboard operation
libsvm copied to clipboard

LIBSVM -- A Library for Support Vector Machines

Results 103 libsvm issues
Sort by recently updated
recently updated
newest added

Hi Everyone, I wanna call the libsvm function in a mex file from windows folder. I have add the mex file path but the function still got an error when...

Fixes #80 This PR replaces `long int` with `long long` to support cache_size>2000. Also, mentioned at scikit-learn/scikit-learn#8012

When I train a **nu**-SVC in Octave with the command `model = svmtrain(ytrain, Xtrain_norm, '-s 1 -t 2');` I get this output `*` `optimization finished, #iter = 570` `C =...

Noticed this while using libSVM in sklearn - training an SVM when cache_size > 2000 or so on large problems does not seem to lead to any benefit/speed up. Looking...

- learning now uses both positive and negaive examples - array y should contain +1s for positive examples and -1s for negative - based on the "One-class classification" thesis written...

Hello, everyone. I want to ask something. Can i use libsvm in apache hadoop ? Is it work with map reduce programming model in hadoop ?

svm.svm_load_model returned null when given a non valid file, make more sense to throw an exception instead (now throws IOException). Added svm_print_err_string that works the same way as svm_print_string in...

Someone tell me how to translate the source code in the same libsvm MathCAD?

I want to manage a model database without using temporary files. For this, I propose an API extension: ``` int svm_save_model_buffer(const char *model_buffer, int buffer_length, const struct svm_model *model); struct...

Please support max_iter like scikit-learn version of libsvm. https://github.com/scikit-learn/scikit-learn/blob/4e2960df249ef9e27fc8dda787a9f4a6d82b1b42/sklearn/svm/src/libsvm/svm.cpp#L644