Your question is Select Features for Loan Default. Take a moment with it on the right.
Talk me through your thinking if you like. When you're confident, submit your answer and I'll grade it like a real screen (7/10 or better passes).
Northstar Lending is building a binary classification model to predict whether a personal loan applicant will default within 12 months. The risk team wants a feature selection approach that improves generalization, reduces overfitting, and keeps the final model interpretable for compliance review.
You are given a historical underwriting dataset with applicant, credit, and behavioral variables collected at application time.
| Feature Group | Count | Examples |
|---|---|---|
| Applicant demographics | 8 | age, employment_length, home_ownership, region |
| Financial attributes | 14 | annual_income, debt_to_income, revolving_utilization, open_credit_lines |
| Credit history | 11 | fico_band, delinquencies_2y, inquiries_6m, public_records |
| Application metadata | 7 | channel, loan_purpose, requested_amount, term_months |
| Engineered candidates | 20 | income_per_open_line, utilization_x_inquiries, log_income, missingness flags |
default_12m — defaulted within 12 months (1) vs not defaulted (0)A good solution should: