This project aims to use Tree-Based Models to classify if a patient has Alzheimer’s disease based on their demographic, lifestyle, and medical data. The goal is to support early diagnosis and intervention, improving patient outcomes and reducing healthcare costs.
- Source: Classification of Alzheimer’s Disease Dataset
- Features: Includes patient demographic information, lifestyle factors, and medical records.
- Class Imbalance: 35.37% of samples are diagnosed with Alzheimer’s.
- William Wu
- Megan Wang
- Kaggle Ranking: 64th
- Prediction Score: 0.94894
- Tree-Based Models: Random Forest, CatBoost, and XGBoost.
- Performance Metrics: Accuracy, ROC-AUC, Precision, Recall, and F1-Score.
- Techniques:
- Exploratory Data Analysis (EDA)
- Feature Engineering (e.g., threshold effects for key features)
- Hyperparameter Tuning (Grid Search)
- Ensemble Methods (Weighted Average, Stacking, Voting)
- Removed irrelevant features (e.g., PatientID).
- Handled categorical features by setting them as category data type.
- Addressed class imbalance using class weights in tree-based models.
- Assessed and mitigated multicollinearity and non-linear relationships.
- Random Forest: Used as a baseline model.
- CatBoost: Best individual model, with features selected via recursive elimination.
- XGBoost: Optimized for efficiency in experimentation.
- Ensemble Models: Combined strengths of Random Forest and CatBoost.
- Cross-Validation: 5-fold cross-validation used to ensure generalizability.
- Primary Metric: ROC-AUC to account for class imbalance.
- Threshold Features: Incorporated threshold effects for critical features such as MMSE and FunctionalAssessment.
- Best Individual Model: CatBoost (Accuracy: 0.978, ROC-AUC: 0.946).
- Best Ensemble Model: Weighted average of CatBoost (70%) and Random Forest (30%) achieved an ROC-AUC of 0.958.
- Focus on Tree-Based Models: May not fully capture complex feature interactions.
- Interaction Effects: Future work could include interaction terms for better modeling.
- Dataset Size: External validation needed to confirm generalizability.
- Buda, M., Maki, A., & Mazurowski, M. A. (2018). A systematic study of the class imbalance problem in convolutional neural networks.
- CatBoost Documentation. https://catboost.ai/docs/en/concepts/parameter-tuning
- Dormann, C. F., et al. (2013). Collinearity: A review of methods to deal with it and a simulation study evaluating their performance.