Skip to content

Instantly share code, notes, and snippets.

@mempirate
Created April 4, 2018 15:04
Show Gist options
  • Save mempirate/0d05774911a690fe96b4e4409e85a9d2 to your computer and use it in GitHub Desktop.
Save mempirate/0d05774911a690fe96b4e4409e85a9d2 to your computer and use it in GitHub Desktop.
# 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