开发者

成功解决ValueError: Supported target types are:('binary', 'multiclass'). Got 'c

开发者 https://www.devze.com 2023-03-02 09:20 出处:网络 作者: 一个处女座的程序猿
目录解决问题解决思路解决方法成功解决ValueError: Supported target types are: 开发者_Python入门('binary', 'multiclass'). Got 'continuous' instead.
目录
  • 解决问题
  • 解决思路
  • 解决方法

成功解决ValueError: Supported target types are: 开发者_Python入门('binary', 'multiclass'). Got 'continuous' instead.

解编程决问题

问题背景如下:

SKFold = StratifiedKFold(n_splits=cv_i,shuffle=True,random_state=123)

解决思路

值错误:支持的目标类型为:('binary', 'multiclass'),需要用“continuous”替代。

解决方法

stratify只处理分类任务问题,对于回归任务,采用以下问题解决

from sklearn.modelhttp://www.devze.com_selection import KFold,StratifiedKFold
n_SKFold = StratifiedKFold(n_splits=cv_i,shuffle=True,random_state=123)

替换为

from sklear编程客栈n.model_selection import KFold,StratifiedKFold
n_SKFold = KFold(n_splithttp://www.devze.coms=n_folds ,shuffle=True,random_state=123)

哈哈,大功告成!

到此这篇关于成功解决ValueError: Supported target types are编程客栈: (‘binary‘, ‘multiclass‘). Got ‘continuous‘ instead.的文章就介绍到这了,更多相关Supported target types are内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号