Search for libraries that implement consistent minimal optimization in C ++

I want to use SMO (Sequential Minimal Optimization) for training SVM (Vector Vector Machine). Can anyone suggest existing C ++ libraries that implement SMO?

I plan to use this to train SVM to find an object in a picture (possibly a person).

+5
source share
4 answers
  • Visit this CiteSeer page .
  • Click View or Download.
  • Copy / paste or otherwise extract the C ++ code from the implementation section (page 15).

, . , , , , , . , , .

+4

svmlight. , SMO. , Weka java- SVM SMO, . , .

!

+2
+1
source

Check out LIBSVM ( http://www.csie.ntu.edu.tw/~cjlin/libsvm/ ). I never used it with C ++, but its MATLAB hooks worked flawlessly. In addition, several articles that I met used the library as a basic comparison for their algorithmic improvements for SMO.

+1
source

All Articles