(已解决)sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet.
Posted CSU迦叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了(已解决)sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet.相关的知识,希望对你有一定的参考价值。
用随机森林线性回归,加上网格搜索交叉验证以后就出现了以下报错
sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator.
大意是模型没和数据fit
但是我观察了一下自己的模型训练模块,明明fit过了
问题是出在返回值上,我返回的是没有fit的线性模型
把第二个regressor改成gs就好了~
以上是关于(已解决)sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet.的主要内容,如果未能解决你的问题,请参考以下文章