I saw this question about improving SVM speed. The RandomForestClassifier
works amazingly fast (~140 seconds on dataset of 50000 32X32 RGB images. Just to compare, with regular SVC it took me ~140 for 2500 !! images).
The problem with it is, that it has sub-optimal accuracy (<40% where the regular SVM with much less samples gave 50%). Is it possible to use it with linear / polynomial kernel like the regular SVC(C = 0.01, kernel='poly', degree = 3)
)?