I am looking for the meaning of verbose log abbriviations of SVC function in scikit-learn?
If nSV is the number of support vectors, #iter is the number of iteration, what dose nBSV, rho,obj mean?
This is an example:
import numpy as np
from sklearn.svm import SVR
sets=np.loadtxt('data\Exp Rot.txt') # reading data
model=SVR(kernel='rbf',C=100,gamma=1,max_iter=100000,verbose=True)
model.fit(sets[:,:2],sets[:,2])
print(model.score)
and here is the result