amueller / scipy_2015_sklearn_tutorial

Scikit-Learn tutorial material for Scipy 2015
Creative Commons Zero v1.0 Universal
576 stars 311 forks source link

sklearn.cross_validation DeprecationWarning #60

Open ciach opened 7 years ago

ciach commented 7 years ago

Hi, I'm getting DeprecationWarning when executing: from sklearn.cross_validation import train_test_split

/home/user/anaconda2/envs/py35/lib/python3.5/site-packages/sklearn/cross_validation.py:44: 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. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. "This module will be removed in 0.20.", DeprecationWarning)

Solution: from sklearn.model_selection import train_test_split

amueller commented 7 years ago

Well, this is the 2015 tutorial with worked with the 2015 scikit-learn ;) There is many places that would need fixing to not raise deprecation warnings.