vecxoz / vecstack

Python package for stacking (machine learning technique)
Other
685 stars 83 forks source link

sklearn.cross_validation is deprecated #1

Closed tinhb92 closed 7 years ago

tinhb92 commented 7 years ago

sklearn.cross_validation is changed to model_selection

maybe we should update StratifiedKfold and kfold which changed their parameters to avoid any subtle bug

vecxoz commented 7 years ago

Of course this is nice idea!
I did it. I also fixed deprecated parameter name nthread for xgboost in examples.
Look at this commit.
You can reinstall package from github directly (without git and without updating dependencies):
pip install --upgrade --no-deps https://github.com/vecxoz/vecstack/archive/master.zip

tinhb92 commented 7 years ago

Awesome!