How to add more data to an already trained SVM?
I'm experimenting with the SVM shown as an example in the opencv docs.
I'm experimenting with the SVM shown as an example in the opencv docs.
Asked: 2016-04-14 14:44:22 -0600
Seen: 154 times
Last updated: Apr 14 '16
Custom HOGDetector using CvSVM and HOG features.
How to detect object from video using SVM
ML - Exception in CvSVM::predict when using NU_SVC as type
How to establish data base for object detection?
svm train method segmantation fault problem
CvSVM::EPS_SVR train_auto assertion sv_count != 0 failed
Question regarding feeding extracted HoG features into CvSVM's train
no, you can't "update" an SVM, you'll have to keep your original training data around, append your new data, and retrain the whole thing
what was your original decision, to use an SVM here ? with an ANN_MLP, it would be possible, just to add new data.