Reputation: 51
I want to use SMO (Sequential Minimal Optimization) in order to train an SVM (Support Vector Machine). Can anyone suggest existing C++ libraries which implement SMO?
I plan to use this to train an SVM to find an object in a picture (probably a human).
Upvotes: 5
Views: 1244
Reputation: 11
Check out LIBSVM (http://www.csie.ntu.edu.tw/~cjlin/libsvm/). I have never used it with C++, but its MATLAB hooks worked flawlessly. In addition, a few papers that I came across used the library as a baseline comparison for their algorithmic improvements to SMO.
Upvotes: 1
Reputation: 14481
You might consider Numenta http://www.vitamindinc.com They have an AI image recognition project that looks pretty good.
Upvotes: 1
Reputation: 39429
I would suggest you try svmlight. I am not sure that it implements SMO, though. I do know that Weka has a java implementation of an SVM classifier using SMO, which may also be helpful to you. It also includes many other kinds of classifiers, and it is fairly easy to use.
Удачи!
Upvotes: 2
Reputation: 25844
I suspect more careful searching might find an already built copy. I admit this code is a raw implementation and will probably need some fiddling to make it suitable for incorporation into your own software. Also, I don't know what kind of licensing applies here.
Upvotes: 4