Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created December 8, 2020 08:11
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 amankharwal/f0e4166d32ecfed3d054860f509c291f to your computer and use it in GitHub Desktop.
Save amankharwal/f0e4166d32ecfed3d054860f509c291f to your computer and use it in GitHub Desktop.
X, y = lines['english_sentence'], lines['hindi_sentence']
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2,random_state=42)
X_train.to_pickle('X_train.pkl')
X_test.to_pickle('X_test.pkl')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment