Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. from sklearn.model_selection import train_test_split
  2.  
  3. # Split into training and test sets
  4. X_train, X_test, y_train, y_test = train_test_split(X, Y, test_size=0.33, random_state=42)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement