試圖使用SVC
從sklearn
做一個分類問題。考慮到大量的數據和信息,這些信息告訴我某個課程是否屬於某個班級,我希望能夠給出一個新的未知科目在班級中的概率。預測概率
我只有2個類,所以問題是二元的。這裏是我的代碼和我的一些錯誤
from sklearn.svm import SVC
clf=SVC()
clf=clf.fit(X,Y)
SVC(probability=True)
print clf.predict_proba(W) #Error is here
,但它返回以下錯誤:
NotImplementedError: probability estimates must be enabled to use this method
我怎樣才能解決這個問題?
這看起來像一個[臭蟲(https://github.com/scikit-learn/scikit-learn/issues/1946) – moenad