from sklearn.grid_search import GridSearchCV 报错No module named 'sklearn.grid_search'问题解决
原因是:
DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. This module will be removed in 0.20.
sklearn.grid_search在版本0.18就被弃用了,版本0.2用sklearn.model_selection模块代替,from sklearn.model_selection import GridSearchCV 就对了