📌  相关文章
📜  如何使用 scikit 在训练和测试中分发数据集 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:10.981000             🧑  作者: Mango

代码示例2
from sklearn.model_selection import train_test_split
xTrain, xTest, yTrain, yTest = train_test_split(x, y, test_size = 0.2, random_state = 0)