This is the implementation of the paper "Which attributes matter the most for loan origination? A neural attention approach". The paper was published in the Robust AI for Financial Services workshop in NeurIPS 2019. You can find the paper here.
The data were from Home Mortgage Disclosure Act(HMDA), which you can find here. More specificallly we chose the "HDMA Washington State Home Loans, 2016".
Also you can read on the paper, that I made some simple preprocessing on the data, which are not included in this repository.
- main_code.ipynb: this is the main code with the Encoder Decoder with neural attention model.
- simple_nn.ipynb: this is the file that has the implementation of a simple NN with the data.
- basic_ml_methods: in this file you can find simple implenetations of some basic ML methods that we used for comparison