This project was developed for the 2025 New England Statistics Symposium (NESS) Statathon, where participants were tasked with building a predictive model to identify first-party physical damage fraudulence in auto insurance claims. Our solution placed 2nd overall.
The codebase is structured to support general-purpose binary classification tasks, with modular components for training, evaluation, and ensemble modeling. Though initially developed for the Travelers Insurance fraud dataset, the pipeline is designed to be reusable with other structured/tabular classification problems.
As a modeling team at Travelers Insurance, the goal was to:
- Predict fraudulent claims related to first-party physical damage using historical data
- Identify and interpret key drivers of fraud
- Provide actionable insights for improving claim handling procedures
- Tabular data in
.csvformat, consisting of structured features (numerical, categorical) - No unstructured data (text/images) included in this version
- Gradient Boosting Models
XGBoost,LightGBM,CatBoost,HistGradientBoostingClassifier
- Linear Baseline
Lasso(viaLogisticRegressionwith L1 penalty)
- Model Ensembling
- Weighted averaging of calibrated model outputs
- Metric: F1 Score (targeting balance between precision and recall for fraud)
- Validation Strategy: K-Fold Cross-Validation (5-fold by default)