web-dev-qa-db-ja.com

ImportError:grid_search、learning_curveという名前のモジュールはありません

Scikit Learnの問題l Sklearnおよびsklearn.grid_searchのlearning_curveを使用できません。

Lを実行するとimport sklearn(機能します)from sklearn.cluster import bicluster(機能します)。 scikit-learnを再インストールしようとしても、同じ問題が残ります。 python 3.5.6、Scikit-learnバージョン0.20.0 Window 10を使用しています。

 import sklearn
 from sklearn.model_selection import StratifiedKFold, cross_val_score, 
 train_test_split 
 from sklearn.grid_search import GridSearchCV
 from sklearn.learning_curve import learning_curve
17
Andy Hui

新しいバージョンでは、これらはmodel_selectionモジュール。

これを使って:

from sklearn.model_selection import learning_curve, GridSearchCV
25
makis