Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created September 29, 2020 09:36
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/0b768b32d90fe751ba66199f66b22db6 to your computer and use it in GitHub Desktop.
Save amankharwal/0b768b32d90fe751ba66199f66b22db6 to your computer and use it in GitHub Desktop.
x = data.loc[:, data.columns != 'auth']
y = data.loc[:, data.columns == 'auth']
x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.3, random_state=42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment