jude
jude

Reputation: 360

How to continue training svm and knn in scikit-learn?

after training since it cost a lot of time is there a way for me to continue my training and add samples using nusvc() and nearestneighbor() in scikitlearn?

Upvotes: 2

Views: 3142

Answers (1)

neelshiv
neelshiv

Reputation: 6385

For the SVM, you might be able to use the online learning abilities of the SGDClassifier class. To do so, you would need to use the partial_fit() function.

Upvotes: 3

Related Questions