🤖 AI Summary
Frozen vision-language large models (VLLMs) exhibit limited reasoning capacity in radiology report generation, hindering their effective deployment without fine-tuning.
Method: We propose a training-free test-time scaling approach centered on a lightweight Thought Graph Traversal (TGT) framework. TGT encodes a medical knowledge graph as structured prior to guide model traversal of anatomical and pathological findings in clinically coherent order; it integrates dynamic reasoning budget control with a Chain-of-Thought variant to enable traceable, interpretable, self-correcting inference.
Contribution/Results: To our knowledge, this is the first method enabling deep test-time scaling on frozen VLLMs. On standard chest X-ray report generation benchmarks, it significantly outperforms strong prompting baselines while uncovering latent dataset biases. All code, prompt templates, and experimental configurations are fully open-sourced to ensure reproducibility.
📝 Abstract
Test-time scaling offers a promising way to improve the reasoning performance of vision-language large models (VLLMs) without additional training. In this paper, we explore a simple but effective approach for applying test-time scaling to radiology report generation. Specifically, we introduce a lightweight Thought Graph Traversal (TGT) framework that guides the model to reason through organ-specific findings in a medically coherent order. This framework integrates structured medical priors into the prompt, enabling deeper and more logical analysis with no changes to the underlying model. To further enhance reasoning depth, we apply a reasoning budget forcing strategy that adjusts the model's inference depth at test time by dynamically extending its generation process. This simple yet powerful combination allows a frozen radiology VLLM to self-correct and generate more accurate, consistent chest X-ray reports. Our method outperforms baseline prompting approaches on standard benchmarks, and also reveals dataset biases through traceable reasoning paths. Code and prompts are open-sourced for reproducibility at https://github.com/glerium/Thought-Graph-Traversal.