脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - python中导入 train_test_split提示错误的解决

python中导入 train_test_split提示错误的解决

2020-06-20 10:49凤凰谷1 Python

这篇文章主要介绍了python中导入 train_test_split提示错误的解决,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧

如下所示:

python中导入 train_test_split提示错误的解决

原因:

在python3.6中sklearn已弃用train_test_split,导致导入报错

解决方式,用model_selection模块导入:

from sklearn.model_selection import train_test_split

python中导入 train_test_split提示错误的解决

经测试,在python2中也是使用该方式导入train_test_split模块

补充知识:from sklearn.model_selection import train_test_split找不到模块

解决方案:

pip uninstall numpy

pip install numpy==1.16(或pip install numpy==1.14.5)

如果提示权限不够,‘[WinError 5]拒绝访问',则需打开管理员权限

python中导入 train_test_split提示错误的解决

以上这篇python中导入 train_test_split提示错误的解决就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/u011089760/article/details/90234314

延伸 · 阅读

精彩推荐