成功解决ValueError: Supported target types are:('binary', 'multiclass'). Got 'continuous' instead.
成功解决ValueError: Supported target types are: ('binary', 'multiclass'). Got 'continuous' instead.
解决问题
问题背景如下:
SKFold = StratifiedKFold(n_splits=cv_i,shuffle=True,random_state=123)
解决思路
值错误:支持的目标类型为:('binary', 'multiclass'),需要用“continuous”替代。
解决方法
stratify只处理分类任务问题,对于回归任务,采用以下问题解决
将
from sklearn.model_selection import KFold,StratifiedKFold n_SKFold = StratifiedKFold(n_splits=cv_i,shuffle=True,random_state=123)
替换为
from sklearn.model_selection import KFold,StratifiedKFold n_SKFold = KFold(n_splits=n_folds ,shuffle=True,random_state=123)
哈哈,大功告成!
到此这篇关于成功解决ValueError: Supported target types are: (‘binary‘, ‘multiclass‘). Got ‘continuous‘ instead.的文章就介绍到这了,更多相关Supported target types are内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
Python基于matplotlib画箱体图检验异常值操作示例【附xls数据文件下载】
这篇文章主要介绍了Python基于matplotlib画箱体图检验异常值操作,涉及Python针对xls格式数据文件的读取、matplotlib图形绘制等相关操作技巧,并附带xls数据文件供读者下载参考,需要的朋友可以参考下2019-01-01
最新评论