№ 004Classical methods, clinical stakes.
PROJECTS · № 004
Health · MIMIC · 2023

Survival prediction
with the classics.

Abstract
Binary survival classification on the MIMIC clinical dataset using KNN and SVM. The deliberate choice of classical over deep methods is the point: the features are tabular, the dataset is small, and interpretability matters.
Method
Feature engineering over vitals and labs → KNN & SVM with grid-searched hyperparameters → class-imbalance handling → ROC / AUC evaluation.
Clinical dashboard with KNN and SVM classifiers
Fig. 1 — KNN and SVM are the right tools when the data is small, tabular, and the stakes are clinical.

Why not deep?

Clinical tabular data, in small samples, rewards models with strong inductive bias. A well-tuned SVM with an RBF kernel outperformed every neural baseline I tried and — crucially — offered coefficients a clinician could actually read.

Takeaway

Sometimes the right answer is the boring one. Understanding when deep methods are the wrong tool is as important as knowing how to fine-tune them.