(已解决)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过了

(已解决)sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet._第1张图片

问题是出在返回值上,我返回的是没有fit的线性模型 

(已解决)sklearn.exceptions.NotFittedError: This RandomForestRegressor instance is not fitted yet._第2张图片

把第二个regressor改成gs就好了~

你可能感兴趣的:(机器学习与数据挖掘,sklearn,python,机器学习)