Skip to content

Instantly share code, notes, and snippets.

@mohdsanadzakirizvi
Created September 23, 2019 17:59
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
from sklearn.model_selection import train_test_split
# split into training and validation sets
X_tr, X_val, y_tr, y_val = train_test_split(train.clean_text, train.label, test_size=0.25, random_state=42)
print('X_tr shape:',X_tr.shape)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment