๐ค AI Summary
To address the low prediction accuracy and AUC in diabetes classification on high-dimensional, low-sample-size (HDLSS) NHANES health data, this paper proposes an XGBoost-MLP hybrid model. It first employs XGBoost for robust feature encoding and importance-based dimensionality reduction, yielding compact, dense low-dimensional representations; these are then fed into a lightweight multilayer perceptron (MLP) for nonlinear classification. This architecture synergistically integrates the interpretability and feature selection capability of tree-based models with the strong nonlinear modeling capacity of neural networks. Evaluated on a rigorously preprocessed NHANES subset, the model achieves an AUC of 0.892 and a balanced accuracy of 0.831โsignificantly outperforming logistic regression, random forest, and standalone XGBoost baselines (p < 0.01). The implementation code and full reproducibility scripts are publicly available.
๐ Abstract
I present an application of established machine learning techniques to NHANES health survey data for predicting diabetes status. I compare baseline models (logistic regression, random forest, XGBoost) with a hybrid approach that uses an XGBoost feature encoder and a lightweight multilayer perceptron (MLP) head. Experiments show the hybrid model attains improved AUC and balanced accuracy compared to baselines on the processed NHANES subset. I release code and reproducible scripts to encourage replication.