|
Are there any tools for incremental training of svm models? It means that I need to continuously modify a model without complete retraining (or at least optimized retraining). I have found some articles that states a possibility of such an algorithm. Still I didn't find any implementations. Thanks! |
|
If the kernel is linear (i.e. no kernel) then Stochastic Gradient Descent will work (e.g. SGDClassifier in scikit-learn using the Thanks Olivier. I'm using linear kernel. I wanted to try scikit-learn before. Maybe that's a good time to start. I wonder if its performance (classification speed) comparable to libsvm/liblinear? I'll take a look at LaSVM as well.
(Feb 14 at 05:11)
Konstantin
scikit-learn wraps libsvm in
(Feb 14 at 05:16)
ogrisel
Got it, thanks.
(Feb 14 at 21:16)
Konstantin
|
|
If you have very large scale data, vowpal wabbit can minimize the hinge loss with stochastic gradient descent. Interesting, thanks. Though the project's wiki is not really verbose and it seems I didn't get that active learning concept. Could you point me to some papers describing it? I would be much obliged.
(Feb 14 at 22:02)
Konstantin
A good reference on active learning (that does not include the techniques in vowpal wabbit) is the following tutorial: http://hunch.net/~active_learning/
(Feb 14 at 22:04)
Alexandre Passos ♦
thanks, i'll take a look
(Feb 15 at 02:34)
Konstantin
|