Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVM sklearn verbose shows only dots

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)
like image 689
tikend Avatar asked Dec 27 '25 19:12

tikend


1 Answers

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.

like image 151
lejlot Avatar answered Dec 30 '25 18:12

lejlot



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!