Multi-task pretrained biomedical imaging model whose frozen features match ImageNet fine-tuning on CT, X-ray and histology tasks from 1% of labels.
No providers recorded yet. Browse all providers
Biomedical imaging has no ImageNet. It has instead a long tail of small, expensively annotated collections — a few hundred chest radiographs read for tuberculosis, a few dozen whole-slide images with pixel-level tumour masks, a nuclei dataset with bounding boxes. Pooling them into one pretraining run is the obvious move, and the obstacle is mundane: conventional multi-task learning holds every task's activations in memory at once, so the number of datasets that can be combined is capped by GPU memory, not by how much annotated data exists.
UMedPT, a universal biomedical pretrained model from Fraunhofer MEVIS and RWTH Aachen University with clinical partners in Regensburg, Hannover and Freiburg, answers that with a training loop built on gradient accumulation. Each optimization step walks through tasks one at a time, accumulating a gradient for each before a single parameter update; activations are discarded as soon as a task's backward pass finishes. Memory therefore tracks the largest individual task rather than the sum of all of them, and adding a task to the mixture becomes nearly free. The team used that headroom to train on 17 tasks drawn from 15 publicly available datasets covering tomographic (CT and MRI), microscopic and X-ray images, with classification, segmentation and object-detection labels side by side.
Because the objective is supervised across many domains at once, the encoder is meant to be used frozen — the claim the paper tests, probing UMedPT features against fully fine-tuned ImageNet models on a fraction of the labels.
Three shared blocks — encoder, pixel-dense decoder and multi-scale decoder — are assembled on demand into a task-appropriate architecture, with lightweight task-specific heads: a linear layer for classification, a convolutional layer for dense predictions. Training used AdamW at a learning rate of 0.001, an "infinite task sampler" yielding one batch per task per step, and per-task loss normalization so no task dominates the sum. On in-domain colorectal-cancer tissue classification from whole-slide images, a frozen UMedPT encoder reached an F1 of 95.4% using 1% of the training data, comparable to the 95.2% an ImageNet model needed the full dataset and fine-tuning to reach; on paediatric pneumonia chest X-rays it reached 93.5% F1 with frozen features and 5% of the data, against ImageNet's best of 90.3%. Out of domain the margin narrows: tuberculosis diagnosis needed fine-tuning on 10% of the data for 96.3% F1, and breast-cancer classification in whole-slide images needed fine-tuning and half the data to match published references.
The intended user is a group with a clinically meaningful question and a few hundred annotated images — rare-disease cohorts, paediatric imaging, a new stain or scanner — for whom training from scratch is out of reach. Extracting frozen features and fitting a small head on top is cheap enough to be interactive: the authors trained a colorectal-cancer classifier on 499 whole-slide images in under ten minutes. The same checkpoint carries segmentation and detection heads, so a lab building both a nuclei counter and a tissue segmenter needs one strategy, not two.
UMedPT's most consequential result is external: in the SemiCOL challenge, a classifier built on its frozen features reached an AUC of 99.7% separating tumour from healthy colorectal histopathology across clinical centres largely absent from pretraining, ahead of the next best entries at 97.3% and 93.6%. Cross-centre variation in scanners, stains and populations is the failure mode that retires most histopathology models, so a frozen representation surviving it is worth more than a single-centre leaderboard position. The paper is candid about where supervised multi-task pretraining struggles: several tasks got worse as their training fraction grew, a mix of overfitting and catastrophic forgetting the authors trace to selecting models on training rather than validation loss. Code and weights are public but licensed for scientific non-commercial research only, and the software is research-grade, not a medical device. The recipe carried forward — the group's later Tissue Concepts, Whole Slide Concepts and CoM³eT checkpoints all build on this training strategy.
Much of this page is generated or calculated automatically. Flag anything that looks off and we will re-run it.