Created
April 18, 2021 18:12
-
-
Save AyishaR/06e4e79db15388cb67411e1a4b38bf24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Splitting into train, val and test set -- 80-10-10 split | |
# First, an 80-20 split | |
Xtrain, Xvaltest, ytrain, yvaltest = train_test_split(X, y, test_size = 0.2) | |
# Then split the 20% into half | |
Xval, Xtest, yval, ytest = train_test_split(Xvaltest, yvaltest, test_size = 0.5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment