Skip to content

Instantly share code, notes, and snippets.

@edunuke
Last active June 4, 2019 17:13
Show Gist options
  • Select an option

  • Save edunuke/17517bd5ff49550c6b07ef73ce0582a5 to your computer and use it in GitHub Desktop.

Select an option

Save edunuke/17517bd5ff49550c6b07ef73ce0582a5 to your computer and use it in GitHub Desktop.
# set up the input data so it can be read by the neural network
input_train = [user_train.drop(['client_id'],axis=1).values,
product_train.drop(['client_id'],axis=1).values,
risk_train.drop(['client_id'],axis=1).values]
input_val = [user_val.drop('client_id',axis=1).values,
product_val.drop(['client_id'],axis=1).values,
risk_val.drop('client_id',axis=1).values]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment