美文网首页
python报警告--DeprecationWarning

python报警告--DeprecationWarning

作者: Echoooo_o | 来源:发表于2018-12-26 09:40 被阅读0次

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)

解决办法:将“from sklearn.cross_validation import train_test_split” 改为“from sklearn.model_selection import train_test_split”

相关文章

网友评论

      本文标题:python报警告--DeprecationWarning

      本文链接:https://www.haomeiwen.com/subject/vcxyoftx.html