🔗 Live Demo: https://creditscorechecking-11.onrender.com/
This project predicts creditworthiness using a Logistic Regression model trained on financial data. Users can input their financial information through a web interface and receive a credit score prediction along with high-risk customer identification.
- Backend: Flask
- Machine Learning: scikit-learn, joblib
- Data Processing: pandas, numpy
- Deployment: Render
- User-friendly web interface for CSV input
- Real-time credit score prediction
- High-risk customer identification
- Model retraining capability
. ├── app.py # Flask application ├── credit_scoring.py # Model training script ├── data/ # Dataset ├── outputs/ # Model and predictions ├── requirements.txt # Project dependencies └── .gitignore # Git ignore rules
yaml Copy code
- Clone the repository
git clone https://github.com/yourusername/CreditScoreChecking.git
cd CreditScoreCheckingpython -m venv env source env/bin/activateenv\Scripts\activatepip install -r requirements.txtpython app.py-
Upload your CSV file with financial data.
-
Click Submit to generate predictions.
-
Download the predictions CSV containing:
-
predicted_class → 0 = High Risk, 1 = Low Risk
-
predicted_proba → Probability of being low-risk (if available)