Seeing What Matters: Lesion-Aware High-Resolution Patch Discovery and Fusion for Chest X-ray Report Generation


Abstract

Despite rapid advances in chest X-ray (CXR) foundation models, most radiology report generation (RRG) systems still rely on heavily downsampled inputs (e.g., 256×256) due to the fixed visual token budgets of pretrained vision encoders, suppressing subtle yet clinically important cues present in native-resolution images. However, enabling high-resolution (high-res) perception remains challenging: naïve tiling causes prohibitive token inflation, while global compression suppresses subtle lesions and degrades diagnostic fidelity. Inspired by radiologists’ workflow, localizing suspicious regions before detailed high-res assessment. We propose Lesion-Aware High-Resolution Patch Discovery and Fusion for Chest X-ray Reporting (LePaX), the first RRG framework that enables efficient high-res CXR perception (up to 1920×1920) without increasing the vision-token count. LePaX formulates high-res perception as a constrained spatial resolution allocation problem under a fixed token budget and introduces two key components: Learnable Spatial Resolution Allocation (LSRA), which learns a spatial utility map that adaptively allocates limited high-res capacity to diagnostically relevant regions, enabling targeted extraction of high-res patches from native CXRs; and Global–Regional Fusion (GRF), which performs token-preserving region-to-global refinement by projecting high-resolution regional evidence back onto the global feature grid through spatially aligned resolution write-back, avoiding token inflation. Experiments on multiple CXR benchmarks demonstrate that LePaX consistently improves both clinical and linguistic metrics while enabling native-resolution CXR perception with over 10× fewer visual tokens than naïve high-res tiling.

Figure 1: Left: Radiologists typically follow a two-stage workflow: a global survey to localize suspicious regions, followed by focused examination of these areas to verify specific findings (e.g., enlarged heart). Right: Conventional RRG models rely on fixed-size, low-resolution inputs and lack this global–local reasoning process. Our radiologist-inspired framework instead extracts and integrates high-resolution regional details, producing reports with improved clinical fidelity.

1 Introduction↩︎

Radiology report generation (RRG)[1][6] aims to automatically produce clinically faithful diagnostic narratives and reduce radiologists’ workload. Recent advances in multimodal large language models (MLLMs)[7][9] have improved CXR report generation [2], [10][14]. However, most RRG systems rely on heavily downsampled inputs (e.g., 256×256) to satisfy fixed-size encoder constraints. While resizing simplifies visual encoding, it suppresses subtle but clinically important cues present in native resolution CXRs (raw CXRs are multi-megapixel). This is problematic because diagnostically relevant abnormalities are often small, faint, and spatially sparse. Consequently, findings such as nodules, fine vascular markings, or faint consolidations may be attenuated, weakening lesion localization and increasing the risk of diagnostic omissions.

However, enabling high-resolution perception in MLLMs is computationally challenging. Transformer-based vision encoders represent images as visual tokens whose number grows with spatial resolution, increasing computational cost. A common solution is uniform tiling, where the image is divided into patches, but this strategy is poorly suited for medical imaging. Because abnormalities in CXRs are often sparse and anatomically localized, uniform tiling allocates many visual tokens to non-diagnostic regions, consuming token budgets without improving diagnostic sensitivity (Fig. 1 right).

More fundamentally, such designs fail to reflect how radiologists interpret medical images. Clinical studies show that radiologists typically follow a global-to-local diagnostic workflow: they first perform a global survey to establish anatomical context and identify suspicious regions, and then zoom in for detailed verification [15], [16]. This workflow enables clinicians to allocate visual attention efficiently and integrate local evidence with global context. This raises a central question: How can radiology-aligned high-resolution perception be modeled efficiently within MLLMs so that systems better reflect real diagnostic workflows?

Inspired by this diagnostic process, we argue that high-resolution perception in medical imaging should be selective rather than uniform. Instead of processing all regions at the same resolution, models should allocate high-resolution modeling capacity to diagnostically informative areas while preserving global contextual awareness. We therefore formulate high-resolution perception as a constrained spatial resolution allocation problem, where the model determines where allocating additional high-resolution modeling capacity yields the greatest diagnostic utility under a fixed visual token budget. By enabling non-uniform high-resolution reasoning, this formulation explicitly mirrors the radiologists’ global-to-local diagnostic strategy: global context is first established and then selectively refined with detailed local evidence.

Built on this formulation, we propose LePaX (Lesion-Aware High-Resolution Patch Discovery and Fusion), the first RRG framework enabling efficient high-resolution CXR perception (up to 1920×1920) without increasing visual token count. LePaX consists of two jointly optimized components: Learnable Spatial Resolution Allocation (LSRA) and Global–Regional Fusion (GRF).

LSRA models the radiologists’ “where to zoom” decision. It learns a resolution allocation policy over the global feature grid by predicting a spatial utility map that indicates where additional high-resolution modeling capacity is most beneficial. Under a fixed token budget, LSRA selects a small number of high-resolution patches from the native-resolution image, enabling the model to preserve subtle pathological patterns and fine anatomical structures that would otherwise be suppressed by aggressive downsampling. During training, the allocation policy is jointly guided by weak localization priors (e.g., Grad-CAM [17] priors from disease classifiers) and the end-to-end report generation objective, allowing the model to learn diagnostically meaningful high-resolution allocation strategies.

However, lesion-centric regions alone are insufficient for reliable diagnosis. Radiologists also rely on global image to extract secondary cues (e.g., bilateral symmetry, cardiothoracic ratio) that inform diagnostic decisions [18], [19]. To emulate this holistic reasoning process, we introduce GRF, which models the integration of local evidence with global context. GRF GRF performs spatially grounded resolution write-back, injecting high-resolution regional features into corresponding locations within the global feature grid. This spatially grounded fusion enriches global representations with fine-grained diagnostic evidence while preserving anatomical coherence, all without increasing the visual token budget.

Our key contributions are summarized as follows:

  • We present LePaX, a radiologist-inspired high-resolution RRG framework that formulates lesion-sensitive perception as a spatial resolution allocation problem under fixed visual token budgets, explicitly reflecting the global-to-local diagnostic workflow.

  • We introduce two jointly optimized modules: (1) LSRA, which learns a resolution allocation policy to decide where additional high-resolution capacity should be invested, and (2) GRF, a spatially grounded resolution write-back refinement mechanism that injects high-resolution evidence into the global representation without token explosion.

  • Extensive experiments on MIMIC-CXR, IU-Xray, and CheXpertPlus demonstrate consistent gains on both NLG and clinical metrics.

2 Related Work↩︎

2.1 Radiology Report Generation↩︎

Radiology report generation (RRG) is a challenging task, and recent advances have improved performance [1], [3], [20][22]. Early methods mainly relied on encoder–decoder architectures, while more recent work adopts Transformer-based frameworks [23]. METransformer [20] introduces learnable expert tokens for multi-specialist reasoning. KiUT [3] incorporates structured medical knowledge into a U-shaped Transformer for disease-aware visual–text alignment. DART [1] proposes a disease-aware alignment framework with a self-correcting re-alignment mechanism to improve factual consistency and reduce hallucinations.

The emergence of multimodal large language models (MLLMs)[7][9] has shifted RRG from traditional encoder–decoder paradigms toward unified vision–language generation[2], [11][13], [24][26]. R2GenGPT [10] was among the first to leverage frozen LLMs with efficient visual–language alignment, achieving strong linguistic fluency with minimal training cost. LLaVA-Med [25] extends instruction-tuned LLMs to medical imaging via staged multimodal alignment and instruction tuning. Multi-Phased Supervision [26] adopts curriculum-style training from disease labels to entity–relation reasoning and full report generation. Most recently, MambaXray-VL [13] combines autoregressive visual pretraining and image–text contrastive alignment within an LLaMA-based decoder, achieving strong fluency and clinically grounded reports.

Despite these advances, most frameworks operate on low-resolution CXRs, treating visual tokens as uniformly informative and overlooking the global-to-local reasoning radiologists use to link sparse abnormalities with textual evidence. This limitation motivates our Lesion-Aware High-Resolution Patch Discovery and Fusion for Chest X-ray Report Generation (LePaX), a high-resolution yet efficient framework that preserves fine-grained anatomical details while maintaining global coherence.

2.2 High-resolution Multimodal Large Language Models↩︎

Recent multimodal large language models (MLLMs) process high-resolution or irregularly shaped images through tiling, cropping, or feature compression to balance spatial fidelity and efficiency [7], [8], [27][29]. LLaVA-OneVision [7] adopts the Higher AnyRes scheme with multi-crop inputs and interpolation to maintain token budgets; InternVL-1.5 [27] partitions images into 448×448 tiles with a global thumbnail and compresses features via pixel-shuffle; Qwen2.5-VL [8] employs dynamic-resolution ViTs with windowed attention and token merging for efficient native-scale encoding. Although effective for general MLLMs, these tiling and compression strategies often average fine-grained cues, weakening lesion localization and clinical grounding in radiology report generation (RRG). Unlike natural images, where dense spatial coverage is beneficial, medical imaging features spatially sparse, anatomically localized, and clinically weighted abnormalities. Uniform tiling or global merging thus introduces redundant, non-diagnostic tokens and suppresses disease-relevant evidence. In contrast, LePaX formulates high-resolution modeling as a learnable spatial resolution allocation (LSRA) problem. A utility map predicts informative regions where high-resolution patches are allocated, and the resulting regional features are written back to the global grid via a spatially grounded global–regional fusion (GRF) module, enabling detailed lesion modeling without increasing the token budget.

Figure 2: Overview of the proposed LePaX framework. A lightweight policy head predicts a spatial utility map from global features to allocate a fixed number of high-resolution patches under a resolution budget (LSRA). Global and patch features share a vision encoder and are fused via utility-guided Global–Regional Fusion (GRF), which writes high-resolution evidence back to the global feature grid. The fused visual tokens are compressed by a Perceiver connector and passed to an LLM conditioned on clinical prompts to generate grounded radiology reports.

3 Methodology↩︎

3.1 Overall Framework↩︎

As illustrated in Fig. 2, LePaX is a lesion-aware radiology report generation framework that enables adaptive high-resolution perception under a fixed visual token budget. Rather than uniformly processing high-resolution images, LePaX allocates limited high-resolution capacity to diagnostically informative regions. The framework introduces two key mechanisms. (1) Learnable Spatial Resolution Allocation (LSRA). LSRA predicts a grid-level resolution utility map from global visual features, indicating where additional high-resolution modeling capacity should be allocated. Under a fixed token budget, LSRA selects a small set of spatial locations and extracts high-resolution patches from high-resolution CXRs (up to \(1920{\times}1920\) px), preserving subtle pathological cues while avoiding uniform high-resolution processing. (2) Global–Regional Fusion (GRF). The global image and selected patches are encoded by a shared backbone to ensure geometric alignment in feature space. GRF performs region-conditioned update within the selected regions of interest (ROIs), injecting high-resolution evidence back into their spatially corresponding global tokens without increasing the visual token budget. This produces fused visual representations \(F_g^{\text{fused}} \in \mathbb{R}^{N_v \times D_v}\). The fused representation is then processed by a Perceiver connector and used to condition the LLM for radiology report generation.

Visual Encoder.   The global image and selected high-resolution patches are encoded by a shared vision backbone \(\phi_{\text{img}}\) to maintain geometric alignment in feature space: \[F = \phi_{\text{img}}(X) \in \mathbb{R}^{N_v \times D_v}.\] We denote the global tokens as \(F_g\) and the \(k\)-th patch tokens as \(F_p^k\).

Perceiver Connector.   To align fused visual features with the language model, we employ a Perceiver connector that compresses \(F_g^{\text{fused}}\): \[\begin{align} F_c &= \mathrm{Perceiver}(F_g^{\text{fused}}) \\ &= \mathrm{CrossAttn}\!\big(Q_0,\; K{=}[F_g^{\text{fused}}; Q_0],\; V{=}[F_g^{\text{fused}}; Q_0]\big) \; \in \mathbb{R}^{N_c \times D_c},\; N_c \ll N_v . \end{align}\] where \(Q_0 \in \mathbb{R}^{N_c \times D_c}\) denotes learnable latent tokens and \([\cdot\,;\cdot]\) denotes token-wise concatenation.

Text Decoder.   Conditioned on \(F_c\) and textual prompt \(C\), the LLM autoregressively generates the radiology report \(Y=\{y_1,\ldots,y_T\}\): \[p(y_t \mid F_c, C, y_{<t}) = \mathrm{LLM}(F_c, C, y_{<t}).\]

3.2 Resolution Allocation Formulation↩︎

Let \(\mathbf{X} \in \mathbb{R}^{H_0 \times W_0 \times 3}\) denote a high-resolution chest X-ray and \(\mathbf{X}_{\text{low}}\) its downsampled version used for policy prediction. Given a fixed patch budget \(B\), we formulate report generation as a constrained spatial resolution allocation problem that assigns limited high-resolution modeling capacity to the most informative regions. We define a learnable allocation policy \(\pi_\theta\) that selects spatial locations \(\mathcal{S} = \{(i_k,j_k)\}_{k=1}^{K}\) with \(K \le B\). The objective is \[\max_{\theta} \;\mathbb{E}_{(\mathbf{X},Y)\sim\mathcal{D}} \left[ \log p_\phi\!\left( Y \mid \mathbf{X}_{\text{low}}, \pi_\theta(\mathbf{X}_{\text{low}}, \mathbf{X}) \right) \right] \quad \text{s.t.} \quad |\pi_\theta(\mathbf{X}_{\text{low}}, \mathbf{X})| \le B .\] Here \(\pi_\theta(\mathbf{X}_{\text{low}}, \mathbf{X})\) predicts spatial locations from \(\mathbf{X}_{\text{low}}\) and crops the corresponding high-resolution patches from \(\mathbf{X}\). LSRA parameterizes the allocation policy \(\pi_\theta\), while GRF integrates the selected high-resolution evidence with global representations without increasing the number of visual tokens.

3.3 Learnable Spatial Resolution Allocation (LSRA)↩︎

High-resolution CXRs contain subtle pathological cues, yet most vision encoders operate on low-resolution inputs, attenuating fine-grained diagnostic patterns. Meanwhile, clinically relevant findings are often spatially sparse, making uniform high-resolution processing computationally inefficient. To address this, LSRA learns a spatial utility function over the global feature grid, enabling adaptive high-resolution allocation under a fixed resolution budget.

Resolution Utility Learning.   Let \(F_g \in \mathbb{R}^{C \times H \times W}\) denote the global feature extracted from the low-resolution CXR. LSRA predicts a spatial allocation map \[Z = g(F_g) \in \mathbb{R}^{1 \times H \times W}, \qquad U = \sigma(Z),\] where \(U_{ij}\) represents the utility of allocating additional modeling capacity to location \((i,j)\).

Disease-Aware Spatial Prior.   Learning a spatial allocation policy from report supervision alone can be unstable during early optimization. Since most medical datasets lack pixel-level lesion annotations, we introduce a disease-aware spatial bias by deriving a coarse prior using Grad-CAM from a pretrained multi-label disease classifier \(f_{\text{cls}}\). Given an input image \(X\), let \(A \in \mathbb{R}^{C_a \times H_0 \times W_0}\) denote the final convolutional feature map and \(y^c\) the logit of class \(c\). The Grad-CAM activation for class \(c\) is

\[H^{c} = \mathrm{ReLU} \left( \sum_{k=1}^{C_a} \alpha_k^c A^k \right), \quad \alpha_k^c = \frac{1}{H_0W_0} \sum_{i,j} \frac{\partial y^c}{\partial A^k_{ij}} .\]

Class-wise activation maps are aggregated and normalized to obtain a spatial prior \(M^{\text{cam}}\), providing weak spatial guidance for the allocation policy. The report generation loss further refines the utility toward task-relevant regions. We implement this prior as a regularization term on the allocation logits:

\[\mathcal{L}_{\text{prior}} = \mathrm{BCEWithLogits}(Z, M^{\text{cam}}). \label{eq:policy}\tag{1}\]

This prior is used only to regularize LSRA during training; at inference, patch locations are selected solely from the learned utility map \(U\), without computing Grad-CAM or invoking any external disease classifier.

Allocation Strategy.   Given the utility map \(U=\sigma(Z)\), LSRA allocates a fixed high-resolution budget by selecting the top-\(K\) spatial locations on the grid.

Training.   To enable gradient-based optimization of the allocation policy, we employ a Gumbel-Top-\(K\) relaxation with a straight-through estimator (STE). During training, Gumbel noise perturbs the allocation logits to produce stochastic rankings, from which a hard Top-\(K\) mask is obtained for patch extraction. \(\mathcal{L}_{\text{policy}}\) provides a spatial prior for the allocation logits, while \(\mathcal{L}_{\text{RRG}}\) (defined in Eq. 3 ) supplies additional task-driven signals, encouraging the learned utility map to prioritize regions beneficial for report generation.

Inference.   At inference time, LSRA selects the \(K\) spatial locations with the highest utilities. To encourage spatial diversity and reduce redundant overlap, we apply an NMS-like constraint that enforces a minimum grid distance \(d_{\min}\): \[\mathcal{S}=\{(i_k,j_k)\}_{k=1}^{K} =\mathrm{TopK\!+\!NMS}(U;K,d_{\min}).\]

Each selected location defines a region-of-interest (ROI) \(\Omega_k\) on the global feature grid. The ROI center is projected to the original image to obtain pixel coordinates \((x_k,y_k)\), from which a fixed-size patch is extracted: \[X_k=\mathrm{Crop}\big(X;x_k,y_k,p_w,p_h\big), \qquad p_w=p_h=384.\]

We emphasize that LSRA is not a Grad-CAM-based crop selector: \(M^{\text{cam}}\) only regularizes allocation learning during training, whereas inference selects patches solely from the learned utility map \(U=\sigma(Z)\) without Grad-CAM or external classifiers. Thus, LSRA acts as an end-to-end adaptive resolution allocation policy for report generation.

3.4 Global-Regional Fusion (GRF)↩︎

The global image and selected patches are encoded by a shared backbone, producing \(F_g\) and \(\{F_p^k\}_{k=1}^{K}\). Rather than expanding the visual token sequence by concatenating patch tokens, GRF performs token-budget-preserving resolution refinement by injecting localized high-resolution evidence back into the global representation. For each selected region \(\Omega_k\), we extract the corresponding global tokens \(F_g^{\text{roi}} = F_g[\Omega_k]\) and perform a region-conditioned update: \[\label{eq:grf-update} \bar{F}_g^{\text{roi}} = F_g^{\text{roi}} + \mathcal{U}\!\left(F_g^{\text{roi}}, F_p^k\right),\tag{2}\]

where \(\mathcal{U}(\cdot)\) integrates high-resolution patch features into the aligned global tokens. In practice, \(\mathcal{U}\) is implemented as a Transformer-style cross-attention block

\[\mathcal{U}(F_g^{\text{roi}},F_p^k) = W_O\,\mathrm{Attn}(Q,K,V) + \mathrm{FFN}\!\big(\mathrm{LN}(\cdot)\big),\]

with \(Q = W_Q(F_g^{\text{roi}} + P_Q), K = W_K(F_p^k + P_K), V = W_V(F_p^k + P_K)\). The refined tokens are written back to their original spatial coordinates \(F_g[\Omega_k] \leftarrow \bar{F}_g^{\text{roi}}\), yielding the fused representation \(F_g^{\text{fused}}\).

3.5 Enhanced Report Generation↩︎

The fused representation \(F_g^{\text{fused}}\) conditions the LLM together with clinical context \(C\) to generate the final report: \[Y^\ast = \mathop{\mathrm{arg\,max}}_{\hat{Y} \in \mathcal{Y}} \sum_{t=1}^{T} \log p(\hat{y}_t \mid F_g^{\text{fused}}, C, \hat{y}_{<t}).\]

3.6 Training Objective↩︎

The model is trained end-to-end with a joint objective: \[\mathcal{L} = \mathcal{L}_{\text{RRG}} + \lambda \mathcal{L}_{\text{policy}}, \qquad \mathcal{L}_{\text{RRG}} = -\sum_{t=1}^{T} \log p(y_t \mid F_g^{\text{fused}}, C, y_{<t}). \label{eq:loss}\tag{3}\] \(\mathcal{L}_{\text{policy}}\) provides spatial priors, while \(\mathcal{L}_{\text{RRG}}\) supplies task-driven signals that encourage the allocation policy to focus on regions beneficial for report generation.

4 Experiments↩︎

4.1 Datasets↩︎

IU-Xray [30] contains 7,470 images and 3,955 reports and is a standard benchmark for RRG. Following [31], we adopt the same 7:1:2 split for training, validation, and testing, and report results on the official test set.

MIMIC-CXR [32] is a large-scale dataset containing 377,110 images and 227,835 reports from 64,588 patients. Following [31], we use the same split with 270,790 images for training and 3,858 for testing.

CheXpertPlus [33] is a large-scale benchmark for radiology modeling with 223,228 chest X-rays and 187,711 reports. Following CXPMRG-Bench [13], we use the Findings section as ground truth and adopt a 7:1:2 split for training, validation, and testing (40,463/5,780/11,562).

4.2 Experimental Settings↩︎

Evaluation Metrics. (1) NLG Metrics.  Following prior work [31], we evaluate linguistic quality using BLEU [34], ROUGE-L [35], and METEOR [36]. (2) Clinical Metrics.  For clinical correctness, we adopt widely used metrics: CheXpert Clinical Efficacy [37] evaluates alignment between generated findings and ground truth; RadGraph F\(_1\) [38] measures overlap in entity–relation structures; BERTScore [39] assesses semantic similarity via contextual embeddings; RadCliQ [40] combines multiple factors and correlates with radiologist preference. (3) LLM-based Metrics.  We further include two LLM-based metrics for human-aligned factuality: GREEN [41] evaluates factual consistency with clinical entities; RateScore [42] measures overall report quality including fluency and diagnostic accuracy.

@l|l|l|ccccccc@ Dataset & Methods & Publication & BLEU-1 & BLEU-2 & BLEU-3 & BLEU-4 & METEOR & ROUGE
& R2Gen\(^{\dagger}\) [31] & EMNLP 2020 & 0.353 & 0.218 & 0.145 & 0.103 & 0.142 & -
& R2GenCMN\(^{\dagger}\) [43] & ACL-IJCNLP 2021 & 0.353 & 0.218 & 0.148 & 0.106 & 0.142 & -
& CvT2DistilGPT2\(^{\dagger}\) [44] & AIM 2023 & 0.393 & 0.248 & 0.171 & 0.127 & - & 0.155
& METransformer\(^{\dagger}\) [20] & CVPR 2023 & 0.386 & 0.250 & 0.169 & 0.124 & 0.152 & 0.291
& DCL\(^{\dagger}\) [45] & CVPR 2023 & - & - & - & 0.109 & 0.150 & 0.284
& KiUT\(^{\dagger}\) [3] & CVPR 2023 & 0.393 & 0.243 & 0.159 & 0.113 & 0.160 & 0.285
& R2GenGPT\(^{\dagger}\) (7B) [10] & Meta-Rad 2023 & 0.411 & 0.267 & 0.186 & 0.134 & 0.160 & 0.297
& EKAGen\(^{\dagger}\) [22] & CVPR 2024 & 0.419 & 0.258 & 0.170 & 0.119 & 0.157 & 0.287
& Bootstrapping\(^{\dagger}\) (14.2B) [12] & AAAI 2024 & 0.402 & 0.262 & 0.180 & 0.128 & 0.175 & 0.291
& Multi-Grained\(^{\dagger}\) [5] & TMI 2024 & 0.406 & 0.267 & 0.190 & 0.141 & 0.163 & 0.309
& REVTAF-RRG\(^{\dagger}\) [46] & ICCV 2025 & 0.465 & 0.318 & 0.235 & 0.182 & 0.199 & 0.336
& DAMPER\(^{\dagger}\) [47] & AAAI 2025 & 0.402 & 0.284 & 0.227 & 0.193 & 0.289 & 0.301
& DATR\(^{\dagger}\) [1] & CVPR 2025 & 0.437 & 0.279 & 0.191 & 0.137 & 0.175 & 0.310
& MultiP-R2Gen\(^{\dagger}\) (7B) [26] & TMI 2025 & 0.425 & 0.279 & 0.194 & 0.140 & 0.167 & 0.307
& KACL\(^{\dagger}\) (8B) [48] & MICCAI 2025 & 0.414 & 0.270 & 0.184 & 0.136 & 0.169 & 0.303
& MambaXray-VL-Large\(^{\dagger}\) (7B) [13] & CVPR 2025 & 0.422 & 0.268 & 0.184 & 0.133 & 0.167 & 0.289
& Ours (4B) & ECCV 2026 & 0.501 & 0.376 & 0.304 & 0.253 & 0.336 & 0.380
& R2Gen\(^{\dagger}\) [31] & EMNLP 2020 & 0.470 & 0.304 & 0.219 & 0.165 & 0.187 & 0.371
& R2GenCMN\(^{\dagger}\) [43] & ACL-IJCNLP 2021 & 0.475 & 0.309 & 0.222 & 0.170 & 0.191 & 0.375
& METransformer\(^{\dagger}\) [20] & CVPR 2023 & 0.483 & 0.322 & 0.228 & 0.172 & 0.192 & 0.380
& KiUT\(^{\dagger}\) [3] & CVPR 2023 & 0.525 & 0.360 & 0.251 & 0.185 & 0.242 & 0.409
& R2GenGPT\(^{\dagger}\) (7B) [10] & Meta-Rad 2023 & 0.488 & 0.316 & 0.228 & 0.173 & 0.211 & 0.377
& EKAGen\(^{\dagger}\) [22] & CVPR 2024 & 0.497 & 0.339 & 0.250 & 0.190 & 0.210 & 0.399
& Bootstrapping\(^{\dagger}\) (14.2B) [12] & AAAI 2024 & 0.499 & 0.323 & 0.238 & 0.184 & 0.208 & 0.390
& Multi-Grained\(^{\dagger}\) [5] & TMI 2024 & 0.472 & 0.321 & 0.234 & 0.175 & 0.192 & 0.379
& REVTAF-RRG\(^{\dagger}\) [46] & ICCV 2025 & 0.420 & 0.249 & 0.159 & 0.107 & 0.176 & 0.309
& DAMPER\(^{\dagger}\) [47] & AAAI 2025 & 0.520 & 0.383 & 0.300 & 0.225 & 0.284 & 0.397
& DATR\(^{\dagger}\) [1] & CVPR 2025 & 0.486 & 0.348 & 0.265 & 0.208 & 0.205 & 0.411
& MultiP-R2Gen\(^{\dagger}\) (7B) [26] & TMI 2025 & 0.515 & 0.332 & 0.238 & 0.178 & 0.216 & 0.386
& KACL\(^{\dagger}\) (8B) [48] & MICCAI 2025 & 0.501 & 0.326 & 0.244 & 0.184 & 0.211 & 0.385
& MambaXray-VL-Large\(^{\dagger}\) (7B) [13] & CVPR 2025 & 0.491 & 0.330 & 0.241 & 0.185 & 0.216 & 0.371
& Ours (4B) & ECCV 2026 & 0.531 & 0.393 & 0.324 & 0.235 & 0.316 & 0.402

Implementation Details. Our model builds on BLIP-3 [9] with a SigLIP vision encoder [49], a Perceiver Resampler [50], and a Phi-3-mini\(_{3.8\text{B}}\) language model [51]. LSRA is implemented as a lightweight convolutional policy head on the global feature grid (e.g., \(27\times27\)), using a depthwise \(3\times3\) convolution followed by two \(1\times1\) convolutions to predict a resolution utility map. During training, Grad-CAM maps from a ResNet-34 [17], [52] provide a disease-informed spatial prior to stabilize policy learning (not used at inference). Since BLIP-3 is not designed for medical imaging, all components are fine-tuned: LoRA [53] is applied to the vision encoder and language model (\(r{=}32, \alpha{=}64\)), while the Perceiver Resampler is fully optimized. Training runs for three epochs using AdamW (\(1{\times}10^{-4}\) LR, cosine schedule, warmup ratio 0.03) with batch size 16.

4.3 Main Results↩︎

We evaluate LePaX on MIMIC-CXR, IU-Xray, and CheXpertPlus using both NLG and clinical metrics.

NLG Metrics.  As shown in Table ¿tbl:tab:comparison95sota? and Table 1, our method consistently outperforms prior approaches across all datasets and NLG metrics. On MIMIC-CXR, it achieves BLEU-4 / METEOR / ROUGE scores of 0.253 / 0.336 / 0.380, surpassing previous encoder–decoder, transformer, and LLM-based methods. On IU-Xray, it reaches 0.235 / 0.316 / 0.402, yielding an average 11% improvement over the previous best. On CheXpertPlus, our model also achieves state-of-the-art performance on both NLG and clinical efficacy metrics, demonstrating strong generalization. Together, these results indicate that our high-resolution patch-guided representation captures subtle disease cues while maintaining coherent global–local semantics, leading to accurate and clinically faithful reports.

Table 1: Experimental results on the CXPMRG-Bench [13]. NLG metrics: BLEU-4, ROUGE, METEOR. CE metrics: Precision, Recall, and F1.
Methods Publish BLEU-4 ROUGE METEOR Precision Recall F1
ORGan [21] ACL 2023 0.086 0.261 0.135 0.288 0.287 0.277
M2KT [4] MIA 2021 0.078 0.247 0.101 0.044 0.142 0.058
TIMER [54] CHIL 2023 0.083 0.254 0.121 0.345 0.238 0.234
CvT2DistilGPT2 [44] AIM 2023 0.067 0.238 0.118 0.285 0.252 0.246
R2Gen [31] EMNLP 2020 0.081 0.246 0.113 0.318 0.200 0.181
R2GenCMN [43] ACL 2021 0.087 0.256 0.127 0.329 0.241 0.231
Zhu et al. [55] MICCAI 2023 0.074 0.235 0.128 0.217 0.308 0.205
CAMANet [56] IEEE JBHI 2023 0.083 0.249 0.118 0.328 0.224 0.216
Token-Mixer [57] IEEE TMI 2023 0.091 0.261 0.135 0.309 0.270 0.288
PromptMRG [58] AAAI 2024 0.095 0.222 0.121 0.258 0.265 0.281
R2GenGPT [10] Meta-Rad.2023 0.101 0.266 0.145 0.315 0.244 0.260
R2GenCSR [59] arXiv 2024 0.100 0.265 0.146 0.315 0.247 0.259
MambaXray-VL-B [13] CVPR 2025 0.105 0.267 0.149 0.333 0.264 0.273
MambaXray-VL-L [13] CVPR 2025 0.112 0.276 0.157 0.377 0.319 0.335
Ours ECCV 2026 0.138 0.252 0.227 0.420 0.368 0.363

5pt

Clinical Metrics.   As shown in Table 2 and Table 3, our model achieves strong clinical fidelity across evaluation metrics. Since large-scale expert review of thousands of reports is impractical, we adopt RadCliQ and GREEN, human-aligned metrics trained on radiologist ratings that correlate strongly with expert judgments. On MIMIC-CXR, our model achieves the highest RadGraph F\(_1\) (0.346) and BERTScore (0.526), together with a lower RadCliQ (0.665\(\downarrow\)), indicating closer alignment with expert reports. It also obtains 0.413 GREEN and 0.627 RateScore on LLM-based evaluations. Under the CheXpert Clinical Efficacy framework, the model reaches 0.595 precision, 0.479 recall, and 0.531 F\(_1\), surpassing recent transformer- and LLM-based baselines.

Table 2: Comparison with state-of-the-art methods on MIMIC-CXR.RG\(_{F1}\): RadGraph F1;BERT: BERTScore;CliQ: RadCliQ;GREEN: clinical consistency score;Rate: human rating score.
Methods Publication RG\(_{F1}\)(\(\uparrow\)) BERT(\(\uparrow\)) CliQ(\(\downarrow\)) GREEN(\(\uparrow\)) Rate(\(\uparrow\))
R2Gen [31] EMNLP 2020 0.172 0.406 1.228 0.276 0.526
CvT2DistilGPT2 [44] AI in Med 2023 0.196 0.374 1.220 0.320 0.527
RaDialog-RG [11] MIDL 2024 - 0.400 - - -
PromptMRG [58] AAAI 2024 0.190 0.357 1.169 0.287 0.528
R2GenGPT [10] Meta-Rad 2023 0.187 0.415 1.207 0.300 0.528
KARGEN [2] MICCAI 2024 0.203 0.421 1.165 0.308 0.533
EKAGen [22] CVPR 2024 0.199 0.412 1.126 0.256 0.512
MultiP-R2Gen [26] TMI 2025 0.208 0.425 1.140 - -
Ours ECCV 2026 0.346 0.526 0.665 0.413 0.627
Table 3: Evaluation of CheXpert clinical efficacy metrics on the MIMIC-CXR dataset.
Methods Publication Precision Recall F1
R2Gen [31] EMNLP 2020 0.333 0.273 0.276
R2GenGPT [10] Meta-Rad 2023 0.392 0.387 0.389
METransformer [20] CVPR 2023 0.364 0.309 0.311
Multi-Grained [5] TMI 2024 0.457 0.337 0.330
MambaXray-VL-Large [13] CVPR 2025 0.371 0.321 0.340
KACL [48] MICCAI 2025 0.503 0.442 0.469
DAMPER [47] AAAI 2025 0.512 0.473 0.507
DART [1] CVPR 2025 0.520 0.546 0.533
Ours ECCV 2026 0.595 0.479 0.531

4.4 Ablation Study↩︎

Contribution of Each Component.   We perform ablation studies on MIMIC-CXR (Table 4) to evaluate each component. The baseline without either module achieves the lowest performance, indicating limited ability to capture fine-grained pathological cues.

GRF.   Introducing GRF with randomly sampled patches already improves performance (BLEU-4: +0.006, METEOR: +0.013, ROUGE: +0.010) under the same patch budget as LSRA, indicating that regional high-resolution evidence becomes beneficial when fused with global representations.

LSRA.   Replacing random sampling with guided region selection further improves performance. Grad-CAM increases B-4 to 0.251, while LSRA achieves the best result (B-4: 0.253) under the same token budget (128) and comparable inference time, demonstrating the advantage of task-driven resolution allocation.

Policy supervision.   Training LSRA with report-only supervision leads to less stable optimization, as the report objective provides indirect signals for discrete region allocation. Adding policy supervision improves performance, indicating that report supervision and spatial priors provide complementary guidance.

Fusion strategy.   Simply concatenating tokens without GRF degrades performance and increases the input sequence length (e.g., \((1_{\text{global}} + 4_{\text{patches}})\times128 = 640\) tokens), resulting in much higher inference cost (6.5s per case).

Full model.   The complete model maintains a fixed token budget (128 tokens) while enriching token semantics through GRF achieving the best performance with only a small inference overhead (2.7s per case). As shown in Fig. 5 (b), GRF increases feature variance and L2 norm, indicating that high-resolution regional evidence enhances token expressiveness without increasing token count.

Overall, these results highlight the complementary roles of LSRA and GRF: LSRA adaptively allocates resolution to informative regions, while GRF integrates regional evidence into global representation in a token-efficient manner.

Clinical Evaluation.   We further evaluate clinical reliability using RadGraph F\(_1\), BERTScore, and RadCliQ (Fig. 3 (a)). LePaX improves all metrics, achieving relative gains of +8.5% in RadGraph F\(_1\), +5.0% in BERTScore, and +13.5% in \(1/\mathrm{RadCliQ}\). These results indicate improved factual correctness and clinical consistency in the generated reports.

Table 4: Ablation study on MIMIC-CXR.GRF: Global–Regional Fusion; Grad-CAM: external localization-based patch selection; LSRA: Learnable Spatial Resolution Allocation.LSRA Loss: report-only supervision vs.report + policy supervision.
Modules NLG Metrics #Vision Tokens Inference Time (case)
GRF Grad-CAM LSRA B-4 METEOR ROUGE
0.237 0.313 0.350 128 2.3s
0.243 0.326 0.360 128 2.6s
0.234 0.318 0.334 \(\sim\)640 6.5s
0.235 0.318 0.333 \(\sim\)640 6.5s
0.251 0.334 0.379 128 2.6s
✔ (report-only) 0.246 0.329 0.365 128 2.7s
✔ (report+policy) 0.253 0.336 0.380 128 2.7s

Resolution Allocation Efficiency.   We analyze the impact of input resolution on report generation (Table 5). Increasing resolution from \(384\) to \(1024\) yields only marginal gains while greatly increasing cost, with vision tokens rising from 128 to 1280 and inference time reaching 10.0s per case. In contrast, LePaX allocates high-resolution capacity to informative regions under a fixed token budget. Even with native-resolution images (up to \(1920\times1920\)), it achieves better performance with only a small increase in inference time, demonstrating greater efficiency than uniform resolution scaling.

Table 5: Comparison of uniform resolution scaling and LePaX. Selective high-resolution allocation achieves better report quality under a fixed visual token budget with significantly lower computational cost.
Setting Report Quality Metrics Efficiency
B-4 ROUGE RG\(_{F1}\) BERT 1/CliQ Vision Tokens Time/Case GPU Mem
Uniform-384 0.237 0.350 0.319 0.501 1.325 128 2.3s 36GB
Uniform-1024 0.240 0.352 0.320 0.504 1.329 1280 10.0s 65GB
Ours-1024 0.245 0.364 0.331 0.513 1.389 128 2.4s 40GB
Ours-1920 0.253 0.380 0.346 0.526 1.504 128 2.7s 46GB
Figure 3: Ablation studies on MIMIC-CXR.

Ablation on Top-K Region Selection.  We evaluate different Top-K values (1, 3, 5, 7) for high-resolution patch extraction (Fig. 3 (b)). Increasing K improves performance by incorporating more disease-relevant regions, while overly large K introduces redundancy and slightly degrades report quality. Top-K=5 achieves the best results (B-4: 0.253, METEOR: 0.336, ROUGE-L: 0.380).

Figure 4: Qualitative comparison between the baseline and our method on two MIMIC-CXR cases. The main clinical findings are highlighted in different colors for clarity.

4.5 Qualitative Analysis↩︎

Fig. 4 compares the baseline and LePaX on MIMIC-CXR cases. Grad-CAM heatmaps show that diagnostically relevant regions occupy only a small portion of the image, motivating selective high-resolution patch extraction. While the baseline detects findings such as pleural effusion and tube placement, its descriptions are often coarse or incomplete. In contrast, LePaX integrates lesion-focused details with global context to produce more precise and clinically grounded reports. For example, in Case I, the model localizes the endotracheal tube relative to the carina and identifies the orogastric tube below the diaphragm, consistent with the reference report. Fig.5 (a) further visualizes selected low-resolution (LR) regions, their corresponding high-resolution (HR) patches, and LR\(\rightarrow\)HR fusion attention maps. Red boxes denote LR regions selected for high-resolution processing. In Case I, attention highlights subtle post-surgical structures such as surgical clips, while in Case II it follows the course of the right internal jugular line in the upper mediastinum. These examples show how GRF refines coarse spatial cues and enhances diagnostically relevant regions, enabling spatially grounded reasoning beyond classifier-driven activation.

Additionally, Fig. 6 compares LSRA and Grad-CAM region allocation. Red boxes denote LSRA predictions and green boxes indicate Grad-CAM guidance. Across the examples, LSRA consistently captures clinically relevant regions highlighted by Grad-CAM. Cases 2–4 further demonstrate the effect of report-level supervision, where the learned policy better localizes medical devices (Cases 2–3) and pleural effusion (Case 4). These results show that LSRA preserves diagnostically important regions while adapting toward report-oriented spatial relevance.

a
b

Figure 5: Analysis of the proposed Global–Regional Fusion (GRF). (a) Visualization of selected regions and LR\(\rightarrow\)HR fusion attention. (b) Feature statistics before and after fusion, showing increased variance and L2 norm after GRF.. a — Adaptive region selection and LR\(\rightarrow\)HR fusion, b — Feature statistics before and after GRF

Figure 6: Qualitative comparison of region allocation. Red boxes denote LSRA predictions and green boxes indicate Grad-CAM guidance. LSRA consistently identifies clinically relevant regions similar to Grad-CAM. Cases 2–4 further show that report-level supervision helps the learned policy better localize medical devices (Cases 2–3) and pleural effusion (Case 4).

5 Conclusions↩︎

We propose LePaX, a high-resolution RRG framework with two complementary components: LSRA for lesion-focused patch extraction and GRF for hierarchical fusion of regional and global cues. This shifts RRG from coarse, pixel-limited encoding toward clinically guided high-resolution understanding. By combining lesion-focused precision with context-aware interpretation, LePaX achieves consistent gains over prior methods on both lexical and clinical metrics across MIMIC-CXR, IU-Xray, and CheXpertPlus.

References↩︎

[1]
S.-J. Park, K.-S. Heo, D.-H. Shin, Y.-H. Son, J.-H. Oh, and T.-E. Kam, “DART: Disease-aware image-text alignment and self-correcting re-alignment for trustworthy radiology report generation , booktitle = Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR),” 2025, pp. 15580–15589.
[2]
Y. Li, Z. Wang, Y. Liu, L. Wang, L. Liu, and booktitle=International. C. on M. I. C. and C.-A. I. Zhou Luping, “KARGEN: Knowledge-enhanced automated radiology report generation using large language models,” 2024 , organization={Springer}, pp. 382–392.
[3]
Z. Huang, X. Zhang, and booktitle=Proceedings. of the I. C. on C. V. and P. R. Zhang Shaoting, “Kiut: Knowledge-injected u-transformer for radiology report generation,” 2023, pp. 19809–19818.
[4]
S. Yang, X. Wu, S. Ge, Z. Zheng, S. K. Zhou, and L. Xiao, “Radiology report generation with a learned knowledge base and multi-modal alignment,” Medical Image Analysis, vol. 86, p. 102798, 2023.
[5]
A. Liu, Y. Guo, J. Yong, and F. Xu, “Multi-grained radiology report generation with sentence-level image-language contrastive learning,” IEEE Transactions on Medical Imaging, 2024.
[6]
S. Zhou, Y. Li, Y. Liu, L. Liu, L. Wang, and L. Zhou, “A review of longitudinal radiology report generation: Dataset composition, methods, and performance evaluation,” arXiv preprint arXiv:2510.12444, 2025.
[7]
B. Li et al., “LLaVA-OneVision: Easy visual task transfer,” Transactions on Machine Learning Research, 2024.
[8]
S. Bai et al., “Qwen2. 5-vl technical report,” arXiv preprint arXiv:2502.13923, 2025.
[9]
L. Xue et al., “Xgen-mm (blip-3): A family of open large multimodal models,” arXiv preprint arXiv:2408.08872, 2024.
[10]
Z. Wang, L. Liu, L. Wang, and L. Zhou, “R2gengpt: Radiology report generation with frozen llms,” Meta-Radiology, vol. 1, no. 3, p. 100033, 2023.
[11]
C. Pellegrini, E. Özsoy, B. Busam, N. Navab, and M. Keicher, “RaDialog: A large vision-language model for radiology report generation and conversational assistance,” arXiv preprint arXiv:2311.18681, 2023.
[12]
C. Liu, Y. Tian, W. Chen, Y. Song, and booktitle=Proceedings. of the A. C. on A. I. Zhang Yongdong, “Bootstrapping large language models for radiology report generation,” 2024, vol. 38, pp. 18635–18643.
[13]
X. Wang et al., “Cxpmrg-bench: Pre-training and benchmarking for x-ray medical report generation on chexpert plus dataset,” 2025, pp. 5123–5133.
[14]
Y. Liu, Y. Li, T. Chen, L. Liu, L. Wang, and booktitle=Proceedings. of the I. C. on C. V. and P. R. Zhou Luping, “SAT-RRG: LLM-guided self-adaptive training for radiology report generation with token-level push-pull optimization,” 2026, pp. 35363–35372.
[15]
J. C. Seah et al., “Effect of a comprehensive deep-learning model on the accuracy of chest x-ray interpretation by radiologists: A retrospective, multireader multicase study,” The Lancet Digital Health, vol. 3, no. 8, pp. e496–e506, 2021.
[16]
P. C. Brennan et al., “Radiologists can detect the ?gist?of breast cancer before any overt signs of cancer appear,” Scientific reports, vol. 8, no. 1, p. 8717, 2018.
[17]
R. R. Selvaraju, M. Cogswell, A. Das, R. Vedantam, D. Parikh, and booktitle=Proceedings. of the I. international conference on computer vision Batra Dhruv, “Grad-cam: Visual explanations from deep networks via gradient-based localization,” 2017, pp. 618–626.
[18]
H. L. Kundel, C. F. Nodine, E. F. Conant, and S. P. Weinstein, “Holistic component of image perception in mammogram interpretation: Gaze-tracking study,” Radiology, vol. 242, no. 2, pp. 396–402, 2007.
[19]
Z. Gandomkar et al., “Global processing provides malignancy evidence complementary to the information captured by humans or machines following detailed mammogram inspection,” Scientific reports, vol. 11, no. 1, p. 20122, 2021.
[20]
Z. Wang, L. Liu, L. Wang, and booktitle=Proceedings. of the I. C. on C. V. and P. R. Zhou Luping, “Metransformer: Radiology report generation by transformer with multiple learnable expert tokens,” 2023 title={KARGEN: Knowledge-enhanced Automated Radiology Report Generation Using Large Language Models}, author={Li, Yingshu and Wang, Zhanyu and Liu, Yunyi and Wang, Lei and Liu, Lingqiao and Zhou, Luping}, booktitle={International Conference on Medical Image Computing and Computer-Assisted Intervention}, pages={382--392}, year={2024}, organization={Springer}, pp. 11558–11567.
[21]
W. Hou, K. Xu, Y. Cheng, W. Li, and J. Liu, “ORGAN: Observation-guided radiology report generation via tree reasoning,” arXiv preprint arXiv:2306.06466, 2023.
[22]
S. Bu, T. Li, Y. Yang, and booktitle=Proceedings. of the I. C. on C. V. and P. R. Dai Zhiming, “Instance-level expert knowledge and aggregate discriminative attention for radiology report generation,” 2024, pp. 14194–14204.
[23]
A. Vaswani, “Attention is all you need,” Advances in Neural Information Processing Systems, 2017.
[24]
Y. Li et al., “A comprehensive study of GPT-4V’s multimodal capabilities in medical imaging,” medRxiv, pp. 2023–11, 2023.
[25]
C. Li et al., “Llava-med: Training a large language-and-vision assistant for biomedicine in one day,” Advances in Neural Information Processing Systems, vol. 36, pp. 28541–28564, 2023.
[26]
Z. Chen et al., “Enhancing radiology report generation via multi-phased supervision,” IEEE Transactions on Medical Imaging, 2025.
[27]
Z. Chen et al., “How far are we to gpt-4v? Closing the gap to commercial multimodal models with open-source suites,” Science China Information Sciences, vol. 67, no. 12, p. 220101, 2024.
[28]
D. Zhu, J. Chen, X. Shen, X. Li, and M. Elhoseiny, “Minigpt-4: Enhancing vision-language understanding with advanced large language models,” arXiv preprint arXiv:2304.10592, 2023.
[29]
Q. Ye et al., “Mplug-owl2: Revolutionizing multi-modal large language model with modality collaboration,” 2024, pp. 13040–13051.
[30]
D. Demner-Fushman et al., “Preparing a collection of radiology examinations for distribution and retrieval,” Journal of the American Medical Informatics Association, vol. 23, no. 2, pp. 304–310, 2016.
[31]
Z. Chen, Y. Song, T.-H. Chang, and X. Wan, “Generating radiology reports via memory-driven transformer,” arXiv preprint arXiv:2010.16056, 2020.
[32]
A. E. Johnson et al., “MIMIC-CXR-JPG, a large publicly available database of labeled chest radiographs,” arXiv preprint arXiv:1901.07042, 2019.
[33]
P. Chambon et al., “Chexpert plus: Augmenting a large chest x-ray dataset with text radiology reports, patient demographics and additional image formats,” arXiv preprint arXiv:2405.19538, 2024.
[34]
K. Papineni, S. Roukos, T. Ward, and booktitle=Proceedings. of the 40th. annual meeting of the A. for C. L. Zhu Wei-Jing, “Bleu: A method for automatic evaluation of machine translation,” 2002, pp. 311–318.
[35]
booktitle=Text. summarization branches out Lin Chin-Yew, “Rouge: A package for automatic evaluation of summaries,” 2004, pp. 74–81.
[36]
S. Banerjee and booktitle=Proceedings. of the acl workshop on intrinsic and extrinsic evaluation measures for machine translation and/or. summarization Lavie Alon, “METEOR: An automatic metric for MT evaluation with improved correlation with human judgments,” 2005, pp. 65–72.
[37]
J. Irvin et al., “Chexpert: A large chest radiograph dataset with uncertainty labels and expert comparison,” 2019, vol. 33, pp. 590–597.
[38]
S. Jain et al., “Radgraph: Extracting clinical entities and relations from radiology reports,” arXiv preprint arXiv:2106.14463, 2021.
[39]
T. Zhang, V. Kishore, F. Wu, K. Q. Weinberger, and Y. Artzi, “Bertscore: Evaluating text generation with bert,” arXiv preprint arXiv:1904.09675, 2019.
[40]
F. Yu et al., “Evaluating progress in automatic chest x-ray radiology report generation,” Patterns, vol. 4, no. 9, 2023.
[41]
S. Ostmeier et al., “GREEN: Generative radiology report evaluation and error notation,” 2024, pp. 374–390.
[42]
W. Zhao, C. Wu, X. Zhang, Y. Zhang, Y. Wang, and booktitle=Proceedings. of the 2024. C. on E. M. in N. L. P. Xie Weidi, “RaTEScore: A metric for radiology report generation,” 2024, pp. 15004–15019.
[43]
Z. Chen, Y. Shen, Y. Song, and X. Wan, “Cross-modal memory networks for radiology report generation,” arXiv preprint arXiv:2204.13258, 2022.
[44]
A. Nicolson, J. Dowling, and B. Koopman, “Improving chest x-ray report generation by leveraging warm starting,” Artificial intelligence in medicine, vol. 144, p. 102633, 2023.
[45]
M. Li, B. Lin, Z. Chen, H. Lin, X. Liang, and booktitle=Proceedings. of the I. C. on C. V. and P. R. Chang Xiaojun, “Dynamic graph enhanced contrastive learning for chest x-ray report generation,” 2023, pp. 3334–3343.
[46]
Q. Zhou et al., “Learnable retrieval enhanced visual-text alignment and fusion for radiology report generation,” 2025, pp. 22529–22538.
[47]
X. Huang, W. Chen, J. Liu, Q. Lu, X. Luo, and booktitle=Proceedings. of the A. C. on A. I. Shen Linlin, “DAMPER: A dual-stage medical report generation framework with coarse-grained MeSH alignment and fine-grained hypergraph matching,” 2025, vol. 39, pp. 3769–3778.
[48]
Y. Sha, H. Pan, W. Meng, and booktitle=International. C. on M. I. C. and C.-A. I. Li Kefeng, “Contrastive knowledge-guided large language models for medical report generation,” 2025 , organization={Springer}, pp. 111–120.
[49]
X. Zhai, B. Mustafa, A. Kolesnikov, and booktitle=Proceedings. of the I. international conference on computer vision Beyer Lucas, “Sigmoid loss for language image pre-training,” 2023, pp. 11975–11986.
[50]
J.-B. Alayrac et al., “Flamingo: A visual language model for few-shot learning,” Advances in neural information processing systems, vol. 35, pp. 23716–23736, 2022.
[51]
M. Abdin et al., “Phi-3 technical report: A highly capable language model locally on your phone,” arXiv preprint arXiv:2404.14219, 2024.
[52]
K. He, X. Zhang, S. Ren, and booktitle=Proceedings. of the I. conference on computer vision and pattern recognition Sun Jian, “Deep residual learning for image recognition,” 2016, pp. 770–778.
[53]
E. J. Hu et al., “Lora: Low-rank adaptation of large language models.” ICLR, vol. 1, no. 2, p. 3, 2022.
[54]
Y. Wu, I.-C. Huang, and booktitle=Conference. on H. I. and L. Huang Xiaolei, “Token imbalance adaptation for radiology report generation,” 2023 , organization={PMLR}, pp. 72–85.
[55]
Q. Zhu, T. S. Mathai, P. Mukherjee, Y. Peng, R. M. Summers, and booktitle=International. C. on M. I. C. and C.-A. I. Lu Zhiyong, “Utilizing longitudinal chest x-rays and reports to pre-fill radiology reports,” 2023 , organization={Springer}, pp. 189–198.
[56]
J. Wang, A. Bhalerao, T. Yin, S. See, and Y. He, “Camanet: Class activation map guided attention network for radiology report generation,” IEEE Journal of Biomedical and Health Informatics, vol. 28, no. 4, pp. 2199–2210, 2024.
[57]
Y. Yang et al., “Token-mixer: Bind image and text in one embedding space for medical image reporting,” IEEE Transactions on Medical Imaging, vol. 43, no. 11, pp. 4017–4028, 2024.
[58]
H. Jin, H. Che, Y. Lin, and booktitle=Proceedings. of the A. C. on A. I. Chen Hao, “Promptmrg: Diagnosis-driven prompts for medical report generation,” 2024, vol. 38, pp. 2607–2615.
[59]
X. Wang, Y. Li, F. Wang, S. Wang, C. Li, and B. Jiang, “R2gencsr: Retrieving context samples for large language model based x-ray medical report generation,” arXiv preprint arXiv:2408.09743, 2024.