Paper: Deep Kernel Learning for Stratifying Glaucoma Trajectories Authors: Bruce Rushing, Angela Danquah, Alireza Namazi, Arjun Dirghangi, Heman Shakeri arXiv: 2605.00708 | 2026-04-30
1. The Disease That "Quietly Steals Vision"
Glaucoma is called the "thief of sight" because:
- Early symptoms are subtle
- It progresses slowly
- Damage is often irreversible by the time it is detected
- It is the second leading cause of blindness globally
- Uncertainty quantification: predictions come with confidence intervals (e.g., "IOP between 15–20 mmHg at 95% confidence") — more clinically useful than a point estimate.
- Handling sparse data: GPs naturally handle unevenly sampled time series; uncertainty grows automatically where observations are sparse.
- Interpretability: the kernel encodes the correlation structure of the time series (e.g., "recent measurements matter more than distant ones"), matching clinical intuition.
- Small-sample learning: GP regularization guards against overfitting when data is limited.
What makes it harder: progression speed varies enormously between patients. Some go blind within years, others remain stable for decades, and a few even improve naturally.
If we could identify high-risk patients in advance, clinicians could prioritize intervention and save vision.
2. The Trajectory Stratification Problem
Predicting glaucoma progression from electronic health records (EHR) faces several challenges:
1. Sparse, irregular data — patients do not visit on a fixed schedule; gaps between visits can span months or years, and each visit includes different tests. 2. Multimodal data — vision tests (intraocular pressure, visual fields), imaging (OCT, fundus photography), clinical notes, and demographics. 3. Trajectory heterogeneity — patients follow different progression patterns, so the task is *stratification* into risk groups, not just predicting a single value.
Existing methods mostly focus on single-timepoint prediction, ignore temporal dynamics, and fail to capture individualized trajectories.
3. Deep Kernel Learning + Gaussian Processes
The paper proposes a Deep Kernel Learning (DKL) architecture:
1. ClinicalBERT embeddings — convert clinical notes into vector representations capturing the semantics of physician observations and recommendations. 2. Transformer feature extractor — processes time-series EHR data and learns dynamic feature representations. 3. Gaussian Process (GP) backend — uses the learned features to define the GP kernel, modeling uncertainty in the time series and producing not just the most likely trajectory but also confidence intervals.
The model identifies three clinically meaningful subgroups with distinct progression patterns, and the uncertainty quantification flags borderline cases that are hard to classify.
It is like giving every patient an "AI disease-course advisor" that not only says "this patient may deteriorate" but also "how confident we are" and "when a follow-up is needed."
4. Why Gaussian Processes Fit This Task
5. The Feynman-Style Judgment: Uncertainty Itself Is Valuable
Feynman said: "Knowing what you do not know is as important as knowing what you know."
In medical prediction, telling a doctor "this patient is at risk" is not enough — the doctor needs to know how confident, when, and under what conditions the model is uncertain. Uncertainty is not a flaw; it is information that tells clinicians when more testing is needed.
Traditional deep learning outputs a point prediction with no reliability measure. DKL+GP outputs a distribution with clear confidence intervals, and high-uncertainty cases can be marked for further examination.
This is not more complicated — it is more honest.
6. Takeaways
If you work on medical time-series prediction, ask yourself:
1. Am I fully exploiting multimodal data (structured + text + imaging)? 2. Does my model quantify predictive uncertainty? 3. Is a Gaussian process a good fit for my data (sparse, irregular, small-sample)? 4. Am I identifying subgroups, or doing one-size-fits-all prediction?
Core insight: in medical AI, "knowing the uncertainty" matters as much as "making the prediction." Glaucoma trajectories are complex, individualized, and uncertain. The combination of deep kernel learning and Gaussian processes teaches AI medicine's core skill: making decisions under uncertainty while honestly acknowledging it. In the fight against the "thief of sight," the best weapon is not blind confidence but wise humility.