LendWise uses a binary classification model to predict whether a small-business loan applicant will default within 90 days. The current gradient boosting model was retrained last quarter and is now used to auto-approve, auto-decline, or send applications to manual underwriting.
Product and risk teams report conflicting feedback: approval volume increased, but early default losses also rose. Manual underwriters say many borderline applications being routed to review are actually low risk, while some defaults are slipping through auto-approval.
| Metric | Previous Model | Current Model | Change |
|---|---|---|---|
| Accuracy | 0.842 | 0.861 | +0.019 |
| Precision (default class) | 0.71 | 0.64 | -0.07 |
| Recall (default class) | 0.58 | 0.49 | -0.09 |
| F1 Score | 0.64 | 0.55 | -0.09 |
| AUC-ROC | 0.79 | 0.83 | +0.04 |
| Log Loss | 0.412 | 0.468 | +0.056 |
| Manual review rate | 18% | 24% | +6 pts |
| 90-day default rate on approved loans | 3.8% | 5.1% | +1.3 pts |
Despite higher accuracy and AUC, the current model is performing worse on the business outcome that matters: catching likely defaulters before approval. You need to evaluate the model, explain the metric tradeoffs, and recommend how to iterate based on stakeholder feedback.