Problem with scikit learn: I can't use learning_curve
of sklearn.
When I do: import sklearn
(it works), from sklearn.cluster import bicluster
(it works), from sklearn import cross_validation
(it works)... and so on. The only file that doesn't work is learning_curve
,namely from sklearn.learning_curve import learning_curve
(doesn't work).
Two types of error to consider:
from sklearn import learning_curve
Traceback (most recent call last): File "", line 1, in ImportError: cannot import name learning_curve
from sklearn.learning_curve import learning_curve
Traceback (most recent call last): File "", line 1, in ImportError: No module named learning_curve
Any clue?