├── Churn_Modelling.csv ├── LICENSE ├── README.md ├── app.py ├── experiments.ipynb ├── label_encoder_gender.pkl ├── model.h5 ├── onehot_encoder_geo.pkl ├── prediction.ipynb ├── requirements.txt └── scaler.pkl /Churn_Modelling.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/Churn_Modelling.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ANN-CLassification-Churn -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/app.py -------------------------------------------------------------------------------- /experiments.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/experiments.ipynb -------------------------------------------------------------------------------- /label_encoder_gender.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/label_encoder_gender.pkl -------------------------------------------------------------------------------- /model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/model.h5 -------------------------------------------------------------------------------- /onehot_encoder_geo.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/onehot_encoder_geo.pkl -------------------------------------------------------------------------------- /prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/prediction.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/requirements.txt -------------------------------------------------------------------------------- /scaler.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krishnaik06/ANN-CLassification-Churn/HEAD/scaler.pkl --------------------------------------------------------------------------------