Reputation: 205
I use sklearn SVM with poly kernel and want to show progress or estimate the remaining time. I found verbose option, but this only results into lots of dots in terminal. Is this normal? And is there possibility to show progress or estimate remaining time?
svr_poly = svm.SVC(kernel='poly', verbose=True)
Upvotes: 3
Views: 3762
Reputation: 66835
No, there is no way to show estimation of the remaining time, as during numerical optimization it is impossible to get such information. Verbosity of libsvm (used by sklearn) only shows you progress in terms of iterations (each dot) and finally - with the optimization results.
Upvotes: 4