🚀 The Simple Churn Predictor is a Python-based web application that predicts customer churn for businesses. It allows users to input customer data and provides a prediction of whether a customer is likely to leave, helping companies make data-driven retention decisions.
- Upload CSV with
Tenure, Balance, Transactions, Complaints - Logistic Regression model predicts churn (0 = Stay, 1 = Leave)
- Results displayed in a clean HTML table
- Clone the repo
- Install requirements:
pip install -r requirements.txt - Train model:
python train_model.py - Run app:
python app.py - Open browser at
http://127.0.0.1:5000
Tenure,Balance,Transactions,Complaints
12,5000,45,0
3,1000,10,2- Add more ML models
- Add visualization (charts)
- Deploy on cloud
- API endpoint for predictions