ValueError: Classification metrics can‘t handle a mix of binary and continuous targets

文章目录

      • 先给解决方法:
      • 现在给报错背景:
      • 原因探索:


先给解决方法:

原先的代码:

f.values.astype(float)
X = f.iloc[:,:-1]
y = f.iloc[:,-1]
#此处省略部分代码
from sklearn import metrics
print(metrics.classification_report(y,predict_y))
print('Confusion matrix:\n',metrics.confusion_matrix(y,predict_y))

修改后:

 #单纯删去了原先语句的第一行,并修改第三行
X = f.iloc[:,:-1]
y = f.iloc[:,-1].values.astype(int)   #astpye设置为float也可行

如上修改后就成功出现了想要的结果:
备注:使用源代码的话,不管是调用函数metrics.classification_report还是metrics.confusion_matrix都会报错
ValueError: Classification metrics can‘t handle a mix of binary and continuous targets_第1张图片

现在给报错背景:

在训练完决策树分类器后,想看一下分类性能报告和混淆矩阵,结果报错ValueError: Classification metrics can‘t handle a mix of binary and continuous targets

原因探索:

参考sklearn官网关于函数metrics.classification_report的说明:

sklearn.metrics.confusion_matrix(y_true,y_pred,*,labels=None,sample_weight=None,normalize=None)
y_true:array-like of shape (n_samples,)
y_pred:array-like of shape (n_samples,)

xs探索了个寂寞出来
如果有大佬知道为什么采用原语句会报错的话,欢迎在评论区留言,万分感谢!

你可能感兴趣的:(debug,python)