Skip to content

Instantly share code, notes, and snippets.

@Mehdi-Amine
Created November 30, 2019 23:22
Show Gist options
  • Save Mehdi-Amine/340060511c27ccf5bf6730756d993002 to your computer and use it in GitHub Desktop.
Save Mehdi-Amine/340060511c27ccf5bf6730756d993002 to your computer and use it in GitHub Desktop.
Splitting data into training and testing sets
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, random_state=42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment