Trying to use SVC from sklearn to do a classification problem. Given a bunch of data, and information telling me whether some subject is in a certa
SVC
sklearn
Always set the parameters before fit.
from sklearn.svm import SVC clf=SVC(probability=True) clf=clf.fit(X,Y) print clf.predict_proba(W)