jakevdp / PythonDataScienceHandbook

Python Data Science Handbook: full text in Jupyter Notebooks
http://jakevdp.github.io/PythonDataScienceHandbook
MIT License
43.17k stars 17.93k forks source link

sklearn Package update #206

Open TripleRD opened 5 years ago

TripleRD commented 5 years ago
  1. 'from sklearn.decomposition import RandomizedPCA' changed to 'from sklearn.decomposition import PCA as RandomizedPCA'

  2. 'from sklearn.cross_validation import train_test_split' changed to 'from sklearn.model_selection import train_test_split'

  3. 'from sklearn.grid_search import GridSearchCV' changed to 'from sklearn.model_selection import GridSearchCV'