Self-Supervised Learning's Hidden Weakness
Sep 18, 2026

Part 2 of a short series on label-efficient learning in medical imaging.
Among the methods that promise to cut labeling costs in medical imaging, self-supervised learning is often held up as the strongest. The appeal is obvious: pre-train a model on a large pool of unlabeled images, then fine-tune it on the small labeled clinical task. Fewer labels, strong performance. But its weaknesses are among the hardest to see, and in medicine they matter.
Let's start with how it works.
Self-supervised learning pre-trains with a proxy objective, such as reconstructing masked regions of an image or matching two augmented views of the same one, before any clinical labels enter the picture. The important detail is that no class labels are used during pre-training. What the model learns is governed entirely by what is visually prevalent in the data.
That has consequences that are easy to overlook.
The features a model settles on are whatever appears consistently and correlates with image content. If a visual pattern is common, or reliably co-occurs with the structures of interest, the model may encode it as a stable feature, whether or not it is clinically meaningful.
In medical imaging, many of the most consistent patterns are not biology at all. Differences in scanner, staining protocol, acquisition site, and sample preparation tend to be highly regular within a given source. A self-supervised model can fasten onto these as shortcuts or domain-specific signals, learning to recognize the setting rather than the disease.
Class imbalance is especially subtle here. In supervised learning, imbalance is at least visible in the label distribution and can be corrected for. In self-supervised pre-training the objective may use no class labels at all, so nothing offsets the fact that frequent visual patterns simply dominate. The rare presentations that carry the most clinical weight contribute little to the learned representation, and their scarcity is invisible to the very method meant to be learning from the data.
Picture the dataset as a distribution of visual patterns ordered by how often they appear. The bulk is redundant and confounded: the same common views, the same scanner signatures, over and over. The clinically vital cases sit in a thin tail. A method with no labels to tell it otherwise spends almost all of its capacity on the bulk and barely registers the tail.
The common thread is that self-supervised learning inherits the composition of the data it is given. A collection dominated by redundant, confounded, or imbalanced images yields a representation with those same properties built in. The method is only as good as the distribution it learns from, and it cannot see what that distribution is missing.
This is not an argument against self-supervised learning. It is a strong method, and for many problems it is the right one. The point is narrower and more practical: its output depends on the input distribution in ways that are hard to inspect after the fact, which means the composition of the data matters even when labels are set aside.
That reframes where the work should start. Before reaching for a method that squeezes more out of a dataset, it is worth curating the dataset itself, selecting a representative, diverse subset so that whatever comes next, supervised or self-supervised, learns from a distribution that reflects the clinical problem rather than the quirks of how the images were collected.
The final piece in this series looks at exactly that move, core-set selection: how it works, why it changes the economics and defensibility of a medical AI program, and the ways it can still go wrong.