Readmissions and multimorbidity: a self-supervised model that learns the patient before it knows the outcome

A team from Newcastle, Queen Mary University of London and Birmingham (the AI-MULTIPLY consortium) builds Self-HR, a model that first learns, without labels, to "summarize" the records of 99,207 UK patients with at least two chronic conditions, then specializes to predict an emergency readmission within 30 days of discharge. On this cohort it reaches an AUROC of 0.92 and clearly beats XGBoost and supervised networks, with external validation on 79,224 patients from a second, independent database; above all, it stays robust when half the labels are missing, where classic models collapse. The result is real, but most of the signal comes from the admission diagnosis itself, and everything rests on retrospective data from an unrepresentative UK population.

The context

Unplanned hospital readmission — an emergency return to hospital soon after discharge — is both a quality marker and a major cost driver. In the UK, the 30-day readmission rate rose from about 12.5% in 2014 to 15.5% in 2021, and these returns account for nearly 19% of NHS emergency-admission costs; up to 48% are considered potentially preventable. Hence the recurring idea of flagging high-risk patients at discharge to target enhanced follow-up.

The problem is that most existing tools were built for a single disease and generalize poorly. The LACE index, the most widely used, tops out at an AUROC of 0.60–0.68; prior machine-learning models rarely exceed 0.70. Yet the patients most concerned are precisely those with several conditions at once — multimorbidity (here defined as at least two long-term chronic conditions), with its polypharmacy and care complexity. That is the population the authors target, using two large UK databases: the UK Biobank (UKBB) to develop the model, and the Clinical Practice Research Datalink (CPRD) to validate it on a different population.

The method

Self-HR rests on self-supervised learning: rather than learning directly to predict readmission, the model first learns, without any outcome label, to compress and then reconstruct each patient's record. Technically it is an autoencoder — a network that encodes each record into a compact 50-dimensional representation (an embedding, a numeric vector summarizing the patient), then tries to reconstruct the input from that summary by minimizing reconstruction error. This phase forces the model to structure a "latent space" where clinically similar patients end up close together. Only then, in a second phase, is that representation fine-tuned with readmission labels to output a yes/no probability.

Each patient is described by 1,296 variables in four groups: demographic and lifestyle data (age, sex, ethnicity, Townsend deprivation index, smoking, alcohol, BMI); primary-care prescriptions in the two years before admission (coded via the UK BNF classification); the primary diagnosis at the index admission, coded in ICD-10 (only the codes collectively covering 90% of diagnoses are kept, the rarest treated as absent); and a binary indicator for each of 204 listed chronic conditions. The target is emergency readmission within 30 days, identified via NHS admission-method codes.

To gauge Self-HR's contribution, the authors compare it to four fully supervised models trained on the same data: a Random Forest, XGBoost (a gradient boosting method, a benchmark on tabular data), and two neural networks, simple and complex. The cohort is heavily imbalanced — about 5.95 non-readmitted per readmitted patient in UKBB (14.4% readmissions) — which calls for suitable metrics: beyond AUROC (area under the ROC curve, the ability to tell a readmitted from a non-readmitted patient), the AUPRC (area under the precision-recall curve, far more informative under imbalance) and the F1 score of the readmitted class (the harmonic mean of precision and recall).

The results

On UKBB, Self-HR outperforms every supervised model: AUROC 0.92, AUPRC 0.75, and an F1 of 0.72 for the readmitted class (precision 0.82, recall 0.75). The gap is clear on this minority class, the only one that matters clinically: XGBoost and the simple network reach only 0.27 and 0.42 in F1, with recall on the readmitted class dropping to 0.16 for XGBoost — meaning it misses more than eight readmissions in ten. External validation on CPRD (79,224 patients, 25.4% readmissions) confirms the trend, with a measured drop: AUROC 0.86 and F1 0.67 for the readmitted.

The most useful result is robustness to missing labels. Trained on only half the readmission labels, Self-HR falls just from 0.72 to 0.62 in F1 on UKBB, whereas the reference supervised network collapses from 0.42 to 0.28. That is the core case for self-supervision: learning useful representations from all available data reduces reliance on complete labeling, which is costly and scarce in clinical practice. The ablation study, finally, shows unambiguously where the signal comes from: removing the admission diagnosis crashes the AUPRC from 0.75 to 0.28 and the F1 from 0.72 to 0.17; primary-care prescriptions come second (F1 0.72 to 0.45).

In clinical terms, keep perspective. Out of 1,000 multimorbid patients discharged, roughly 140 will be readmitted as emergencies within 30 days. With the reported precision and recall (0.82 and 0.75), Self-HR would flag about 105, miss around 35, at the cost of roughly 23 false alarms. That is much better than the LACE index, but far from a perfect net — and this figure describes discrimination performance, not the question, untouched here, of whether the displayed probabilities are well calibrated.

What is good

Targeting multimorbidity and validating out of sample. Most readmission models are single-disease; by focusing on patients with at least two chronic conditions, the study tackles the truly at-risk population. Above all, performance is reproduced on a second, independent database (CPRD), more diverse and more balanced in sex and ethnicity than UKBB — an external validation that many comparable works omit, and the best safeguard against overfitting to a single source.

Label efficiency is a concrete asset. Showing the model holds up at 50% labels when a supervised network collapses is no detail: in clinical practice, well-annotated outcomes are rare and costly. A model that learns most of what it needs from unlabeled data, then specializes on a small annotated set, fits the reality of health systems better. The same encoder, moreover, transfers to regression tasks (predicting admission duration) through fine-tuning alone, without retraining.

A clean, transparent release. The preprint is released under a CC BY 4.0 license; funding is public (NIHR) and the authors declare no competing interests. The methodical ablation study exposes where predictive power lies — and where it does not — and a patient partner group (PPIE) was involved in the process. This is the kind of hygiene that makes a result verifiable and reusable.

What is less good

A marked population bias (selection bias). The model is developed on the UK Biobank, known for its healthy-volunteer bias: participants aged 40–69 at enrolment, healthier and better-off than the general population, and 94% of white ethnicity. Such an unrepresentative cohort weakens generalization, especially to the most deprived and non-white populations — precisely those where readmission risk is often highest. Validation on the more diverse CPRD softens this without erasing it, since all development and thresholds rest on UKBB.

The admission diagnosis dominates everything: a shortcut rather than a risk profile. The ablation is decisive — without the admission diagnosis, performance collapses. This makes clinical sense (a readmission often reflects relapse of the index condition), but it also means the model mostly "reads" the reason for admission. This is close to shortcut learning: rather than a rich, potentially modifiable risk profile, the model largely captures the severity carried by the diagnostic code. The information-leakage risk also warrants vigilance, since the most predictive variable is closely tied to the very event being anticipated.

An indirect comparator, a flattering metric, and no prospective test. The models it beats (LACE at 0.60–0.68, the literature at 0.65–0.70) are not re-run head-to-head on the same cohort: the comparison aggregates studies with different definitions and populations, mechanically inflating the gap (biased comparator). The AUROC of 0.92 is the most marketable figure, but on a task with 14% positives it is the AUPRC of 0.75 that tells the operational truth (misleading metric). No calibration is reported, no prospective evaluation or impact trial: yet the history of readmission scores shows that an accurate model does not mechanically reduce readmissions if the downstream intervention does not follow.

What it changes

For the research community, the study is a good argument for self-supervision on tabular, imbalanced, incompletely labeled health data, with an encoder reusable across tasks. The next steps are self-evident: measure calibration, analyze performance across ethnic and socioeconomic subgroups, re-run the comparators on the same cohort, and above all move beyond UKBB to more representative populations.

For clinicians, nothing changes today: this is a research model, not deployed, with no regulatory clearance. The useful caveat is twofold: the reported performance leans heavily on the admission diagnosis, and predicting is not preventing — a score, even a good one, is worth something only when paired with an effective discharge intervention (medication reconciliation, close follow-up, community support).

For patients and the public, the promise is legible: flag the most fragile people at discharge to support them better. But caution is warranted on generalization, given how undiverse the training population is; such a tool should not be transplanted as-is to another health system without fresh validation. And if it were one day used to steer management decisions, it would fall under oversight as software as a medical device.

Further reading

The preprint is available on medRxiv (DOI 10.64898/2026.08.01.26359453), under a CC BY 4.0 license, as part of the NIHR-funded AI-MULTIPLY programme. For context, see the literature on the LACE index and the limits of readmission scores, as well as work on the UK Biobank healthy-volunteer bias and on the value of AUPRC for heavily imbalanced clinical tasks.