Skip to content

Instantly share code, notes, and snippets.

@shayaf84
Last active February 19, 2022 23:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shayaf84/d10bfe6a7122c366046a09f45dca8993 to your computer and use it in GitHub Desktop.
Save shayaf84/d10bfe6a7122c366046a09f45dca8993 to your computer and use it in GitHub Desktop.
from sklearn.model_selection import train_test_split
#Split data into training and testing dataset
title_train, title_test, y_train, y_test = train_test_split(titles, labels, test_size=0.2,\
random_state=1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment