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
新しいバージョンでは、これらはmodel_selection
モジュール。
これを使って:
from sklearn.model_selection import learning_curve, GridSearchCV