gpt4 book ai didi

Python错误: cannot import name cross_validation

转载 作者:行者123 更新时间:2023-12-01 00:56:45 28 4
gpt4 key购买 nike

我尝试在 python 2 中使用以下语句导入 cross_validation

from sklearn import cross_validation

但我收到以下错误

cannot import name cross_validation

最佳答案

cross_validation 在 SKlearn 0.20 中被删除。您现在可以将其导入为,

from sklearn.model_selection import cross_validate

基本上所有交叉验证相关的函数都被移到了 SKlearn 中的 model_selection 下。

编辑:

导入train_test_split,

从 sklearn.model_selection 导入 train_test_split

X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)

关于Python错误: cannot import name cross_validation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56186775/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com