AttributeError: 'GridSearchCV' object has no attribute 'feature_importances_'
时间: 2024-05-02 20:15:41 浏览: 188
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
`GridSearchCV`对象是一个调参工具,它并没有`feature_importances_`属性。如果你想获取特征重要性的话,可以在使用`GridSearchCV`时传递一个带有`feature_importances_`属性的模型,并在搜索完毕后使用最佳模型来获取特征重要性。例如,如果你使用了随机森林模型进行网格搜索,可以在搜索结束后使用最佳随机森林模型来获取特征重要性。
阅读全文