You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most health risk systems treat hypertension and cardiovascular disease as parallel tasks. But in clinical reality, hypertension is not just a condition—it’s often a precursor that elevates CVD risk over time. This project encodes that progression structurally: the system first predicts hypertension stage using core vitals, then feeds that prediction into the cardiovascular risk model, mimicking the diagnostic flow used by real clinicians. The goal isn’t just to classify but to emulate how health conditions evolve and interact over time. Rather than relying on deep, complex architectures, we prioritize interpretable ML models that are transparent, reliable, and suited for structured health records. Preprocessing plays a vital role: raw clinical metrics vary wildly in range and unit, so consistent scaling and imputation are essential to preserve integrity across users. The entire design is shaped by one core belief—medical AI must mirror biological causality and clinical judgment, not just maximize metrics.
The CVD model accepts hypertension stage as a feature, reflecting its real-world impact on heart disease.
Simpler classifiers are favored to maintain interpretability and reduce overfitting on small, structured datasets.
Scalers are saved and reused during inference to maintain statistical alignment between training and serving.
The architecture encodes clinical progression, not just classification, making predictions more contextually grounded.