Created
April 4, 2018 15:04
-
-
Save mempirate/0d05774911a690fe96b4e4409e85a9d2 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
# Dividing data up into training sets and test sets | |
from sklearn.model_selection import train_test_split | |
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 1/3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment