REVIEW 23 references
Automatic detection and prediction of nAMD activity change in retinal OCT using Siamese networks and Wasserstein Distance for ordinality
T0 review · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read Siamese networks on an OCT foundation model detect nAMD change between visits, and a Wasserstein-distance loss that respects class ordering forecasts change three months out — both rank in the top four of the MICCAI MARIO challenge.
desk verdict Competent challenge report where the T1 Siamese work is solid and the T2 prediction claims overstep what 0.485 balanced accuracy supports. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing pieces are two training-time mechanisms. SiamRETFound is a Siamese network with shared weights: two copies of the RETFound encoder, a 24-block Vision Transformer with embedding size 1024 pretrained on retinal OCT by masked autoencoding, each embed one B-scan; the two embeddings are concatenated and a two-layer head outputs the change class, so the network learns which feature differences between visits are clinically meaningful. WARIO's load-bearing piece is an ordinal loss built from focal loss plus a discrete Earth Mover's (Wasserstein) distance term, $\ell_{\mathrm{EMD}} = \left( \frac{1}{C} \sum_{i=0}^{C-1} |\mathrm{CDF}_y(i) - \mathrm{CDF}_{\hat{p}}(i)|^2 \right)^{1/2}$, which is the $\ell^2$ distance between the cumulative distribution functions of the target and predicted class probabilities and therefore encodes the ordering Reduced < Stable < Worsened directly into the training signal. Around that loss sits masked-autoencoder pretraining at 75% masking, class-balanced finetuning, a 3-fold ensemble, and a volume-level postprocessing rule (Stable only if at least 80% of B-scans vote Stable, else majority vote) that the paper credits with the largest improvement in the ordinal Rk-correlation metric.
What would settle it
Retrain WARIO on the same MARIO task-2 data with the ordinal EMD term removed — cross-entropy and focal loss only, keeping the same MAE pretraining, ensembling, and postprocessing — and compare Rk-correlation on the official validation set; if the reported 0.206 does not fall, the ordinal loss is not what carries the forecast. A second check is to split the data patient-wise into disjoint train and validation folds instead of pooling B-scans as i.i.d. samples; if volume-level metrics collapse under that split, the patient-level correlation across B-scans was the source of the apparent skill.
Extended reading notes
Core claim
The paper's central claim is that both halves of nAMD monitoring can be automated from OCT B-scans, and that each requires the right inductive bias. For change detection, SiamRETFound compares two time-point B-scans through a shared-weight RETFound encoder, concatenates the embeddings, and classifies the pair as Reduced, Stable, Worsened, or Other; after pretraining on 300,000 surrogate change/no-change pairs from the public Kermany dataset and finetuning on MARIO task 1, it reaches 0.713 balanced accuracy as a single model and 0.801 average challenge score as a ten-model ensemble (5 SiamRETFound variants plus 5 Swin-transformer models), ranking 4th on the development leaderboard. For three-month forecasting, WARIO trains a Vision Transformer with masked-autoencoder pretraining and finetunes it with a loss that adds focal weighting to a squared Earth Mover's distance between the cumulative distributions of predictions and one-hot targets, so that mistaking Worsened for Reduced is penalized more than mistaking Worsened for Stable; with 3-fold ensembling and a volume-level postprocessing rule that labels a scan volume Stable only if at least 80% of its B-scans agree, and otherwise takes the majority vote, WARIO reaches 0.485 balanced accuracy and 0.206 Rk-correlation, ranking 2nd. The paper further reports that the focal-plus-EMD combination is strictly necessary, since without it the network collapses to predicting only the majority Stable class.
Load-bearing premise
The load-bearing premise is that 2D B-scans can be treated as independent training samples, even when many come from the same patient's OCT volume, and that those individual slices carry enough signal to predict the patient's volume-level activity change three months later, with the official labels trusted as ground truth.
Editorial extensions
If this is right
- A Siamese change detector built on a retinal foundation model can spot subtle between-visit fluid changes that drive treatment decisions, not just gross deterioration.
- Encoding the Reduced-Stable-Worsened ordering as a Wasserstein loss keeps the forecaster from collapsing onto the majority Stable class, the failure mode the authors observe without it.
- Enforcing volume-level consistency in postprocessing improves the ordinal Rk-correlation more than any other ingredient, matching how clinicians actually score an eye.
- Both tasks depend on strong pretraining, so foundation-model and masked-autoencoder representations are the transferable backbone for OCT-based nAMD monitoring.
- Held-out leaderboard results (4th on task 1, 2nd on task 2) indicate the approach generalizes to the challenge's validation volumes.
Reading between the lines
- My inference: the focal-plus-EMD loss recipe is a general tool for ordinal medical classification — diabetic retinopathy grading, glaucoma staging, osteoarthritis severity — wherever classes are ordered and the majority class dominates; the paper demonstrates it on nAMD, but the mechanism is task-agnostic.
- My inference: the 80%-Stable postprocessing threshold is a prior tuned to the challenge's class ratio; a clinic with different revisit schedules would need to recalibrate it, and the paper provides no procedure for doing so.
- My inference: the change detector and the forecaster could be chained into a treat-or-watch aid — flag activity change at the current visit and forecast change at the next — which the paper gestures at as clinical workflow support but does not implement.
- My inference: because training pools B-scans as i.i.d. while labels are volume-level, the reported metrics probably reflect a mix of genuine per-eye signal and within-volume label leakage; patient-stratified evaluation would separate the two.
Editorial analysis
A structured set of objections, weighed in public.
Circularity Check
No significant circularity: the methods are empirical challenge submissions evaluated against an external benchmark, and the self-citations are contextual rather than load-bearing.
full rationale
This paper is a challenge submission whose claims are empirical and are assessed on the external MARIO leaderboard, not derived from a chain of equations that reduce to the input. The T1 Siamese model finetunes the external RETFound pretrained encoder with cross-entropy on the challenge training pairs; the T2 model combines a focal loss with a standard EMD/Wasserstein loss and post-processes volume-level predictions. No equation is defined in terms of the target outcome, and no fitted parameter is renamed as a prediction. The self-citations (TINC, Morph-SSL) are invoked only to support the general usefulness of pretraining in AMD progression tasks; the actual pretraining uses MAE on the challenge data, so the central result does not depend on those papers' unverified conclusions. The EMD loss is taken from external prior work (Hou et al., Talebi and Milanfar), and calling it a first use for this specific task is a novelty claim rather than a circular derivation. A data-hygiene ambiguity exists in Section 2.2, where MAE pretraining is said to use 'a combined dataset of T1 and T2' immediately after the T2 validation split is described, without explicitly stating that validation volumes were excluded; this is a leakage risk, not a circularity, and it does not make the prediction equivalent to the input by construction. Overall, no circular step is identifiable in the paper's method or evaluation.
Assumptions & free parameters
free parameters (3)
- Focal loss hyperparameters alpha and gamma =
not reported
- Loss weighting between focal and EMD terms =
equal (1:1)
- Volume-level Stable threshold =
80%
assumptions (4)
- domain assumption B-scan-level i.i.d. assumption during T2 training
- domain assumption Other class corresponds to uninterpretable scans
- domain assumption Surrogate pretraining labels from dataset disease classes approximate clinical change
- standard math EMD loss definition is valid and appropriate for ordinal classification
Cite this review
Pith. "Pith review of Automatic detection and prediction of nAMD activity change in retinal OCT using Siamese networks and Wasserstein Distance for ordinality." pith.science (2026). https://pith.science/paper/ZTMVJ2IE
@misc{pith2026250114323,
author = {Pith},
title = {Pith review of: Automatic detection and prediction of nAMD activity change in retinal OCT using Siamese networks and Wasserstein Distance for ordinality},
year = {2026},
howpublished = {\url{https://pith.science/paper/ZTMVJ2IE}},
note = {Machine review of arXiv:2501.14323}
}
read the original abstract
Neovascular age-related macular degeneration (nAMD) is a leading cause of vision loss among older adults, where disease activity detection and progression prediction are critical for nAMD management in terms of timely drug administration and improving patient outcomes. Recent advancements in deep learning offer a promising solution for predicting changes in AMD from optical coherence tomography (OCT) retinal volumes. In this work, we proposed deep learning models for the two tasks of the public MARIO Challenge at MICCAI 2024, designed to detect and forecast changes in nAMD severity with longitudinal retinal OCT. For the first task, we employ a Vision Transformer (ViT) based Siamese Network to detect changes in AMD severity by comparing scan embeddings of a patient from different time points. To train a model to forecast the change after 3 months, we exploit, for the first time, an Earth Mover (Wasserstein) Distance-based loss to harness the ordinal relation within the severity change classes. Both models ranked high on the preliminary leaderboard, demonstrating that their predictive capabilities could facilitate nAMD treatment management.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
MARIO challenge (8 2024),https://www.codabench.org/competitions/2852
work page 2024
-
[2]
IEEE Transactions on Medical Imaging (2024)
Chakravarty, A., Emre, T., Leingang, O., Riedl, S., Mai, J., Scholl, H.P., Sivaprasad, S., Rueckert, D., Lotery, A., Schmidt-Erfurth, U., et al.: Morph-ssl: Self-supervision with longitudinal morphing for forecasting amd progression from oct volumes. IEEE Transactions on Medical Imaging (2024)
work page 2024
-
[3]
In: International Conference on Learning Representations (2021)
Dosovitskiy, A., Beyer, L., Kolesnikov, A., Weissenborn, D., Zhai, X., Unterthiner, T., Dehghani, M., Minderer, M., Heigold, G., Gelly, S., Uszkoreit, J., Houlsby, N.: An image is worth 16x16 words: Transformers for image recognition at scale. In: International Conference on Learning Representations (2021)
2021
-
[4]
In: International Conference on Medical Image Computing and Computer-Assisted Intervention
Emre, T., Chakravarty, A., Rivail, A., Riedl, S., Schmidt-Erfurth, U., Bogunović, H.: Tinc: temporally informed non-contrastive learning for disease progression modeling in retinal oct volumes. In: International Conference on Medical Image Computing and Computer-Assisted Intervention. pp. 625–634. Springer (2022)
work page 2022
-
[5]
Computers & Electrical Engineering81, 106532 (2020)
Gholami, P., Roy, P., Parthasarathy, M.K., Lakshminarayanan, V.: Octid: Optical coherence tomography image database. Computers & Electrical Engineering81, 106532 (2020)
2020
-
[6]
The Lancet 401(10386), 1459–1472 (2023)
Guymer, R.H., Campbell, T.G.: Age-related macular degeneration. The Lancet 401(10386), 1459–1472 (2023)
work page 2023
-
[7]
In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition
He, K., Chen, X., Xie, S., Li, Y., Dollár, P., Girshick, R.: Masked autoencoders are scalable vision learners. In: Proceedings of the IEEE/CVF conference on computer vision and pattern recognition. pp. 16000–16009 (2022)
2022
-
[8]
arXiv preprint arXiv:1611.05916 (2016)
Hou, L., Yu, C.P., Samaras, D.: Squared earth mover’s distance-based loss for training deep neural networks. arXiv preprint arXiv:1611.05916 (2016)
arXiv 2016
Show all 23 references
-
[9]
Karwande, G., Mbakwe, A.B., Wu, J.T., Celi, L.A., Moradi, M., Lourentzou, I.: CheXRelNet: An Anatomy-Aware Model for Tracking Longitudinal Relation- ships Between Chest X-Rays. Lecture Notes in Computer Science (including sub- series Lecture Notes in Artificial Intelligence an...
2022 doi
-
[10]
Cell172(5), 1122–1131 (2018)
Kermany, D.S., Goldbaum, M., Cai, W., et al.: Identifying Medical Diagnoses and Treatable Diseases by Image-Based Deep Learning. Cell172(5), 1122–1131 (2018). https://doi.org/10.1016/j.cell.2018.02.010 10 Emre et al
2018 doi
-
[11]
Scientific Data 11(1), 365 (2024)
Kulyabin, M., Zhdanov, A., Nikiforova, A., Stepichev, A., Kuznetsova, A., Ronkin, M., Borisov, V., Bogachev, A., Korotkich, S., Constable, P.A., et al.: Octdl: Optical coherence tomography dataset for image-based deep learning methods. Scientific Data 11(1), 365 (2024)
2024
-
[12]
Radiology: Artifi- cial Intelligence2(4), 1–39 (2020).https://doi.org/10.1148/ryai.2020200079
Li, M.D., Arun, N.T., Gidwani, M., Chang, K., Deng, F., Little, B.P., Mendoza, D.P., Lang, M., Lee, S.I., O’Shea, A., Parakh, A., Singh, P., Kalpathy-Cramer, J.: Automated assessment and tracking of COVID-19 pulmonary disease severity on chest radiographs using convolutional s...
2020 doi
-
[13]
https://doi.org/10.1038/s41746-020-0255-1
Li, M.D., Chang, K., Bearce, B., Chang, C.Y., Huang, A.J., Campbell, J.P., Brown, J.M., Singh, P., Hoebel, K.V., Erdoğmuş, D., Ioannidis, S., Palmer, W.E., Chiang, M.F.,Kalpathy-Cramer,J.:Siameseneuralnetworksforcontinuousdiseaseseverity evaluationandchangedetectioninmedicalim...
2020 doi
-
[14]
Lin, T.Y., Goyal, P., Girshick, R., He, K., Dollár, P.: Focal loss for dense object detection.In:ProceedingsoftheIEEEinternationalconferenceoncomputervision. pp. 2980–2988 (2017)
2017
-
[15]
Liu, Z., Lin, Y., Cao, Y., Hu, H., Wei, Y., Zhang, Z., Lin, S., Guo, B.: Swin transformer:Hierarchical visiontransformerusingshiftedwindows.In:Proceedings of the IEEE/CVF international conference on computer vision. pp. 10012–10022 (2021)
2021
-
[16]
Advances in Neural Information Processing Systems35, 9201–9216 (2022)
Prabhushankar, M., Kokilepersaud, K., Logan, Y.y., Trejo Corona, S., AlRegib, G., Wykoff,C.:Olivesdataset:Ophthalmiclabelsforinvestigatingvisualeyesemantics. Advances in Neural Information Processing Systems35, 9201–9216 (2022)
2022
-
[17]
In: Predictive Intelligence in Medicine: Second International Workshop, PRIME 2019, Held in Conjunction with MICCAI 2019, Shenzhen, China, October 13, 2019, Proceedings 2
Rivail, A., Schmidt-Erfurth, U., Vogl, W.D., Waldstein, S.M., Riedl, S., Grechenig, C., Wu, Z., Bogunovic, H.: Modeling disease progression in retinal octs with lon- gitudinal self-supervised learning. In: Predictive Intelligence in Medicine: Second International Workshop, PRI...
2019
-
[18]
International Journal of Computer Assisted Radiology and Surgery (2023)
Rochman, S., Szeskin, A., Lederman, R., Sosna, J., Joskowicz, L.: Graph-based automatic detection and classification of lesion changes in pairs of CT studies for oncology follow-up. International Journal of Computer Assisted Radiology and Surgery (2023). https://doi.org/10.100...
2023 doi
-
[19]
Progress in Retinal and eye Re- search 50, 1–24 (2016)
Schmidt-Erfurth, U., Waldstein, S.M.: A paradigm shift in imaging biomarkers in neovascular age-related macular degeneration. Progress in Retinal and eye Re- search 50, 1–24 (2016)
2016
-
[20]
IEEE transactions on image processing27(8), 3998–4011 (2018)
Talebi, H., Milanfar, P.: Nima: Neural image assessment. IEEE transactions on image processing27(8), 3998–4011 (2018)
2018
-
[21]
Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture Notes in Bioinformatics)12907 LNCS, 670–680 (2021)
To, M.S., Sarno, I.G., Chong, C., Jenkinson, M., Carneiro, G.: Self-Supervised Lesion Change Detection and Localisation in Longitudinal Multiple Sclerosis Brain Imaging. Lecture Notes in Computer Science (including subseries Lecture Notes in Artificial Intelligence and Lecture...
2021 doi
-
[22]
Nature Medicine26(6), 892–899 (2020)
Yim, J., Chopra, R., Spitz, T., Winkens, J., Obika, A., Kelly, C., Askham, H., Lukic, M., Huemer, J., Fasler, K., et al.: Predicting conversion to wet age-related macular degeneration using deep learning. Nature Medicine26(6), 892–899 (2020)
2020
-
[23]
Zhou, Y., Chia, M.A., Wagner, S.K., et al.: A foundation model for generalizable disease detection from retinal images. Nature622(7981), 156–163 (2023).https: //doi.org/10.1038/s41586-023-06555-x Title Suppressed Due to Excessive Length 11 A Appendix ] Reduced Stable Worsened ...
2023 doi
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.