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)
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With