This is just the simple implementation of Artificial Neural Network classification on customer will LEAVE (1) the bank or NOT LEAVE (0).
The dataset is provided in the repository as csv
file.
The features in the dataset -
- RowNumber
- CustomerId
- Surname
- CreditScore
- Geography
- Gender
- Age
- Tenure
- Balance
- NumOfProducts
- HasCrCard
- IsActiveMember
- EstimatedSalary
- Exited
- We used 3-Lyer ANN architecutrue with with
units=6
andactivation='relu'
.
The confusion matrix and accuracy score is as follow:
- Actual Leave & Predicted Leave -> 1534
- Actual Leave & Predicted not Leave -> 66
- Actual not Leave & Predicted Leave -> 224
- Actual not Leave & Predicted not Leave -> 176
- Need to improve the accuracy score