Deprecation warnings from sklearn

≯℡__Kan透↙ 提交于 2019-12-03 09:40:47

Problem:

The deprecation warning means that the module is deprecated, i.e. no longer supported. You are using a version for which sklearn.cross_validation is not a module any longer.

Solution:

from sklearn.model_selection import train_test_split

C/O: This post.

To avoid this, you just need to replace:

from sklearn.cross_validation import train_test_split 

by

from sklearn.model_selection import train_test_split

Reference: skLearn

Warning: 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)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!