I wrote following code and test it on small data:
classif = OneVsRestClassifier(svm.SVC(kernel=\'rbf\'))
classif.fit(X, y)
Where X, y
SVM training can be arbitrary long, this depends on dozens of parameters:
C
parameter - greater the missclassification penalty, slower the processin general, basic SMO algorithm is O(n^3)
, so in case of 30 000
datapoints it has to run number of operations proportional to the2 700 000 000 000
which is realy huge number. What are your options?
C
parameter