LendWise, a digital consumer lending platform processing roughly 120K personal loan applications per month, wants a simple and explainable model to predict whether an approved applicant will default within 12 months. The credit risk team needs a baseline model they can review with compliance and deploy quickly.
You are given a historical application dataset with one row per funded loan.
| Feature Group | Count | Examples |
|---|---|---|
| Applicant demographics | 6 | age, employment_length, home_ownership, state |
| Financial attributes | 9 | annual_income, debt_to_income, revolving_utilization, delinquencies_2y |
| Loan attributes | 5 | loan_amount, interest_rate, term_months, purpose |
| Credit history | 8 | fico_band, inquiries_6m, public_records, credit_history_length |
| Derived operational fields | 4 | application_channel, verification_status, days_to_fund, prior_customer |
default_12m — whether the borrower defaulted within 12 months of originationA good solution should achieve strong ranking performance while remaining interpretable enough for model risk review. Target at least ROC-AUC >= 0.78, PR-AUC >= 0.38, and recall >= 0.60 at an operating point where precision >= 0.35.