Last active
June 4, 2019 17:13
-
-
Save edunuke/17517bd5ff49550c6b07ef73ce0582a5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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