标签: python scikit-learn
我需要使模型对返回的答案充满信心,因为有时概率看起来很奇怪。
我使用
d = clf.decision_function(s)[0] probs = np.exp(d) / (1 + np.exp(d))
获得每个班级的概率。
有什么办法可以使RidgeClassifier充满信心?
RidgeClassifier