I wrote following code and test it on small data:
classif = OneVsRestClassifier(svm.SVC(kernel='rbf'))
classif.fit(X, y)
Where X, y
(X - 30000x784 matrix, y - 30000x1) are numpy arrays. On small data algorithm works well and give me right results.
But I run my program about 10 hours ago... And it is still in process.
I want to know how long it will take, or it stuck in some way?
(Laptop specs 4 GB Memory, Core i5-480M)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…