No module named 'sklearn.grid_search'
时间: 2023-11-22 18:49:56 浏览: 30
找不到指定模块
这个错误通常是由于缺少scikit-learn的grid_search模块导致的。在scikit-learn 0.18版本之后,grid_search模块已被弃用,改为了model_selection模块。因此,如果你使用的是较新版本的scikit-learn,你需要将代码中的grid_search替换为model_selection。以下是两种解决方法:
1.将grid_search替换为model_selection
```python
from sklearn.model_selection import GridSearchCV
```
2.升级scikit-learn版本
```shell
pip install --upgrade scikit-learn
```
阅读全文