Reputation: 299
Is there any impact of number of training documents on classification time ?? I know for K-nn that all of computations in K-nn is carried out in classification while no or minimum work is done in training. Is same is the case with SVM, Naive Bayes, Decision Trees etc ?
Upvotes: 1
Views: 59
Reputation: 66805
Only lazy classifiers have such a characteristics, one of which is KNN.
Upvotes: 2