Md Rabiul Islam, Samir Abdaljalil, Erchin Serpedin, Hasan Kurban
8 min
Pulmonary nodule malignancy prediction is traditionally performed by specialized deep learning models that require extensive image-level training and are often opaque to clinicians. This paper investigates whether a generalist Large Language Model (LLM), when provided with a structured natural-language description of nodule attributes, can serve as a reliable, calibrated triage layer to reduce the workload on specialist models.
The authors introduce ConfTriage, a framework built on three pillars: using language as the primary modality, applying Platt scaling to calibrate the LLM's verbalized confidence, and utilizing a specialist deep learning backstop (Certain-Net) for cases where the LLM lacks sufficient confidence. The researchers conducted a seven-way input ablation study across five frontier LLMs (including GPT-4o-mini, Claude-3.5-Haiku, and Gemini-3.1-Flash-Lite) on the LIDC-IDRI benchmark. They also provided theoretical proofs, including a finite-sample combined-error bound and an oracle inequality that links the LLM's L1 calibration error to the optimality of the deferral policy.
The study demonstrates that natural-language descriptions are the primary driver of diagnostic signal, while low-level image statistics are essentially diagnostically vacuous. ConfTriage achieved an F1 score of 88.22% and an AUC of 0.92, successfully resolving 76.5% of cases using zero-shot LLM inference alone. By calibrating the LLM's confidence, the framework provides a formal, defensible mechanism for deciding when to trust the LLM and when to defer to a specialist, effectively bridging the gap between generalist AI and specialized medical decision-support systems.
This research provides a practical, interpretable, and scalable pathway for integrating generalist LLMs into clinical workflows. By demonstrating that structured text is sufficient for high-performance triage, the authors offer a method that avoids the need for resource-intensive, end-to-end image training for every diagnostic task, while simultaneously providing the safety guarantees necessary for clinical deployment.
Pulmonary nodule malignancy prediction typically depends on image-trained specialist deep learning (DL) models that require substantial annotated imaging data and task-specific training. We investigate whether a generalist large language model (LLM), reading only a faithful natural-language rendering of standard nodule attributes, can serve as a calibrated triage layer. We propose ConfTriage, a confidence-calibrated method built on three pillars: language as the modality, calibration as the safety mechanism, and a selective specialist DL backstop for low-confidence cases. We prove two guarantees: a finite-sample combined-error bound yielding an explicit per-threshold operational certificate, and an oracle inequality showing that excess risk over the Bayes-optimal deferral classifier is controlled by the L1 calibration error of the LLM probability. A controlled seven-way input ablation across five frontier LLMs on LIDC-IDRI shows that natural-language descriptions dominate the diagnostic signal, while low-level image statistics are essentially diagnostically vacuous. ConfTriage achieved an F1 score of 88.22% and an AUC of 0.92, resolving 76.5% of cases using zero-shot LLM inference alone and referring only uncertain cases to the specialist DL backstop. These results demonstrate that clinically meaningful diagnostic information can be captured through structured radiological descriptions and leveraged by calibrated LLMs for selective referral. The framework suggests a practical pathway for combining generalist LLM prediction with specialist AI models in medical decision-support systems. Source code is publicly available at https://github.com/rabiul-ai/ConfTriage.
Sam: And once you have a properly calibrated confidence score, that's what determines whether the case gets handled automatically or sent to a specialist?
Alex: Precisely. If the calibrated probability is high or low enough — clearly malignant or clearly benign — the system resolves the case on its own. But if the score lands in an uncertain middle zone, the case is automatically routed to a specialist backstop: an ensemble of neural networks trained specifically on image data.
Sam: So the language model handles the straightforward majority, and the hard cases go to the specialist.
Alex: Right. And that division of labour is important, because running a full specialist image model on every single scan is computationally expensive. By filtering out the clear-cut cases first, the system reserves specialist resources for the cases that genuinely need them.
Sam: How well did this approach actually perform?
Alex: The system resolved just over three-quarters of cases using the language model alone, and on those cases it achieved a classification accuracy — measured by something called the area under the curve — of around 0.92 out of a possible 1.0. That's a strong result for a model that never looked at a single pixel.
Sam: What happened when they tried feeding the models raw image statistics instead of structured text descriptions?
Alex: Performance collapsed. Across all five models tested, using only low-level image statistics dropped the accuracy score to somewhere between 0.44 and 0.58 — barely better than random guessing. That tells you the diagnostic weight is carried by the structured textual attributes, not the raw pixel data.
Sam: That's a striking gap. It suggests the way information is presented to the model matters enormously.
Alex: It does. And the authors didn't just demonstrate this empirically — they also derived mathematical guarantees. They proved that the system's total error is formally bounded, and that the size of that bound is controlled directly by how well-calibrated the model is. Better calibration means a tighter, more reliable safety certificate.
Sam: So the Platt scaling step isn't just a cosmetic improvement — it's the lever that drives down the theoretical risk.
Alex: Exactly. They also compared the framework against a theoretically ideal triage classifier — the best possible system given the available information — and showed that the gap in performance between ConfTriage and that ideal is also controlled by calibration error. A well-calibrated model is a near-optimal one.
Sam: What dataset did they use to test all of this?
Alex: They used the Lung Image Database Consortium benchmark — a well-established public dataset of CT scans. After filtering out the most ambiguous cases, where even expert radiologists couldn't agree, they were left with just under a thousand nodules, roughly split between benign and malignant.
Sam: And how did they make sure the model wasn't just memorising specific patients?
Alex: They used patient-level cross-validation — a method where the training data, the calibration data, and the test data are always drawn from completely different patients. No patient's scan ever appears in more than one of those groups.
Sam: How did the language models compare to specialist deep learning models trained on images?
Alex: Two of the language models achieved accuracy scores above 0.90 without any image training at all — matching the performance of specialist models that required substantial training on scan data. And the open-source models performed comparably to the closed commercial ones, which matters for hospitals that can't or won't depend on a single vendor.
Sam: Did they compare the system against human radiologists?
Alex: They did. Because the dataset doesn't have consistent tracking across all readers, they used a leave-one-out method — comparing each reader's assessment against a consensus built from the remaining readers for each specific nodule. That gave a fair measure of human variability.
Sam: And how much variability was there?
Alex: Quite a bit. Three readers showed high agreement with the consensus, while a fourth showed noticeably lower consistency. The automated system achieved an accuracy score of around 0.95, placing it at the upper end of the range observed among individual human readers.
Sam: So the combined framework — language model plus specialist backstop — matches or exceeds what individual human readers achieve, while handling routine cases automatically.
Alex: That's what the data suggests. Though it's worth being clear about what this study is and isn't.
Sam: What are the main limitations?
Alex: The authors are candid about several. First, the malignancy labels in the dataset are based on radiologist consensus, not confirmed tissue biopsies. So the benchmark reflects expert human judgment, not definitive biological proof.
Sam: That's an important distinction. Expert opinion and pathology-confirmed diagnosis aren't the same thing.
Alex: Exactly. Second, this is a methodological framework evaluated on a public benchmark — it hasn't been deployed in actual hospitals, and there was no prospective clinical trial or recruited reader study. It's a validated proof of concept, not a finished medical product.
Sam: So multi-institution studies and real-world clinical validation are still needed before this could be used in practice.
Alex: The authors are explicit about that. Local calibration audits and prospective deployment studies are necessary next steps before any clinical use.
Sam: When you step back, what's the core takeaway?
Alex: When structured radiology data is already available, a language model operating on a faithful written description of that data can produce clinically meaningful predictions at essentially zero training cost. The key insight is that confidence-aware selective referral — letting the model handle what it's sure about, and deferring what it isn't — is an effective way to combine general-purpose AI with specialist systems in a medically responsible way.
Sam: Language as a bridge between general AI and specialised medical tasks. That's a genuinely practical framing.
Alex: It is. And the mathematical guarantees give it a formal foundation, not just empirical results on a single dataset. Thanks for working through the details with me, Sam.
Sam: Thanks, Alex. And thanks to everyone listening to ResearchPod.