Created
June 20, 2017 17:48
-
-
Save FranciscusRenatus/5ef1d2ef0b04ebd679b51c4ad574987f 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 the dataset into train and test set | |
from sklearn.cross_validation import train_test_split | |
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, random_state = 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment