Answers for "how to distribute test and train dataset in python"

1

how to distribute a dataset in train and test using scikit

from sklearn.model_selection import train_test_split
xTrain, xTest, yTrain, yTest = train_test_split(x, y, test_size = 0.2, random_state = 0)
Posted by: Guest on June-22-2020

Code answers related to "how to distribute test and train dataset in python"

Python Answers by Framework

Browse Popular Code Answers by Language