Spaces:
Configuration error
π³ Credit Invisibility Solver
Explainable Credit Risk Modeling with Alternative Data, NLP Embeddings & Concept Drift Detection
Problem Statement
1.7 billion adults worldwide are credit-invisible β they have no formal credit history, locking them out of loans, insurance, and financial services. Traditional credit scoring relies on bureau data that simply doesn't exist for these populations.
This project builds an end-to-end ML pipeline that:
- Engineers 200+ features from 7 relational tables (Home Credit Default Risk dataset)
- Fuses tabular + NLP signals using Sentence-BERT embeddings of synthesized financial narratives
- Trains an optimized LightGBM + XGBoost ensemble with Optuna hyperparameter tuning
- Explains every prediction with SHAP (beeswarm, waterfall, dependence plots)
- Detects concept drift in real-time using River's ADWIN detector
- Deploys as an interactive Streamlit dashboard for instant credit scoring
ποΈ Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β 7 Raw Tables (Home Credit) β
β application_train/test β bureau β prev_app β installments β ... β
ββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
ββββββββββββΌβββββββββββ ββββββββββββββββββββββββ
β Feature Engineering β β NLP Pipeline β
β β’ Bureau aggregates β β β’ Financial narrative β
β β’ Prev app signals β β synthesis β
β β’ Installment β β β’ Sentence-BERT β
β behaviour β β encoding β
β β’ POS Cash / CC β β β’ PCA β 32 dims β
β β’ Domain ratios β ββββββββββββ¬ββββββββββββββ
ββββββββββββ¬βββββββββββ β
β ββββββββββββββββββ
βΌ βΌ
ββββββββββββββββββββββββββββ
β Merged Feature Matrix β
β 207 features total β
β (175 tabular + 32 NLP) β
ββββββββββββ¬ββββββββββββββββ
β
ββββββββββββΌβββββββββββ
β Optuna HPO β
β 80 trials each β
β TPE + MedianPruner β
ββββββββββββ¬ββββββββββββ
β
ββββββββββββΌβββββββββββββββββββββββ
β Ensemble: 0.6ΓLightGBM + 0.4ΓXGBoost β
β 5-Fold Stratified CV β
β + Logistic Regression Blending β
ββββββββββββ¬βββββββββββββββββββββββββββββββ
β
ββββββββββββΌβββββββββββ ββββββββββββββββββββββββ
β SHAP Explainability β β River ADWIN Drift β
β β’ TreeExplainer β β β’ Online learning β
β β’ Beeswarm / Bar β β β’ Auto-retrain β
β β’ Waterfall β β β’ Drift simulation β
ββββββββββββββββββββββββ ββββββββββββββββββββββββ
β
ββββββββββββΌβββββββββββ
β Streamlit Dashboard β
β β’ Live scoring β
β β’ SHAP per applicant β
β β’ Drift sensitivity β
βββββββββββββββββββββββββ
Streamlit Dashboard
Score Breakdown β Gauge Chart + Risk Factor Radar
SHAP Explainability β Top 15 Feature Contributions
Drift Simulation β Income Shock Sensitivity
Feature Profile β Applicant Summary Table
Project Structure
βββ notebook.ipynb β Kaggle training notebook (18 cells)
βββ streamlit_app.py β Interactive deployment dashboard
βββ src/
β βββ feature_engineering.py β 7-table feature pipeline
β βββ drift_detector.py β ADWIN/KSWIN drift detection + River online learner
β βββ nlp_features.py β Sentence-BERT embedding pipeline
βββ models/ β Saved model artifacts
β βββ lgbm_fold_{1-5}.txt β 5 LightGBM fold models
β βββ xgb_fold_{1-5}.json β 5 XGBoost fold models
β βββ pca.pkl β Fitted PCA for NLP embeddings
β βββ scaler.pkl β Fitted StandardScaler
β βββ feature_cols.json β 207 feature column names
βββ kaggle_output/ β Full Kaggle run artifacts (plots, submission, logs)
βββ requirements.txt
βββ README.md
EDA & Training Results
Exploratory Data Analysis
Key findings:
- 91.9% non-default vs 8.1% default β severe class imbalance (11.4:1 ratio)
- Income distributions overlap heavily between defaulters and non-defaulters
- Age is weakly predictive β younger applicants default slightly more
- Occupation type shows strong signal (Laborers, Drivers have highest default rates)
- 40%+ missing values in housing and employment-related columns
SHAP Feature Importance
Global Feature Importance (Mean |SHAP|)
Top predictive features: EXT_SOURCE_MEAN, EXT_SOURCE_2, DAYS_BIRTH (age), CREDIT_INCOME_RATIO, and DAYS_EMPLOYED dominate the model's decisions.
SHAP Beeswarm β Per-Feature Impact Distribution
Each dot represents one applicant. Red = high feature value, Blue = low. Features like EXT_SOURCE_MEAN show a clear trend: higher external scores β lower default risk.
SHAP Dependence Plots β Top 3 Features
Non-linear relationships revealed by SHAP dependence: external scores have diminishing returns beyond 0.7, and credit-to-income ratio inflects sharply above 3x.
SHAP Waterfall β Highest-Risk Applicant
Per-applicant explanation showing exactly how each feature pushed the prediction above/below the base rate. This is the core of the "explainability" promise.
Concept Drift Simulation
Batch Drift Scenarios
Simulated economic shocks (income reduction, mass job loss) show model AUC degradation. Under a 60% income shock, AUC drops significantly, validating the need for drift detection.
River ADWIN Online Drift Detection
The ADWIN detector correctly identifies the injected concept drift at sample ~185k. The adaptive Hoeffding Tree auto-retrains on detection, showing the cumulative drift event count.
Feature Engineering Pipeline
7 Source Tables β 207 Features
| Source Table | Features | Key Signals |
|---|---|---|
| Application | Domain ratios, external scores, age/employment, document flags | CREDIT_INCOME_RATIO, EXT_SOURCE_MEAN, AGE_YEARS |
| Bureau | Credit history aggregates, DPD rates, utilization | BUREAU_DEBT_CREDIT_RATIO_MAX, BUREAU_ACTIVE_COUNT |
| Previous Apps | Approval/refusal rates, application patterns | PREV_APPROVED_RATE, PREV_APP_CREDIT_RATIO_MEAN |
| Installments | Payment behaviour, late/short payment rates | INST_LATE_PAYMENT_RATE, INST_PAYMENT_DIFF_MEAN |
| POS Cash | Point-of-sale DPD patterns | POS_DPD_RATE, POS_SK_DPD_MAX |
| Credit Card | Utilization rates, drawing behaviour | CC_UTIL_RATE_MEAN, CC_DRAWING_RATE_MEAN |
| NLP Embeddings | Sentence-BERT + PCA (32 dims) | NLP_EMB_0 through NLP_EMB_31 |
NLP Feature Pipeline
Financial narratives are synthesized from tabular signals (in production, these would come from real user survey text, app usage data, or financial literacy assessments):
"Applicant aged 35 years with annual income of 250000 currency units.
Requesting credit of 500000 for personal needs. Employed for 5.0 years.
Client demonstrates moderate financial awareness with occasional late payments.
External credit assessment score: 0.55. Owns property which serves as collateral."
These are encoded with Sentence-BERT (all-MiniLM-L6-v2) and reduced to 32 dimensions via PCA, capturing semantic credit signals.
Model Training
Ensemble Strategy
| Component | Method | OOF AUC |
|---|---|---|
| LightGBM | 5-fold CV, Optuna-tuned (80 trials) | ~0.78 |
| XGBoost | 5-fold CV, Optuna-tuned (80 trials) | ~0.77 |
| Ensemble | 0.6ΓLGBM + 0.4ΓXGB weighted blend | ~0.79 |
Blending with Logistic Regression
The ensemble uses a fixed 60/40 weighted average of LightGBM and XGBoost OOF predictions. In an extended pipeline, a Logistic Regression meta-learner can be stacked on top of the base model predictions:
from sklearn.linear_model import LogisticRegression
# Stack OOF predictions as meta-features
meta_X = np.column_stack([oof_lgbm, oof_xgb])
meta_lr = LogisticRegression(C=1.0)
meta_lr.fit(meta_X, y)
# Final blend = LR(lgbm_pred, xgb_pred)
test_blend = meta_lr.predict_proba(np.column_stack([test_lgbm, test_xgb]))[:, 1]
This learns the optimal blending weights from data rather than using fixed 60/40.
Optuna Hyperparameter Optimization
- Sampler: TPE (Tree-Structured Parzen Estimator)
- Pruner: MedianPruner with 10 warmup steps β kills bad trials early
- Search space:
num_leaves,learning_rate,feature_fraction,bagging_fraction,reg_alpha/lambda,max_depth,min_gain_to_split
Concept Drift Detection
Why Drift Matters
Credit models degrade over time as economic conditions change. A model trained on pre-pandemic data won't perform well during a recession. This project implements:
- Batch drift simulation β apply synthetic income shocks (30-70% reduction) and measure AUC degradation
- Online drift detection β River's ADWIN detector monitors the prediction error stream in real-time
- Auto-retrain β when ADWIN fires, the Hoeffding Adaptive Tree resets with a faster learning rate
River Pipeline
# Online pipeline: StandardScaler β Hoeffding Adaptive Tree
pipeline = StandardScaler() | HoeffdingAdaptiveTreeClassifier(grace_period=200)
# ADWIN monitors error stream
adwin = ADWIN(delta=0.002) # lower delta = more sensitive
# On drift detection β rebuild pipeline with faster adaptation
if adwin.drift_detected:
pipeline = StandardScaler() | HoeffdingAdaptiveTreeClassifier(grace_period=50)
Quick Start
Prerequisites
- Python 3.10+
- uv (recommended) or pip
Setup
# Clone
git clone https://github.com/suvraadeep/Explainable-Credit-Risk-Modeling-with-Schduling.git
cd Explainable-Credit-Risk-Modeling-with-Schduling
# Create venv and install deps
uv venv .venv
uv pip install --python .venv/Scripts/python.exe -r requirements.txt
# Or with pip
python -m venv .venv
.venv/Scripts/activate # Windows
pip install -r requirements.txt
Run the Streamlit Dashboard
# Windows
.venv\Scripts\streamlit.exe run app.py
# Linux/Mac
.venv/bin/streamlit run app.py
Open http://localhost:8501 in your browser.
Kaggle Notebook
The full training pipeline runs on Kaggle with the Home Credit Default Risk dataset. Upload the notebook and run all 18 cells to reproduce:
- Feature engineering across 7 tables
- Sentence-BERT NLP embeddings
- Optuna HPO for LightGBM and XGBoost
- 5-fold ensemble training
- SHAP explainability suite
- River online drift detection
- W&B experiment logging
W&B Experiment Tracking
All experiments are tracked with Weights & Biases:
| Run | Metrics Logged |
|---|---|
lgbm-baseline |
Per-fold AUC, feature importance table |
ensemble-lgbm-xgb |
Per-fold LightGBM/XGBoost/Ensemble AUC |
concept-drift-simulation |
AUC under 5 economic shock scenarios |
final-summary |
Consolidated metrics, artifact upload |
Set your API key:
# Kaggle β Secrets β WANDB_API_KEY
# Or in notebook:
import wandb
wandb.login()
License
This project is licensed under the MIT License β see the LICENSE file for details.
Built for the 1.7B credit-invisible π
LightGBM + XGBoost + Sentence-BERT + SHAP + River (ADWIN) + W&B










