Paper deep dive
DICA: Dual-Indicator Guided Contrastive Alignment in Multimodal Large Language Models
Hao Yang, Jin Wang, Xuejie Zhang
Intelligence
Status: not_run | Model: - | Prompt: - | Confidence: 0%
Entities (0)
Relation Signals (0)
No relation signals yet.
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Human visual reasoning typically follows a coarse-to-fine attention process, starting from global scene understanding and gradually focusing on question-relevant regions. However, multimodal large language models may deviate from this pattern due to attention drift and the underutilization of visual evidence, which can lead to hallucinations. To mitigate these issues, this study proposes a Dual-Indicator Guided Contrastive Alignment (DICA), which tracks two information-theoretic indicators during inference: Visual Attention Entropy (VAE), which reflects the concentration of visual attention, and Output Image Correlation (OIC), which measures the dependence of generated outputs on the visual input. An abnormal increase in VAE or a decrease in OIC corresponds to different failure modes, which trigger targeted contrastive alignment to restore visual grounding. Experimental results across multiple benchmarks demonstrate that DICA consistently outperforms existing approaches and substantially reduces hallucinations, highlighting the effectiveness of indicator-driven intervention in improving multimodal inference reliability. The code is publicly available at this https URL.
Tags
Links
- Source: https://arxiv.org/abs/2607.23944v1
- Canonical: https://arxiv.org/abs/2607.23944v1
Trouble viewing inline? Open PDF directly â
Full Text
79,336 characters extracted from source content.
Expand or collapse full text
DICA: Dual-Indicator Guided Contrastive Alignment in Multimodal Large Language Models Hao Yang, Jin Wang * and Xuejie Zhang School of Information Science and Engineering Yunnan University Kunming, China yanghao888@stu.ynu.edu.cn, wangjin, xjzhang@ynu.edu.cn Abstract Human visual reasoning typically follows a coarse-to-fine attention process, starting from global scene understanding and gradually fo- cusing on question-relevant regions. However, multimodal large language models may devi- ate from this pattern due to attention drift and the underutilization of visual evidence, which can lead to hallucinations. To mitigate these issues, this study proposes a Dual-Indicator Guided Contrastive Alignment (DICA), which tracks two information-theoretic indicators dur- ing inference: Visual Attention Entropy (VAE), which reflects the concentration of visual at- tention, and Output Image Correlation (OIC), which measures the dependence of generated outputs on the visual input. An abnormal in- crease in VAE or a decrease in OIC corre- sponds to different failure modes, which trig- ger targeted contrastive alignment to restore visual grounding. Experimental results across multiple benchmarks demonstrate that DICA consistently outperforms existing approaches and substantially reduces hallucinations, high- lighting the effectiveness of indicator-driven in- tervention in improving multimodal inference reliability. The code is publicly available at https://github.com/BGWH123/DICA/. 1 Introduction For Visual Question Answering (VQA), human vi- sual attention follows a coarse-to-fine paradigm. typically begin by conducting a global scan of the scene to acquire an overall semantic structure and contextual cues. As the question is progressively interpreted, attention gradually narrows and shifts toward the local regions most relevant to the query, and the final answer becomes highly dependent on these key visual details (Navon, 1977). This transition from global context awareness to fine- grained semantic focus has been repeatedly vali- * Corresponding author. Shallow layers Deep layers Q:Is there a bike in the image? YesYes No No No Middle layers No No No YesYes Attention drift DICA DICA Figure 1: An example of attention drift and underuse of visual evidence. dated in cognitive and vision studies (Das et al., 2017; Yarbus, 2013; Itti and Koch, 2001). To investigate whether modern Multimodal Large Language Models (MLLMs) exhibit a sim- ilar attention pattern, a systematic empirical anal- ysis is conducted in Section 2. The results reveal a consistent transition from global attention to lo- calized focus. As reasoning unfolds, the MLLMsâ visual attention progressively shifts from a diffuse global distribution to a concentrated focus on re- gions semantically aligned with the query. Besides, two major issues are found in the exper- iments, as shown in Figure 1. (a) Attention Drift: During reasoning, the modelâs visual attention may suddenly disperse or shift to regions that are se- mantically irrelevant to the query. (b) Underuse of Visual Evidence: The modelâs reliance on visual arXiv:2607.23944v1 [cs.AI] 27 Jul 2026 cues does not consistently escalate as the network deepens. Conversely, in some cases, the reliance on visual content even degrades in deeper layers. These two issues consequently cause MLLMs to yield incorrect response. However, existing works, including both training-based approaches (Cai et al., 2024; Villa et al., 2025; Liu et al., 2023a; Yu et al., 2024) and training-free inference-time methods (Leng et al., 2024; Huang et al., 2024; Favero et al., 2024; Woo et al., 2025; Chen et al., 2025), generally treat hal- lucination as a monolithic phenomenon and lack explicit mechanisms to diagnose its root causes. They fail to distinguish whether hallucinations arise from attention drift or from underuse of visual evidence, and therefore apply uniform correction strategies that may be misaligned with the actual failure modes. As a result, these methods are often unable to perform precise, adaptive interventions when different hallucination patterns occur during reasoning. In contrast, we propose Dual-Indicator Guided Contrastive Alignment (DICA), which explicitly diagnoses and addresses different hallucination sources during inference. Specifically, DICA con- tinuously monitors two typical failure patterns, at- tention drift and underuse of visual evidence, via dedicated indicators. Once either indicator exceeds a predefined threshold, a targeted correction is trig- gered. If attention drift is detected, the hidden states of a neutral query are incorporated to cali- brate the current hidden states; if underuse of visual evidence is detected, the original prediction is cali- brated using the best alternative distribution. Extensive experiments on multiple benchmarks show that DICA consistently enhances reasoning accuracy, validating both our theoretical analysis and the practical efficacy of the proposed approach. The contributions are summarized as follows: â˘We empirically uncover two key bottlenecks about MLLM hallucinations: (a) attention drift and (b) underuse of visual evidence. â˘DICA is proposed as a method that can be applied to different models and performs dis- tribution correction at inference time, without requiring retraining or changes to the model architecture. â˘Extensive evaluations demonstrate that DICA significantly boosts reasoning accuracy and suppresses hallucinations by effectively strengthening the modelâs reliance on visual evidence. 2 Motivation 2.1 Indicator Definition To analyze whether MLLMs exhibit attention pat- terns similar to human visual attention and whether their answers remain grounded in visual cues, we introduce two diagnostic metrics 1 : (1) Visual At- tention Entropy (VAE), which captures the con- centration level of visual attention, and (2) Outputâ Image Correlation (OIC), which measures the modelâs reliance on visual cues. These metrics serve as diagnostic indicators for identifying abnor- mal attention and evidence-utilization behaviors rather than causal explanations of hallucination. Visual Attention Entropy.Shannon entropy (Shannon, 1948) is employed to quantify the con- centration of attention over visual tokens. Let the attention weights over all tokens bea (l,t) i T i=1 at layerland decoding stept, and letm â 0, 1 T denote the image token mask, wherem i = 1indi- cates a visual token. The attention weights corre- sponding to visual tokens are first selected: A (l,t) =a (l,t) i | m i = 1.(1) These are then normalized to form a probability distribution: p (l,t) i = a (l,t) i P j:m j =1 a (l,t) j , iâj | m j = 1. (2) The VAE for layer l at step t is computed as VAE (l,t) =â X i:m i =1 p (l,t) i logp (l,t) i .(3) The sequenceVAE (l,1) ,..., VAE (l,T) represents the evolution of the modelâs visual attention across decoding steps for each layer and token. Higher entropy indicates more dispersed attention, while lower entropy indicates more concentrated atten- tion over a subset of visual tokens. OutputâImage Correlation. OIC measures the influence of image-conditioned hidden states on the modelâs output distributions relative to uncon- ditioned hidden states. Leth (l,t) denote the hidden states at decoding steptand layerlwhen conditioned on both text and 1 The theoretical basis and mathematical proofs for these metrics are provided in Appendices A and B, respectively. Shallow layersMiddle layersDeep layers Layer Phase 4.50 4.75 5.00 5.25 5.50 5.75 6.00 VAE Normalized VAE Unusual VAE Shallow layersMiddle layersDeep layers Layer Phase 0.0 2.0 4.0 6.0 8.0 10.0 12.0 14.0 OIC Normalized OIC Unusual OIC Figure 2: Top: Evolution of VAE across layer phases. Bottom: Evolution of OIC across layer phases. image, and leth (l,t) wi denote the hidden states when conditioned only on text, without image. The cor- responding output logits are obtained via a linear projection: z (l,t) = h (l,t) W ⤠,(4) z (l,t) wi = h (l,t) wi W ⤠,(5) whereWis the language modeling head parame- ters matrix. The probability distributions over the vocabulary are then computed using the softmax function: p (l,t) = softmax(z (l,t) ),(6) p (l,t) wi = softmax(z (l,t) wi ).(7) The OIC for each token is defined: OIC (l,t) = X v p (l,t) v logp (l,t) v â logp (l,t) wi,v , (8) wherevindexes the vocabulary. The sequence OIC (l,1) , OIC (l,2) ,..., OIC (l,T) then represents the evolution of the modelâs output dependence on image information across decoding steps for each layer and token. Higher OIC values indicate stronger reliance on visual input, while lower val- ues indicate that the output primarily depends on text context. 2.2 Findings Insight 1 Visual attention exhibits a transition from dif- fuse to more concentrated patterns, as reflected by a generally decreasing VAE. We systematically study cross-modal attention in LLaVA-1.5 (Liu et al., 2024b) across transformer layers. Specifically, we isolate the attention tokens aligned with visual tokens and calculate their VAE to measure the degree of focus or dispersion in the attention distribution. As shown at the top of Figure 2, it is observed that the downward trajectory of VAE largely supports hypothesis of a global-to- local attention evolution. However, during decoding, VAE occasionally shows sharp increases. These peaks indicate sud- den rises in visual attention entropy, meaning the modelâs attention becomes unexpectedly dispersed. Such behavior typically signals confusion or a dis- connect from visual evidence and may foreshadow upcoming hallucinated content, suggesting that fo- cused visual cues no longer support the generated output. This anomaly will be further discussed in 2.3. Insight 2 During the reasoning process, the model pro- gressively increases its reliance on visual infor- mation, as evidenced by rising OIC values. The modelâs reliance on visual information was further quantified by the OIC metric, as illustrated in the bottom part of Figure 2. Under normal rea- soning, OIC values typically show a gradual in- crease or remain high, indicating that the model can consistently and effectively leverage cross-modal mappings to incorporate image features when con- structing its answers, thereby ensuring that the gen- erated text is grounded in visual evidence. However, at certain moments, the metric exhibits abnormal sudden drops. Such abrupt decreases signal a sharp reduction in the modelâs dependence on visual input, with the generation distribution becoming primarily driven by the internal priors of the language model. This sudden disengagement from the visual context often implies that the model is performing blind inference based solely on its textual priors, which can easily lead to hallucinated outputs that are inconsistent with the image content. This anomaly will be discussed in Section 2.3. Q:Is there a sports ball in the image?Q:Is there a truck in the image? Attention Map Change Attention DriftAttention Map ChangeUnderuse of Visual Evidence Figure 3: Evolution of answer log-probabilities and attention maps across layers. 2.3 Anomaly Analysis In the preceding analysis of indicators, two types of abnormal phenomena have been identified: sudden increases in VAE and drops in OIC. To further investigate the consequences of these two situa- tions, a step-by-step visualization of the reasoning trajectories in which such abnormalities occur is conducted. This includes examining layer-wise changes in attention heatmaps as well as the evolu- tion of the answer log-probabilities, as illustrated in Figure 3. After correction by DICA, the results are provided in D.3.5. When a sudden surge in VAE is observed, the visual attention previously concentrated on relevant regions abruptly disperses or drifts toward areas se- mantically irrelevant to the question. Such attention drift interrupts the expected global-to-local focus- ing process and prevents the model from maintain- ing stable reliance on critical visual evidence in subsequent layers. This phenomenon is referred to as attention drift. The corresponding answer prob- ability curves also exhibit pronounced fluctuations, indicating that the model progressively deviates from a visually grounded reasoning trajectory and becomes prone to erroneous or hallucinatory pre- dictions. The left of Figure 3 shows a representative example of this phenomenon. In contrast, when OIC experiences a decline, the output distribution reflects a clear reduction in reliance on image information. In this situa- tion, the generation process becomes increasingly dominated by language priors, causing the model to ignore visual evidence and shift toward prior- driven inference, i.e., underuse of visual evidence. During this phase, the answer become unstable and decline, eventually diverging from the actual vi- sual content. As shown in the right of Figure 3, this lack of visual grounding similarly leads to incorrect predictions. 3 Dual-Indicator Guided Alignment Based on the above analysis, the rise in VAE and the drop in OIC lead to attention drift and loss of visual grounding, which in turn cause reasoning er- rors. Thus, a suitable method should address these issues and maintain the modelâs alignment with vi- sual evidence. Therefore, the DICA architecture is proposed, as shown in Figure 4. It is composed of two components, namely VAE-Guided Drift Cor- rection and OIC-Guided Grounding Restoration. At each MLLM layerland decoding stept, the two indicators are computed: VAE (l,t) = VAE(a (l,t) ),(9) OIC (l,t) = OIC(h (l,t) , h (l,t) wi ),(10) where both functions follow the definitions pro- vided in Section 2.1. 3.1 VAE-Guided Drift Correction Attention drift is identified when the VAE surpasses a predefined threshold corresponding to a propor- tionÎą VAE of its dynamic range, indicating disper- sion of visual attention at the feature level. In this state, the hidden representations of image tokens in the Normal path are contaminated by high-entropy noise, causing the model to disperse focus toward irrelevant regions. To correct this feature-level deviation, we lever- age the Descriptive path. Due to its inherently de- scriptive generation process, the Descriptive path Normal InputDescriptive Input Q: Is there a glove in the image? Please describe this image. Layer 1 Layer 2 Layer N MLLM Compute VAE Compute OIC VAE-GDC OIC-GGR Next Layer Hidden State Layer 3 VAE > VAE-Guided Drift Correction(VAE-GDC) Extract image token Extract image token = OIC-Guided Grounding Restoration(OIC-GGR) Extract image token OIC > OIC > Chosse best suitable layer Chosse best suitable layer ......... ......... = :Exit :True :False Aggregation Figure 4: The overall architecture of DICA. captures richer fine-grained details (Li et al., 2023a; Peng et al., 2023; Liu et al., 2023b) and maintains a more uniform attention distribution across regions. Based on this property, we perform contrastive de- coding directly on hidden states to mitigate the effect of high-entropy contamination. Specifically, letH img andH img desc denote the image-token hidden states in the Normal and De- scriptive paths, respectively. We map them to logits ZandZ desc via the language modeling projection layer. Then, a dynamic weight is computedÎą d to control the correction strength based on their distributional discrepancy: Îą d = clip 1â JSD(ZâĽZ desc ), 0, 1 ,(11) whereJSD(¡)measures the JensenâShannon Diver- gence (Lin, 1991) between the hidden-state feature distributions. The corrected hidden state is then computed as: H new = (1 + Îą d )H img â Îą d H img desc .(12) 3.2 OIC-Guided Grounding Restoration For steptof a given sampleb, if the OIC value shows a persistent decrease and falls below a thresh- old defined as a proportionÎą OIC of its own range, we consider this an indication of underuse of visual evidence. After computing OIC, we further require a met- ric that explicitly captures whether the model at- tends to image regions during reasoning. To this end, we define the image token attention vec- torV OIC , which measures the explicit attention strength that the current language token allocates to the image tokens. Formally, letAâ R BĂHĂTĂT denote the multi- head attention scores of a given layerl, whereBis the batch size,His the number of attention heads, andTis the length of the input sequence. Let m â R BĂT be a binary mask indicating the posi- tions of the image tokens within the sequence. At the decoding stept, the model uses the last query position to attend to all key positions. Following prior findings (Neo et al., 2024; Xu et al., 2025) that the maximum activation across heads provides a reliable estimate of the modelâs dominant focus, A is aggregated across the head dimension as: Ë A b,t,j =max hâ1,...,H A b,h,t,j , Ë Aâ R BĂTĂT , (13) where j indexes the source positions attended to. The aggregated attention distribution is then re- stricted to the positions corresponding to image tokens, as specified by the maskm. For each sam- pleb, decoding steptand layerl, the raw image- directed attention vector is v b,t = h Ë A b,t,j m b,j = 1 i .(14) To obtain a normalized attention profile over image tokens, we apply a softmax operation: V (b,t) OIC = softmax (v b,t ),(15) whereV (b,t) OIC represents the relative attention proba- bility that the model allocates to the image token at the current decoding step in thel-th layer. For simplicity, we denote it as V l OIC . The JSD is then computed between this layer and each preceding layer to quantify the layer-wise difference in visual attention distributions. dist(V N OIC ,V L OIC ) = JSD(V N OIC âĽV L OIC ),(16) whereLdenotes the final decoding layer. The layerN = 1,...,Lâ 1. Exhibiting the maximal divergence is selected as the target intermediate layer l â : l â = arg max N=1,...,Lâ1 dist V (N) OIC ,V (L) OIC .(17) To adaptively modulate the strength of grounding restoration, we define a dynamic scaling factorβ t based on the inter-layer divergence of visual atten- tion distributions: β d = clip JSD V l â OIC ⼠V L OIC , 0, 1 ,(18) Once the layerl â is selected, intermediate-layer contrastive decoding is performed by comparing the predicted token distributions from the final layer and the selected intermediate layer. LetH L img andH l â img denote the vocabulary logits produced by the final and intermediate layers under image-aware hidden representations. The contrastive decoding distribution is then computed as: H new = softmax (1 + β d ) logH L img â β d logH l â img . (19) 4 Experiments 4.1 Experiments Setup Datasets and Metrics. We evaluate DICA on three benchmarks as follows: (1) POPE (Li et al., 2023d). The benchmark is de- signed to test whether MLLMs can correctly judge the presence or absence of specific objects in an im- age, thereby identifying object-level hallucinations. It formulates the task as Yes/No queries based on object annotations. The dataset is balanced (50% real objects and 50% non-existent objects) and em- ploys three sampling strategies: random, popular, and adversarial. Built from MSCOCO (Lin et al., 2014), A-OKVQA (Schwenk et al., 2022), and GQA (Hudson and Manning, 2019), POPE con- tains approximately 27k queryâanswer pairs for evaluation. (2) MME (Zhang et al., 2021). The comprehen- sive benchmark is designed to assess MLLMâs per- formance across multiple dimensions. It covers ten perception-oriented tasks and four cognition- related tasks. Object-level hallucination is exam- ined through subsets evaluating object presence and counting, while attribute-level hallucinations are analyzed via subsets focusing on object color and position. (3) CHAIR (Rohrbach et al., 2018). In this eval- uation framework, object hallucination in image captioning is assessed by prompting MLLMs to produce descriptive captions for a randomly cho- sen subset of 500 images from the MS-COCO vali- dation set. The metric quantifies hallucination by measuring the fraction of objects referenced in the generated caption that are absent from the corre- sponding ground-truth annotations. It provides two primary metrics:CHAIR i at the object-instance level and CHAIR s at the sentence level. Implementation Details. In experiments, we se- lected the models LLaVA-1.5 (Liu et al., 2024b) and Qwen-VL (Bai et al., 2023) as the backbones. The hyperparameters are set asÎą VAE = 0.8, and Îą OIC = 0.5. 2 All experiments were conducted on an NVIDIA A100 GPU. Baselines. All baseline methods in our experiments are selected from VCD (Leng et al., 2024), OPERA (Huang et al., 2024), M3iD (Favero et al., 2024), AvisC (Woo et al., 2025), and MoD (Chen et al., 2025). These methods aim to mitigate hallucina- tions by reducing reliance on language priors dur- ing the decoding process. 4.2 Main Results Results on POPE. Table 1 compares DICA with representative baselines on the POPE benchmark. DICA achieves the best performance in nearly all evaluation settings and datasets. On LLaVA- v1.5 under the AOKVQA/Popular setting, DICA reaches an F1-score of 85.99, outperforming all baselines. The concurrent improvements in accu- racy and F1-score indicate that DICA effectively re- duces false positive predictions, making the model more conservative in its production of affirmative answers. This directly alleviates object hallucina- tion and improves fine-grained object understand- ing. Results on CHAIR. Table 2 shows that DICA substantially reduces hallucinations in generative tasks. On both LLaVA-v1.5 and Qwen-VL, DICA achieves the lowest sentence-level and instance- level CHAIR scores among all methods.On LLaVA-v1.5, DICA reduces CHAIR s to 41.8 and CHAIR i to 11.5 while maintaining high recall, in- dicating that hallucination suppression does not come at the cost of descriptive coverage. On Qwen- VL, DICA attains similarly low hallucination rates with short outputs and preserves reasonable recall. 2 Hyperparameter analysis is provided in D.3.2. SettingMethodMSCOCOAOKVQAGQA LLaVA-v1.5Qwen-VLLLaVA-v1.5Qwen-VLLLaVA-v1.5Qwen-VL AccF1AccF1AccF1AccF1AccF1AccF1 Random sample83.80 84.20 84.90 82.90 81.80 83.50 86.80 85.80 81.60 83.50 83.30 79.20 AvisC82.30 83.50 82.90 80.00 79.10 82.10 84.70 83.00 79.00 82.20 80.50 77.80 VCD85.00 84.20 85.50 83.60 81.20 83.20 87.40 86.60 82.20 84.10 82.00 80.50 OPERA89.20 88.81 87.31 86.92 88.0284.59 88.1988.4388.1388.91 86.02 85.29 M3ID86.10 85.00 85.30 83.40 82.90 84.60 87.10 85.90 83.30 84.50 82.40 79.70 MoD89.2089.10 86.00 84.10 86.50 87.5087.80 86.90 86.20 87.40 83.80 82.30 DICA (ours)89.2388.8287.3785.9789.2389.4289.4788.9389.0988.6586.6785.42 w/o VAE-GDC86.5085.0486.0184.1988.6087.7887.2386.4888.4088.0683.5781.93 w/o OIC-GGR87.7686.6786.1384.2488.9089.0789.1588.5888.5788.1186.2384.77 Popular sample82.00 82.60 84.00 81.90 75.30 78.70 85.60 84.70 73.10 77.50 75.90 74.90 AvisC78.20 80.50 82.80 80.10 71.80 77.20 83.90 83.40 67.40 74.80 74.20 72.30 VCD82.10 83.20 84.90 83.60 74.70 78.50 86.30 85.10 71.50 76.80 75.90 75.60 OPERA86.64 86.6287.4486.68 83.2284.6787.9187.1379.2782.1181.9782.12 M3ID82.80 84.10 84.20 82.70 75.80 79.40 85.90 84.60 72.30 77.10 76.80 77.00 MoD85.70 86.10 85.60 83.70 79.50 82.20 86.50 85.60 74.00 78.60 79.80 78.90 DICA (ours)87.7286.6587.5086.1386.6485.9988.1987.5081.8882.5282.1381.72 w/o VAE-GDC86.4084.9285.5083.5785.7885.8786.9786.1079.4381.0878.9377.90 w/o OIC-GGR86.5385.0685.6383.7586.4685.8387.0386.1981.2682.0279.1378.07 Adversarial sample75.80 78.10 82.10 80.20 67.40 73.70 80.40 80.50 68.00 74.50 75.50 74.40 AvisC74.20 77.70 81.20 78.50 64.40 73.00 78.10 77.30 64.10 72.90 75.50 73.40 VCD76.30 78.70 84.00 82.00 68.10 74.60 80.70 80.80 67.60 74.50 76.70 76.20 OPERA81.24 81.3884.7883.4573.8277.9180.82 81.54 75.0078.7180.24 80.64 M3ID77.10 78.90 83.20 80.80 68.30 74.60 80.50 80.40 67.20 74.00 77.10 76.70 MoD79.70 81.30 84.00 82.30 69.10 75.40 81.0080.90 68.70 75.30 78.90 78.10 DICA (ours)83.2082.5584.8083.6777.7778.6381.3380.9878.4079.8679.2378.21 w/o VAE-GDC81.4081.7083.8081.9876.4776.4181.0780.6877.7979.3778.5778.53 w/o OIC-GGR82.3781.9484.0082.2477.4776.4581.2381.1677.5380.4178.8077.89 Table 1: Results on POPE benchmark. Acc and F1 denote Accuracy and F1 score, respectively. Bold indicates the best performance, and underlinedenotes the second best. DICA exhibits consistent hallucination suppression across architectures, demonstrating strong robust- ness. Results on MME. As reported in Table 3, DICA achieves the highest overall scores across all set- tings. On LLaVA-v1.5, DICA attains a total score of 661.5, exceeding all baseline methods. It per- forms best on the all subset and maintains leading performance on Counting and Position, indicating reliable perception of object presence and attributes. On Qwen-VL, DICA again achieves the highest total score of 648.3, with clear gains on the Exis- tence, Position, and Color subsets. This suggests that DICA benefits from stronger visual encoders and improves cross-modal alignment. While per- formance on the Count subset is slightly lower than the best baseline, DICA remains the most stable method overall. 4.3 Ablation Studies To verify the effectiveness of the two key compo- nents in DICA, we conduct ablation studies on the POPE benchmark. As shown in Table 1, removing either module results in a noticeable performance MethodCHAIR s â CHAIR i â Recallâ Length LLaVA-v1.5 sampling52.815.977.393.4 VCD51.014.977.2101.9 M3iD56.217.079.397.1 AvisC44.013.772.989.8 MoD42.6 12.478.997.6 DICA (ours)41.811.577.895.8 Qwen-VL sampling2.83.031.05.3 VCD1.41.230.84.0 M3iD1.71.331.83.4 AvisC1.61.632.04.4 MoD0.8 1.032.13.8 DICA (ours)0.81.027.05.7 Table 2: Results on CHAIR benchmark.Lower CHAIR s and CHAIR i , along with higher Recall, corre- spond to better performance. drop, confirming that both VAE-GDC and OIC- GGR are indispensable. The degradation is more pronounced when VAE-GDC is removed. This is primarily because attention drift occurs more fre- quently during inference, as indicated by the trigger statistics in Figure 6. Moreover, VAE-GDC oper- ates at the attention level, directly reinforcing the visual grounding foundation, while OIC-GGR inter- venes later at the output distribution level. Conse- quently, VAE-GDC serves a more foundational role MethodObject-levelAttribute-level Total Existence Count Position Color LLaVA-v1.5 sampling170.0103.3108.3 128.3 510.0 VCD180.0110.0108.3 133.3 531.7 M3ID185.0118.3121.7 128.3 553.3 AvisC195.0116.7131.7 153.3 596.7 MoD195.0141.7126.7 175.0 638.3 DICA (ours)195.0148.3143.2 175.0 661.5 Qwen-VL sampling160.0143.3113.3 165.0 581.7 VCD165.0140.0113.3 175.0 593.3 M3ID165.0143.3103.3 175.0 586.7 AvisC160.0145.0113.3 160.0 578.3 MoD170.0160.0103.3 180.0 613.3 DICA (ours)170.0155.0133.3 190.0 648.3 Table 3: Results on MME benchmark. The performance is measured by MME Score. The Total column repre- sents the sum of four individual results in each row. Shallow Layers Middle LayersDeep Layers Layer Phase 3.5 4.0 4.5 5.0 5.5 VAE Average Value 5.23 4.66 3.99 5.58 5.04 4.73 VAE On DICA VAE On Normal OIC On DICA OIC On Normal 0 1 2 3 4 5 6 OIC Average Value 0.01 0.66 5.66 0.02 0.53 5.22 Figure 5: The impact of DICA on VAE and OIC within POPE. in suppressing hallucinations. When both modules are jointly enabled, their complementary effects result in the best overall performance, underscor- ing the importance of combining attention-level diagnostics with output-level guidance. 4.4 Analysis and Discussion The Mean Variations of OIC and VAE Before and After DICA. Figure 5 presents the average changes in VAE and OIC across shallow, middle, and deep layers before and after applying DICA. Overall, VAE consistently decreases, indicating more focused visual attention and reduced atten- tion drift, while OIC increases across all layers, reflecting stronger reliance on image cues. These trends demonstrate that DICA effectively enhances visual grounding and improves the stability of the modelâs reasoning process. Trigger Ratios and Triggered Layer Distribu- tion of the Dual Module. Figure 6 shows that VAE-GDC is triggered more frequently than OIC- ShallowMiddleDeep 0 20 40 60 80 100 Proportion (%) 15.2% 26.8% 58.0% 0.0%0.0% 100.0% VAE-GDC (Trigger: 15.29%) OIC-GGR (Trigger: 1.75%) Figure 6: Trigger frequency and depth distribution of VAE-GDC and OIC-GGR on POPE. Repair outcomeWâW WâR RâW RâR Overall (%)8.24.91.386.9 Conditional (%)62.637.41.598.5 Table 4: Repair success distribution on POPE. Here, W denotes wrong and R denotes right. GGR, and both modules are primarily activated in deeper layers. This indicates that attention drift oc- curs more often than underuse of visual evidence, with both failure modes emerging mainly in later reasoning stages. The higher trigger frequency of VAE-GDC suggests that maintaining focused vi- sual attention is more challenging for MLLMs than preserving general image dependence, especially as decoding progresses. Triggering Reliability and Correctness Transi- tion. Table 4, DICA achieves highly precise inter- ventions, with an RâW rate of 1.3%, indicating hardly any degradation of correct predictions. At the same time, it corrects 37.4% of erroneous cases (WâR), confirming that VAE and OIC reliably identify hallucination risks and guide the model back to relevant visual evidence via contrastive alignment. DICA operates as an on-demand inter- vention mechanism that strikes a balance between robustness and hallucination mitigation. 5 Conclusion This study identifies two prevalent failure modes in MLLM-based visual question answering: attention drift and underuse of visual evidence. We pro- pose the DICA framework, which leverages two information-theoretic indicators, VAE and OIC, to dynamically monitor model behavior. During nor- mal reasoning, VAE decreases and OIC remains high; abnormal VAE surges or OIC drops trig- ger hallucinations, which DICA corrects via VAE- GDC and OIC-GGR, respectively. Extensive ex- periments across multiple models and benchmarks demonstrate that DICA improves accuracy, effec- tively mitigates hallucinations, and validates the effectiveness of the proposed dual-indicator guided alignment. Limitations There are three main limitations to our work: â˘Like other decoding-time hallucination miti- gation methods, DICA introduces moderate computational overhead to enable real-time monitoring of visual grounding. This leads to a modest increase in latency compared to standard greedy decoding. â˘The method relies on fixed threshold param- eters, which may require manual adjustment for different models or downstream tasks, lim- iting its generalization across diverse MLLM architectures. â˘DICA cannot compensate for perceptual blind spots inherent in the pretrained vision encoder or language model, and its performance is ultimately bounded by the base modelâs visual and linguistic capacities. Acknowledgments This work was supported in part by the National Natural Science Foundation of China (NSFC) un- der Grant Nos. 61966038 and 62266051, and the Postgraduate Research and Innovation Foun- dation of Yunnan University under Grant No.KC- 252513133. The authors would like to thank the anonymous reviewers for their constructive com- ments. References Jinze Bai, Shuai Bai, Shusheng Yang, Shijie Wang, Sinan Tan, Peng Wang, Junyang Lin, Chang Zhou, and Jingren Zhou. 2023. Qwen-vl: A versatile vision- language model for understanding, localization, and reasoning. arXiv preprint arXiv:2308.12966. Ali Furkan Biten, LluĂs GĂłmez, and Dimosthenis Karatzas. 2022. Let there be a clock on the beach: Re- ducing object hallucination in image captioning. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, pages 1381â1390. Mu Cai, Haotian Liu, Siva Karthik Mustikovela, Gre- gory P Meyer, Yuning Chai, Dennis Park, and Yong Jae Lee. 2024. Vip-llava: Making large multi- modal models understand arbitrary visual prompts. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition, pages 12914â 12923. Xinlong Chen, Yuanxing Zhang, Qiang Liu, Junfei Wu, Fuzheng Zhang, and Tieniu Tan. 2025. Mixture of decoding: An attention-inspired adaptive decoding strategy to mitigate hallucinations in large vision- language models. arXiv preprint arXiv:2505.17061. Yung-Sung Chuang, Yujia Xie, Hongyin Luo, Yoon Kim, James Glass, and Pengcheng He. 2023. Dola: Decoding by contrasting layers improves factu- ality in large language models.arXiv preprint arXiv:2309.03883. Wenliang Dai, Junnan Li, Dongxu Li, Anthony Tiong, Junqi Zhao, Weisheng Wang, Boyang Li, Pascale N Fung, and Steven Hoi. 2023. Instructblip: Towards general-purpose vision-language models with instruc- tion tuning. Advances in neural information process- ing systems, 36:49250â49267. Abhishek Das, Harsh Agrawal, Larry Zitnick, Devi Parikh, and Dhruv Batra. 2017. Human attention in visual question answering: Do humans and deep networks look at the same regions? Computer Vision and Image Understanding, 163:90â100. Alessandro Favero, Luca Zancato, Matthew Trager, Sid- dharth Choudhary, Pramuditha Perera, Alessandro Achille, Ashwin Swaminathan, and Stefano Soatto. 2024.Multi-modal hallucination control by vi- sual information grounding. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition, pages 14303â14312. Qidong Huang, Xiaoyi Dong, Pan Zhang, Bin Wang, Conghui He, Jiaqi Wang, Dahua Lin, Weiming Zhang, and Nenghai Yu. 2024. Opera: Alleviating hallucination in multi-modal large language models via over-trust penalty and retrospection-allocation. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition, pages 13418â 13427. Drew A Hudson and Christopher D Manning. 2019. Gqa: A new dataset for real-world visual reasoning and compositional question answering. In Proceed- ings of the IEEE/CVF conference on computer vision and pattern recognition, pages 6700â6709. Laurent Itti and Christof Koch. 2001. Computational modelling of visual attention. Nature reviews neuro- science, 2(3):194â203. Ziwei Ji, Nayeon Lee, Rita Frieske, Tiezheng Yu, Dan Su, Yan Xu, Etsuko Ishii, Ye Jin Bang, Andrea Madotto, and Pascale Fung. 2023. Survey of hal- lucination in natural language generation. ACM com- puting surveys, 55(12):1â38. Taehyeon Kim, Joonkee Kim, Gihun Lee, and Se-Young Yun. 2023. Instructive decoding: Instruction-tuned large language models are self-refiner from noisy instructions. arXiv preprint arXiv:2311.00233. Solomon Kullback and Richard A. Leibler. 1951. On information and sufficiency. The Annals of Mathe- matical Statistics, 22(1):79â86. Sicong Leng, Hang Zhang, Guanzheng Chen, Xin Li, Shijian Lu, Chunyan Miao, and Lidong Bing. 2024. Mitigating object hallucinations in large vision- language models through visual contrastive decod- ing. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 13872â13882. Junnan Li, Dongxu Li, Silvio Savarese, and Steven Hoi. 2023a. Blip-2: Bootstrapping language-image pre- training with frozen image encoders and large lan- guage models. In International conference on ma- chine learning, pages 19730â19742. PMLR. Xiang Lisa Li, Ari Holtzman, Daniel Fried, Percy Liang, Jason Eisner, Tatsunori B Hashimoto, Luke Zettle- moyer, and Mike Lewis. 2023b. Contrastive decod- ing: Open-ended text generation as optimization. In Proceedings of the 61st annual meeting of the associ- ation for computational linguistics (volume 1: Long papers), pages 12286â12312. Yifan Li, Yifan Du, Kun Zhou, Jinpeng Wang, Wayne Xin Zhao, and Ji-Rong Wen. 2023c. Eval- uating object hallucination in large vision-language models. arXiv preprint arXiv:2305.10355. Yifan Li, Yifan Du, Kun Zhou, Jinpeng Wang, Xin Zhao, and Ji-Rong Wen. 2023d. Evaluating object halluci- nation in large vision-language models. In Proceed- ings of the 2023 Conference on Empirical Methods in Natural Language Processing, pages 292â305, Sin- gapore. Association for Computational Linguistics. J. Lin. 1991. Divergence measures based on the shan- non entropy. IEEE Transactions on Information The- ory, 37(1):145â151. Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr DollĂĄr, and C. Lawrence Zitnick. 2014. Microsoft COCO: Common objects in context. In Computer Vision â ECCV 2014, pages 740â755. Springer International Publishing. Fang Liu, Yang Liu, Lin Shi, Houkun Huang, Ruifeng Wang, Zhen Yang, Li Zhang, Zhongqi Li, and Yuchi Ma. 2024a. Exploring and evaluating hallucinations in llm-powered code generation. arXiv preprint arXiv:2404.00971. Fuxiao Liu, Kevin Lin, Linjie Li, Jianfeng Wang, Yaser Yacoob, and Lijuan Wang. 2023a. Mitigating hal- lucination in large multi-modal models via robust instruction tuning. arXiv preprint arXiv:2306.14565. Haotian Liu, Chunyuan Li, Yuheng Li, and Yong Jae Lee. 2024b. Improved baselines with visual instruc- tion tuning. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern recognition, pages 26296â26306. Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. 2023b. Visual instruction tuning. Advances in neural information processing systems, 36:34892â 34916. Kuanghong Liu, Jin Wang, Kangjian He, Dan Xu, and Xuejie Zhang. 2025a.Vision-aware multimodal prompt tuning for uploadable multi-source few-shot domain adaptation. In Proceedings of the AAAI Con- ference on Artificial Intelligence, volume 39, pages 18897â18905. Qiang Liu, Xinlong Chen, Yue Ding, Bowen Song, Weiqiang Wang, Shu Wu, and Liang Wang. 2025b. Attention-guided self-reflection for zero-shot hallu- cination detection in large language models. In Pro- ceedings of the 2025 Conference on Empirical Meth- ods in Natural Language Processing, pages 21016â 21032. David Navon. 1977. Forest before trees: The prece- dence of global features in visual perception. Cogni- tive Psychology, 9(3):353â383. Clement Neo, Shay B Cohen, and Fazl Barez. 2024. Interpreting context look-ups in transformers: In- vestigating attention-mlp interactions, 2024. URL https://arxiv. org/abs/2402.15055, page 25. Zhiliang Peng, Wenhui Wang, Li Dong, Yaru Hao, Shaohan Huang, Shuming Ma, and Furu Wei. 2023.Kosmos-2: Grounding multimodal large language models to the world.arXiv preprint arXiv:2306.14824. Anna Rohrbach, Lisa Anne Hendricks, Kaylee Burns, Trevor Darrell, and Kate Saenko. 2018. Object hal- lucination in image captioning. In Proc. EMNLP, pages 4035â4045. Association for Computational Linguistics. Dustin Schwenk, Apoorv Khandelwal, Christopher Clark, Kenneth Marino, and Roozbeh Mottaghi. 2022. A-okvqa: A benchmark for visual question answer- ing using world knowledge. In European conference on computer vision, pages 146â162. Springer. C. E. Shannon. 1948. A mathematical theory of com- munication. The Bell System Technical Journal, 27(3):379â423. Zhiqing Sun, Sheng Shen, Shengcao Cao, Haotian Liu, Chunyuan Li, Yikang Shen, Chuang Gan, Liangyan Gui, Yu-Xiong Wang, Yiming Yang, and 1 others. 2024. Aligning large multimodal models with factu- ally augmented rlhf. In Findings of the Association for Computational Linguistics: ACL 2024, pages 13088â13110. Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, TimothĂŠe Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, and 1 others. 2023. Llama: Open and effi- cient foundation language models. arXiv preprint arXiv:2302.13971. AndrĂŠs Villa, Juan LeĂłn AlcĂĄzar, Motasem Alfarra, Vladimir Araujo, Alvaro Soto, and Bernard Ghanem. 2025. Eagle: Enhanced visual grounding minimizes hallucinations in instructional multimodal models. arXiv preprint arXiv:2501.02699. Lei Wang, Jiabang He, Shenshen Li, Ning Liu, and Ee-Peng Lim. 2024. Mitigating fine-grained halluci- nation by fine-tuning large vision-language models with caption rewrites. In International Conference on Multimedia Modeling, pages 32â45. Springer. Sangmin Woo, Donguk Kim, Jaehyuk Jang, Yubin Choi, and Changick Kim. 2025. Donât miss the forest for the trees: Attentional vision calibration for large vi- sion language models. In Findings of the Association for Computational Linguistics: ACL 2025, pages 1927â1951. Xinhao Xu, Hui Chen, Mengyao Lyu, Sicheng Zhao, Yizhe Xiong, Zijia Lin, Jungong Han, and Guiguang Ding. 2025. Mitigating hallucinations in multi-modal large language models via image token attention- guided decoding. In Proceedings of the 2025 Confer- ence of the Nations of the Americas Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers), pages 1571â1590. An Yang, Anfeng Li, Baosong Yang, Beichen Zhang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Gao, Chengen Huang, Chenxu Lv, Chujie Zheng, Day- iheng Liu, Fan Zhou, Fei Huang, Feng Hu, Hao Ge, Haoran Wei, Huan Lin, Jialong Tang, and 41 others. 2025a. Qwen3 technical report. Preprint, arXiv:2505.09388. Hao Yang, Jin Wang, and Xuejie Zhang. 2025b. Evl- mcot: Enhanced vision-language multi-cot for harm- ful meme detection. In CCF International Confer- ence on Natural Language Processing and Chinese Computing, pages 403â415. Springer. Hao Yang, Jin Wang, and Xuejie Zhang. 2026. Visual saliency steering distillation for multimodal chain- of-thought reasoning. In ICASSP 2026 - 2026 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 12282â12286. Jia-Yu Yao, Kun-Peng Ning, Zhen-Hui Liu, Mu-Nan Ning, Yu-Yang Liu, and Li Yuan. 2023. Llm lies: Hallucinations are not bugs, but features as adversar- ial examples. arXiv preprint arXiv:2310.01469. Alfred L Yarbus. 2013. Eye movements and vision. Springer. Tianyu Yu, Yuan Yao, Haoye Zhang, Taiwen He, Yifeng Han, Ganqu Cui, Jinyi Hu, Zhiyuan Liu, Hai-Tao Zheng, Maosong Sun, and 1 others. 2024. Rlhf-v: Towards trustworthy mllms via behavior alignment from fine-grained correctional human feedback. In Proceedings of the IEEE/CVF Conference on Com- puter Vision and Pattern Recognition, pages 13807â 13816. Li Yuan, Yi Cai, Xudong Shen, Qing Li, Qingbao Huang, Zikun Deng, and Tao Wang. 2025. Collab- orative multi-lora experts with achievement-based multi-tasks loss for unified multimodal information extraction. In Proceedings of the Thirty-Fourth Inter- national Joint Conference on Artificial Intelligence, pages 6940â6948. Li Yuan, Qingfei Huang, Bingshan Zhu, Yi Cai, Qing- bao Huang, Changmeng Zheng, Zikun Deng, and Tao Wang. 2026. Hybrid-dmkg: A hybrid reason- ing framework over dynamic multimodal knowledge graphs for multimodal multihop qa with knowledge editing. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 40, pages 28032â 28040. Yunhang Shen Yulei Qin Mengdan Zhang, Xu Lin Jinrui Yang Xiawu Zheng, Ke Li Xing Sun Yunsheng Wu, Rongrong Ji Chaoyou Fu, and Peixian Chen. 2021. Mme: A comprehensive evaluation benchmark for multimodal large language models. arXiv preprint arXiv:2306.13394, 18:2. Guangmin Zheng, Jun Kong, Jin Wang, and Xue- jie Zhang. 2025. Enhanced multimodal chain-of- thought with visual self-contrastive distillation. In 2025 IEEE International Conference on Multimedia and Expo (ICME), pages 1â6. IEEE. Guangmin Zheng, Jin Wang, Xiaobing Zhou, and Xue- jie Zhang. 2024. Enhancing semantics in multimodal chain of thought via soft negative sampling. In Pro- ceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024), pages 6059â 6076. Yiyang Zhou, Chenhang Cui, Jaehong Yoon, Linjun Zhang, Zhun Deng, Chelsea Finn, Mohit Bansal, and Huaxiu Yao. 2023. Analyzing and mitigating object hallucination in large vision-language models. arXiv preprint arXiv:2310.00754. Deyao Zhu, Jun Chen, Xiaoqian Shen, Xiang Li, and Mohamed Elhoseiny. 2023. Minigpt-4: Enhancing vision-language understanding with advanced large language models. arXiv preprint arXiv:2304.10592. A Proof of Metric Applicability To validate that our proposed metrics, Visual Atten- tion Entropy and Output-Image Correlation, faith- fully reflect the human-like cognitive process of Global ExplorationâFocal Exploitation, we pro- vide the following theoretical justifications based on information theory. 1. Entropy as an Indicator of Visual Exploration Scope Claim. The Visual Attention EntropyH (l,t) serves as an information-theoretic proxy for the spatial scope of visual processing, characterizing the tran- sition from global browsing to focal attention. Proof. LetV = 1,...,Mbe the set of visual token indices, and the attention distribution bepâ â Mâ1 . Consider two extreme cognitive states: ⢠Global Browsing (Exploration): p i = 1/M for all i, entropy is maximized: VAE(p) =â M X i=1 1 M log 1 M = logM. (20) â˘Focal Attention (Exploitation):p k = 1for some tokenk, others 0, entropy is minimized: VAE(p) = 0.(21) Since Shannon entropy (Shannon, 1948) is con- cave and uniquely maximized by the uniform distri- bution, a decreasing sequenceH (l,t) t indicates a reduction in the effective receptive field, i.e., cog- nitive narrowing from scene-level to object-level focus. 2. OIC as a Measure of Visual Evidence Contri- bution Claim. The OIC quantifies the information gain from visual tokens over the textual prior, measuring reliance on visual evidence. Proof. Recall OIC (l,t) = X v p v log p v p wi,v ,(22) which is the Kullback-Leibler divergence (Kull- back and Leibler, 1951)D KL (P (¡|Text, Image) ⼠P (¡|Text)).From a Bayesian view, text is the prior, image is the observation: OIC (l,t) = E vâźP h log P (v | Text, Image) P (v | Text) i . (23) â˘If visual info is redundant or ignored:OICâ 0. ⢠If visual info provides critical evidence: OIC⍠0. Hence, OIC directly measures the informational contribution of visual perception to the decision- making process. 3. Modeling the Cognitive Evolution Based on the above analysis, the human VQA process can be described as a trajectory in (VAE, OIC) space: Process :                      Phase I : t small, VAE (t) â logM, OIC (t) moderate, Phase I: tâ, VAE (t) â, context accumulates, Phase I: t = t ans , VAE (t) â 0, OIC (t) maximized. This trajectory describes an idealized and inter- pretable pattern of cognitive evolution rather than a deterministic cognitive law. B Proof of Metric Validity To understand the relationship between VAE and OIC, and how they reflect human-like cognitive processes in VQA, we analyze their theoretical connection through the lens of Information Theory and Transformer dynamics. OIC as Information Gain.First, we observe that the definition ofOIC (l,t) is equivalent to the KL divergence between the image-conditioned output distribution p (l,t) and the text-only prior p (l,t) wi : OIC (l,t) = D KL (p (l,t) ⼠p (l,t) wi ).(24) This quantity measures the information gain pro- vided by the visual context at stept. A high OIC im- plies that the visual features significantly alter the modelâs prediction away from the pure language prior. Attention Entropy as Feature Selectivity. The visual context vectorc (l,t) entering the feed- forward network is a weighted sum of visual tokens V =v i : c (l,t) = X i:m i =1 p (l,t) i v i .(25) We analyze two limiting cases of the attention en- tropy H (l,t) to demonstrate the evolution process: Phase 1: High Entropy (Global Exploration). During the initial stages of reasoning highVAE (l,t) , the attention distribution is dispersed, approximat- ing a uniform distribution wherep (l,t) i â 1/N v whereN v is the number of visual tokens. The con- text vector becomes an average of the visual scene: lim VAEâVAE max c (l,t) â 1 N v X i v i = Ě v global , (26) where Ě v global represents generic scene semantics. While this informs the global context, it rarely con- flicts strongly with the language before specific to- kens, resulting in a moderate divergence OIC. This mirrors the human cognitive phase of scanning for global semantics. Phase 2: Low Entropy (Focal Exploitation). As the model resolves the semantics lowVAE (l,t) , the attention distribution becomes peaked and sparse. In the limit whereVAE (l,t) â 0, the probability mass concentrates on a single critical token k: lim VAEâ0 c (l,t) = v k .(27) In VQA, the visual tokenv k typically contains specific evidence (e.g., color, count, text) that is orthogonal to the text context. The injection of this highly specific featurev k causes the logitsz (l,t) to shift significantly fromz (l,t) wi , maximizing the KL divergence: OIC (l,t) ââĽz (l,t) (v k )â z (l,t) wi âĽ.(28) This corresponds to the human cognitive phase of focusing on key details to formulate an answer. Conclusion. Therefore, the temporal evolution from high entropy to low entropy, accompanied by a rise in OIC, mathematically formalizes the cognitive strategy: VAE (l,t) high time ââ VAE (l,t) low |z Attention Focusing =â OIC (l,t) low time ââ OIC (l,t) high |z Evidence Integration . (29) This inverse correlation validates that the model ac- curately mimics the human VQA process, starting with global perception and narrowing down to the extraction of specific visual evidence. C Related Work Multimodal Large Language Model. Inspired by the success of LLMs (Touvron et al., 2023), recent research has extended their capabilities to the multi- modal domain, leading to the rapid development of MLLMs (Liu et al., 2025b; Bai et al., 2023). With the introduction of LLMs, MLLMs have increas- ingly adopted unified generative frameworks (Liu et al., 2024b; Zhu et al., 2023), which significantly enhance reasoning, generalization, and adaptabil- ity across diverse vision-language tasks. Typically, MLLMs are trained via a two-stage paradigm, in- cluding visionâlanguage feature alignment pretrain- ing followed by instruction-based fine-tuning (Dai et al., 2023). Recent studies have further incorpo- rated human preference optimization techniques, such as RLHF (Sun et al., 2024) and preference fine-tuning (Zhou et al., 2023). Despite these ad- vances, MLLMs still suffer from pervasive hallu- cination issues, where generated responses deviate from visual evidence, posing critical challenges to their reliability in real-world applications. This limitation underscores the need to develop more robust mechanisms to enhance visual grounding and factual consistency in MLLMs. Hallucination in MLLMs. Hallucinations, which generate content inconsistent with visual inputs or factual reality, have been widely studied in both language-only and vision-language settings (Yuan et al., 2026, 2025; Ji et al., 2023; Yao et al., 2023; Liu et al., 2024a; Li et al., 2023c; Yang et al., 2025b; Zheng et al., 2025, 2024; Liu et al., 2025a; Yang et al., 2026). Due to the requirement of precise visual-textual alignment, hallucinations in MLLMs are often more severe, particularly in tasks such as visual question answering and image cap- tioning, where models tend to over-rely on linguis- tic priors when visual grounding is unreliable or ambiguous (Biten et al., 2022; Wang et al., 2024; Zhou et al., 2023). Existing hallucination mitigation methods in MLLMs can be broadly categorized into two classes according to whether they require addi- tional training. Training-based approaches aim to suppress hallucinations by modifying model archi- tectures or training objectives. Typical strategies include supervised fine-tuning on carefully curated anti-hallucination datasets, reinforcement learning with hallucination-aware rewards, or contrastive and counterfactual data construction that explicitly penalizes hallucinated outputs (Liu et al., 2023a; Cai et al., 2024; Yu et al., 2024; Villa et al., 2025). While effective in controlled settings, these meth- ods are often costly in terms of data annotation and computation, and may compromise generalization when deployed beyond the training distribution. In contrast, training-free inference-time meth- ods attempt to regulate hallucinations without up- dating model parameters. A representative line of work leverages contrastive decoding, where hallucination-prone predictions are deliberately in- duced and contrasted against the original decoding stream to suppress spurious generations (Li et al., 2023b; Chuang et al., 2023). In the multimodal domain, such hallucination-inducing signals are constructed through noisy or removed visual in- puts (Leng et al., 2024; Favero et al., 2024), ad- versarial or negative prompts (Woo et al., 2025; Kim et al., 2023), or attention manipulation and decoding heuristics (Huang et al., 2024). These approaches are attractive due to their flexibility and low deployment cost, and have shown promising empirical gains across benchmarks. However, despite their differences, both training- based and training-free methods generally treat hallucination as a monolithic phenomenon and lack explicit mechanisms to diagnose its under- lying causes. In particular, they fail to distinguish whether hallucinations arise from attention drift, or from underuse of visual evidence. As a result, existing methods tend to apply uniform correction strategies, such as globally suppressing language bias or enforcing stronger visual grounding, which may be misaligned with the actual failure mode and can even degrade correct predictions. Motivated by this limitation, our proposed DICA departs from one-size-fits-all correction by explic- itly diagnosing hallucination patterns during infer- ence and performing targeted, adaptive interven- tions. By jointly monitoring VAE and OIC, DICA identifies whether hallucinations are caused by at- tention drift or underuse of visual evidence, and accordingly activates distinct mechanisms to recal- ibrate the reasoning process. D More Eexperimental Details D.1 Metrics Metrics on MME. In the MME benchmark, each imagei â Iis paired with two similar questions designed to elicit âyesâ and ânoâ responses, de- noted asq y i ,q n i . Two metrics are used to evaluate model performance: the question-level accuracy Table 5: CHAIR hallucination results on LLaVA-1.5. C S / C I (lower is better). MethodLLaVA-1.5 (512) LLaVA-1.5 (64) C S C I C S C I Greedy45.014.720.66.2 Nucleus48.814.226.28.5 Beam Search 48.813.918.85.9 DoLA47.813.820.46.3 OPERA44.612.814.25.2 DICA41.811.510.44.3 (Acc) and the image-level accuracy (Acc + ). The question-level accuracy (Acc) is defined as: Acc = P iâI I[MLLMs(i,q y i ) = "Yes"] |I|Ă 2 + P iâI I[MLLMs(i,q n i ) = "No"] |I|Ă 2 . (30) The image-level accuracy (Acc + ) is defined as: Acc + = P iâI I[MLLMs(i,q y i ) = "Yes"] |I| ¡ I[MLLMs(i,q n i ) = "No"] 1 . (31) The final MME Score is computed as: MME Score = Acc + Acc + .(32) Metrics on CHAIR. The CHAIR benchmark eval- uates hallucinations in image captioning using two metrics: CHAIR i and CHAIR s . The instance-level hallucination rate is: CHAIR i = |hallucinated objects| |all mentioned objects| .(12) The sentence-level hallucination rate is: CHAIR s = |sentences with hallucinations| |all sentences| . (13) Recall measures caption completeness: Recall = |accurately mentioned objects| |ground-truth objects| . (14) D.2 Results D.2.1 Additional Results on CHAIR Table 5 presents hallucination evaluation results on LLaVA-1.5 using the CHAIR benchmark, com- paring various decoding strategies under two vi- sual token settings: 512 (standard) and 64 (com- pressed). Lower CHAIR S and CHAIR I scores in- dicate fewer hallucinations. DICA consistently Shallow layersMiddle layersDeep layers Layer Phase 3.5 4.0 4.5 5.0 5.5 6.0 VAE VAE changes with the number of layers on DICA the VAE after DICA correction Unusual VAE Shallow layersMiddle layersDeep layers Layer Phase 0 2 4 6 8 OIC OIC changes with the number of layers on DICA the OIC after DICA correction Unusual OIC Figure 7: Top: VAE changes across layers phase on DICA. Down: OIC change across layers phase on DICA. achieves the lowest hallucination rates among all methods, demonstrating its effectiveness in ground- ing model outputs in visual evidence. Notably, DICA maintains strong performance in both the 512-token and 64-token settings, indicating its ro- bustness regardless of whether standard or com- pressed visual representations are used. D.2.2 Additional Results on POPE Table 6 reports the complete experimental results on the POPE benchmark. DICA consistently out- performs nearly all existing methods, including VCD, M3ID, and other training-free and training- based baselines. On LLaVA-1.5 under the MS- COCO Popular setting, DICA achieves 87.7% accuracy, outperforming Sample (82.0%), VCD (82.1%), M3ID (82.8%), AVisC (78.2%), and MoD (85.7%). On Qwen-VL, DICA exceeds all com- petitors across all nine accuracy metrics. Overall, DICA achieves the strongest performance, partic- ularly under adversarial and popular conditions, demonstrating superior visual grounding and effec- tive hallucination mitigation during inference. D.3 More Analysis and Discussion D.3.1 VAE and OIC Performance Changes with DICA Figure 7 illustrates the evolution of VAE and OIC across shallow, middle, and deep layers after ap- plying the DICA intervention. The corrected tra- 0.10.20.30.4 OIC 0.1 0.2 0.3 0.4 VAE 603.33603.33603.33603.33 603.33603.33608.33608.33 613.33613.33613.33613.33 613.33623.33623.33623.33 Hyperparameter Grid Analysis 605.0 607.5 610.0 612.5 615.0 617.5 620.0 622.5 Metric Value 0.50.60.70.80.9 OIC 0.5 0.6 0.7 0.8 0.9 VAE 643.33638.33638.33643.33643.33 643.33643.33643.33643.33638.33 648.33643.33638.33638.33633.33 661.53648.33638.33638.33638.33 613.33603.33603.33605.33603.33 Hyperparameter Grid Analysis 610 620 630 640 650 660 Metric Value Figure 8: The upper figure corresponds to thresholds 0.1â0.4, and the lower figure to thresholds 0.5â0.9. jectories demonstrate that VAE steadily decreases. Meanwhile, OIC consistently increases, reflecting a reasoning process that aligns with the human- like cognitive pattern of shifting from global ex- ploration to focal exploitation. In contrast, the uncorrected anomalous steps reveal instances of attention drift, abnormally high VAE, and under- use of visual evidence, as well as abnormally low OIC. DICA effectively suppresses these anoma- lies, ensuring that visual attention remains focused and that model predictions stay grounded in image evidence throughout inference. D.3.2 Analysis of Îą VAE and Îą OIC The sensitivity of DICA to the drift and grounding thresholdsÎą VAE andÎą OIC is evaluated through a grid search on the MME benchmark. Figure 8 top presents the results when both thresholds range from 0.1 to 0.4. In this low-threshold regime, per- formance remains at a relatively low level, with DatasetSettingMethodLLaVA-v1.5Qwen-VL AccPreRecF1AccPreRecF1 MS-COCO random sampling83.882.486.184.284.996.072.982.9 VCD85.082.786.184.285.596.071.183.6 M3ID86.183.286.885.085.395.174.283.4 AvisC82.378.489.383.582.996.268.580.0 MoD89.290.088.289.186.097.074.384.1 DICA (Ours)89.294.183.788.887.496.977.486.0 popular sampling82.079.785.982.684.094.772.181.9 VCD82.178.588.383.284.994.574.983.6 M3ID82.880.188.584.184.294.173.882.7 AvisC78.272.790.380.582.895.568.980.1 MoD85.784.188.186.185.696.374.083.7 DICA (Ours)87.790.683.186.787.596.777.686.1 adversarial sampling75.871.386.378.182.190.072.380.2 VCD76.371.587.378.784.090.674.982.0 M3ID77.171.887.678.983.290.473.180.8 AvisC74.268.489.977.781.291.968.578.5 MoD79.775.488.281.384.092.474.282.3 DICA (Ours)83.288.676.282.084.893.175.2183.7 A-OKVQA random sampling81.876.492.183.586.893.279.585.8 VCD81.275.293.083.287.492.981.186.6 M3ID82.976.894.184.687.192.480.385.9 AvisC79.171.995.582.184.793.074.983.0 MoD86.581.394.787.587.894.480.486.9 DICA (Ours)89.287.991.089.489.594.384.388.9 popular sampling75.369.191.578.785.690.679.584.7 VCD74.768.292.578.586.389.581.285.1 M3ID75.869.892.179.485.990.779.284.6 AvisC71.864.795.677.283.990.975.582.4 MoD79.572.694.582.286.591.680.385.6 DICA (Ours)88.690.881.786.088.293.182.587.5 adversarial sampling67.461.891.273.780.480.180.980.5 VCD68.161.993.874.680.780.181.680.8 M3ID68.362.193.474.680.580.780.280.4 AvisC64.458.896.173.078.180.174.777.3 MoD69.162.694.775.481.081.280.680.9 DICA (Ours)77.875.781.878.681.381.780.881.3 GQA random sampling81.675.693.283.581.388.871.579.2 VCD82.276.094.184.182.087.674.580.5 M3ID83.376.894.084.582.488.172.879.7 AvisC79.071.496.782.280.589.968.677.8 MoD86.280.895.187.483.890.375.782.3 DICA (Ours)89.192.685.188.786.794.578.185.4 popular sampling73.166.792.577.575.978.172.074.9 VCD71.564.794.576.875.976.674.775.6 M3ID72.364.994.877.176.878.975.277.0 AvisC67.460.997.174.874.277.967.572.3 MoD74.066.895.378.679.882.475.778.9 DICA (Ours)81.979.485.582.582.186.477.681.7 adversarial sampling68.062.093.474.575.577.871.274.4 VCD67.661.594.474.576.777.874.776.2 M3ID67.261.093.974.077.178.674.976.7 AvisC64.158.596.772.975.580.567.473.4 MoD68.762.295.375.378.981.075.478.1 DICA (Ours)78.474.885.979.979.282.874.578.2 Table 6: Detailed evaluation results on POPE benchmark (Acc, Pre, Rec, F1) for LLaVA-v1.5 and Qwen-VL. [0.0, 0.1)[0.1, 0.2)[0.2, 0.3)[0.3, 0.4)[0.4, 0.5)[0.5, 0.6)[0.6, 0.7)[0.7, 0.8)[0.8, 0.9)[0.9, 1.0) d range 10 5 10 6 Frequency Figure 9: The change of Îą d On POPE. metric values concentrated between 603.33 and 608.33, showing no clear improvement. When the thresholds are set below 0.5, DICA becomes overly sensitive, causing the intervention mechanisms to be frequently triggered. Normal fluctuations and minor noise in the reasoning pro- cess are often misidentified as abnormal signals, leading VAE-GDC and OIC-GGR to apply unnec- essary corrections. Such over-correction disrupts otherwise stable inference trajectories and degrades overall performance. In contrast, the moderate-to-high threshold regime shown in the down part of Figure 8 ef- fectively alleviates this issue. WithÎą VAE = 0.8 andÎą OIC = 0.5, interventions are activated only when substantial attention drift or insufficient vi- sual grounding occurs. This selective activation avoids noise-induced corrections while enabling targeted adjustments, resulting in the best per- formance of 661.53. These results indicate that slightly higher threshold values strike a better bal- ance between intervention frequency and correc- tion strength, which is crucial for DICA to achieve optimal effectiveness. D.3.3 Analysis of Îą d The value ofÎą d exhibits a pronounced bimodal dis- tribution during inference on the POPE benchmark Figure 9, with most values concentrated near 0 or 1. This shows that VAE-GDCâs contrastive correc- tion is selectively activated, either fully engaged or nearly inactiveârather than applied uniformly. Values in [0.0, 0.1) occur when the Normal and Descriptive paths produce highly divergent outputs, typically during stable, visually grounded reason- ing. Here, the Descriptive path which generates open-ended descriptions naturally differs from the 42 44 46 CHAIR s CHAIR s d (CHAIR s ) 0.10.20.30.40.50.60.70.80.9 12 14 16 CHAIR i CHAIR i d (CHAIR i ) Figure 10: Performance with fixed Îą on CHAIR. task-specific Normal path, and the lowÎą d prevents unnecessary correction, preserving fluency. Con- versely, values in [0.9, 1.0) arise during attention drift: both paths yield diffuse, high-entropy distri- butions due to lost visual focus, making their out- puts unusually similar. The near unityÎą d triggers strong contrastive decoding to recover a grounded prediction. The scarcity of intermediate values confirms that DICA acts as a sparse, decisive inter- vention, activating only when clear anomalies are detected. We further fixÎą d to a constant valueÎąand con- duct experiments on the CHAIR dataset. As shown in Figure 10, our results reveal a clear relation- ship between the blending weightÎąand halluci- nation behavior. WhenÎąis close to 0, the model heavily relies on the Normal path, which is tightly grounded in visual input for the specific task. This leads to strong visual alignment and the lowest CHAIR scores, indicating minimal object halluci- nation. AsÎąincreases toward 1, the influence of the Descriptive path grows, introducing more open- ended and fluent language patterns but also increas- ing the risk of describing non-existent objects, as reflected by rising CHAIRs and CHAIRi. The best performance is consistently achieved at smallÎą values, confirming that precise visual grounding enabled by prioritizing the Normal path is crucial for hallucination suppression in captioning. This empirical trend validates the design of the adap- tiveÎą d , which automatically favors the Normal path during stable reasoning and only invokes the Descriptive path when attention drift necessitates corrective intervention. D.3.4 Analysis of β d The value ofβ d exhibits a pronounced bimodal distribution during inference on the POPE bench- [0.0, 0.1)[0.1, 0.2)[0.2, 0.3)[0.3, 0.4)[0.4, 0.5)[0.5, 0.6)[0.6, 0.7)[0.7, 0.8)[0.8, 0.9)[0.9, 1.0) d range 10 1 10 2 10 3 Frequency Figure 11: The change of β d on POPE. 0.10.20.30.40.50.60.70.80.91 635 640 645 650 655 660 665 Value d = 661.53 Figure 12: Performance with fixed β on MME. mark. As shown in Figure 11, the majority ofβ d values are clustered near the extremes of0and1, rather than being uniformly distributed. Specifi- cally, the high-density peak near0corresponds to stable reasoning phases where the model maintains a high correlation between its output and the rel- evant visual evidence, indicating that the internal attention mechanism is functioning correctly with- out excessive intervention. Conversely, the sharp peak near1signifies instances where the OIC drops significantly, reflecting potential attention drift or underuse of visual evidence. The fact thatβ d effec- tively polarizes these two states demonstrates that DICA can act as a precise binary-like trigger. This adaptive mechanism ensures that contrastive align- ment is only aggressively applied when a deviation from visual evidence is detected, thereby suppress- ing hallucinations while preserving the linguistic fluency of the model in normal states. We fixed the originalβ d value from the paper and replaced it with a unified constant hyperpa- rameterβ. As shown in Figure 12, the evalua- tion on the MME benchmark shows that the orig- inal setting withβ d achieves a score of 661.53, which significantly outperforms all configurations using fixedβvalues. Specifically, across the tested range ofβfrom 0.1 to 1.0, the best performance is only 648.33, which is clearly lower than the score obtained withβ d . This result demonstrates that the dynamic design ofβ d more effectively balances generation fluency and visual grounding, leading to superior overall performance and further validat- ing the effectiveness of the OIC-GGR module in DICA. D.3.5 Effectiveness of DICA in Visible Without DICA, the model exhibits clear signs of attention drift and underuse of visual evidence as illustrated in Figure 3. For instance, when an- swering âIs there a sports ball in the image?â, the attention map becomes diffused in deeper layers, shifting away from the relevant object region; si- multaneously, the log-probability of the correct answer drops sharply, leading the model to output an incorrect âNoâ. A similar failure occurs for the query âIs there a truck in the image?â, where visual cues are largely ignored despite their pres- ence, resulting in hallucinated responses. ââ In contrast, after applying DICA see Figure 13, our dual-indicator monitoring detects these anomalies in the middle-to-late decoding stages: a sudden rise in VAE triggers VAE-Guided Drift Correction. Meanwhile, a drop in OIC activates OIC-Guided Grounding Restoration. As a result, the modelâs attention is realigned to the semantically relevant regions, and the answer log-probabilities stabilize and converge toward the correct label. The final predictions become both visually grounded and accurate, demonstrating DICAâs effectiveness in restoring faithful cross-modal reasoning. D.3.6 Efficiency Analysis We analyze the computational overhead introduced by DICA and compare it with the total time cost of alternative hallucination mitigation strategies, in- cluding training-based and data-engineering-based approaches. During inference, standard autore- gressive decoding requires one forward pass per token. In contrast, DICA computes lightweight indicators from three computational streams: the normal path, the text-only path, and the descrip- tive path, which yields a theoretical upper bound of approximately three forward passes per token. However, the actual wall-clock latency increase is Q:Is there a sports ball in the image?Q:Is there a truck in the image? Attention Map ChangeAfter Use DICAAttention Map ChangeAfter Use DICA Figure 13: Evolution of answer log-probabilities and attention maps across layers applying DICA. ApproachTraining TimeData Prep OverheadInference CostDeployment Agility Retraining / RLHFHighHigh1ĂLow Data EngineeringMedium (fine-tuning required)Very High1ĂLow Beam Search (k = 5)ZeroZero5ĂHigh DICA (Ours)ZeroZeroâź2.5ĂVery High Table 7: Comparison of time and deployment costs across hallucination mitigation paradigms. Training Time is measured in GPU-hours. Data preparation overhead refers to the qualitative human and computational effort required to curate or generate additional supervision signals before training or inference. The inference cost is reported as a multiplicative factor relative to standard greedy decoding. significantly smaller. This is because the vision encoder, the heaviest module in MLLMs, runs only once. Meanwhile, subsequent computations oper- ate solely within the decoder layers and therefore benefit heavily from KV-cache reuse. Moreover, the additional streams are executed within the same decoding iteration. They are processed jointly on modern GPUs, whose parallel throughput leads to sub-linear latency growth relative to the number of streams. Another important observation is that DICA activates its computationally expensive cor- rection modules only when the VAE or OIC indi- cators exceed their respective thresholds, meaning that the overhead is sparse rather than incurred at every decoding step. For example, on LLaVA-1.5, DICA adds roughly 0.04â0.08 seconds per token relative to greedy decoding. For typical VQA out- puts under 20 tokens, the end-to-end delay remains below 1.5 seconds, which is well within the inter- active latency tolerance. The more substantial efficiency advantage of DICA appears when considering the full lifecy- cle cost of deploying a hallucination mitigation method. Unlike approaches requiring supervised fine-tuning, RLHF, or counterfactual data construc- tion, DICA introduces zero training cost and zero data preparation cost. In comparison, beam search incurs a 3â5Ăinference multiplier. Table 7 sum- marizes the comparison across methods. Despite a moderate increase in inference-time computation (approximately 2.5Ă), DICA eliminates the signif- icantly higher cost associated with retraining or building large-scale, curated datasets. D.3.7 Performance on Qwen3 To further verify the generalization ability of our method, we conducted supplementary experiments on a more recent backbone model, Qwen3 (Yang et al., 2025a), under the POPE benchmark. Specif- ically, we compared the original Qwen3 baseline with Qwen3 enhanced by our DICA framework. Table 8 presents the detailed results. Across all datasets and evaluation settings, DICA consistently improves both Accuracy and F1 score over the orig- inal Qwen3 model. Notably, performance gains are observed not only under Random splits but also under more challenging Popular and Adversarial settings, which are designed to evaluate robustness against hallucination biases. These results indicate that DICA is not tightly coupled with a specific architecture but instead acts as a general and transferable hallucination mitiga- DatasetSettingQwen3(Base) Qwen3(DICA) AccF1AccF1 MSCOCO Random89.50 88.67 91.7391.15 Popular87.47 86.73 89.1388.68 Adversarial 85.70 85.11 87.2386.95 AOKVQA Random92.80 92.71 94.1094.07 Popular89.00 89.35 90.3090.50 Adversarial 82.70 84.14 84.3785.52 GQA Random91.70 91.55 92.7792.59 Popular87.60 88.01 89.3789.48 Adversarial 83.87 84.77 85.0085.80 Table 8: Performance comparison on the POPE bench- mark. Base denotes the original Qwen3 model. tion framework. E More Case Studies Figure 14 presents a qualitative comparison of dif- ferent decoding and alignment methods on a repre- sentative indoor scene involving children and adults sharing food. As shown, baseline methods such as VCD, M3ID, VCD, and OPERA tend to introduce inconsistent or hallucinated details when generat- ing descriptions, for example, misidentifying the event as a birthday party, adding non-existent dec- orations, or over-specifying social activities that are not visually grounded. These errors indicate that the models are overly influenced by spurious correlations or high-level priors rather than the ac- tual visual evidence. In contrast, DICA produces a more faithful and conservative description that remains closely aligned with the image content, avoiding unsupported assumptions while preserv- ing key visual elements. This case study demon- strates that DICA effectively mitigates attention drift and reduces semantic hallucination by correct- ing intermediate representations, leading to more reliable image-grounded generation. Figure 15 presents a qualitative comparison of image description results generated by different decoding methods on the same input image. As shown, baseline methods tend to introduce vary- ing degrees of hallucination or over-interpretation. Some outputs incorrectly infer specific cuisines, misidentify ingredients, or add contextual assump- tions such as restaurant settings or instructional purposes that are not supported by the visual ev- idence. These errors indicate that the models are overly influenced by language priors, leading to semantic drift during decoding. In contrast, DICA produces a more faithful and conservative descrip- tion, accurately reflecting the observable content in the image without introducing unsupported de- tails. This case study highlights the effectiveness of DICA in suppressing hallucinated information and improving visual grounding. Textual input: Please describe this image in detail. The image shows a group of people gathered indoors around a long eating area, sharing a meal together. Both adults and children are present, suggesting a community or school-related event. The environment appears similar to a cafeteria or classroom, where people are seated closely and interacting in a casual manner. The scene conveys a general sense of social dining and group interaction. This image depicts a lively birthday party taking place indoors, with many children gathered together to celebrate. Colorful balloons and party decorations surround the group, enhancing the festive atmosphere. The children are enjoying cake and snacks while adults take photos and supervise the celebration. The overall scene strongly resembles a cheerful birthday event. The image shows a group of children attending a special indoor celebration. Various party elements such as desserts, gift items, and festive accessories can be observed. The children appear excited as they sit together eating sweets, while adults document the moment. This scene likely represents a formal celebration organized for children. This image shows young children sitting on the floor in a classroom or daycare setting. They appear to be participating in a structured group activity, possibly related to learning or storytelling. Adults are nearby, likely acting as teachers guiding the session. The overall scene reflects an educational environment focused on group instruction. The image captures a daycare environment where children are gathered indoors on the floor. Some children appear to be eating snacks, while others seem to be playing or interacting with toys. Adults supervise the children and manage different activities occurring at the same time. The scene combines elements of playtime and snack time. The image shows a group of children and adults indoors, interacting within a shared space. The individuals appear calm and engaged in a supervised group setting. The environment looks organized and safe, suggesting a general group activity. No specific action or event is emphasized. The image shows a group of young children sitting closely together on colorful floor mats indoors, each eating slices of pizza from blue plates. The setting resembles a daycare or childrenâs activity room rather than a formal classroom. Several adults are standing or kneeling around the children, supervising them and taking photos. The atmosphere is lively and informal, indicating a group meal or small childrenâs gathering. Sample VCDM3IDVCD AvisC MoD OPERADICA (ours) Figure 14: Case study of generative on CHAIR. We compare responses generated by sampling, VCD, M3ID, AvisC, MoD, and OPERA. Hallucinated content is highlighted red, while more detailed and accurate content is marked in green. Textual input: Please describe this image in detail. The image shows a plate of food placed on a wooden table. The dish appears to contain rice along with various cooked ingredients mixed together. Some vegetables and pieces of meat are visible, suggesting a balanced meal. A glass of water can also be seen in the background, indicating a casual dining setting. This image depicts a Western-style dinner plate featuring grilled steak served with mashed potatoes and mixed vegetables. The meal appears to be professionally plated, resembling a restaurant-style dish. The warm tones and tableware further enhance the impression of a formal Western meal setting The image shows a plated meal consisting of rice accompanied by curry sauce and vegetables. The dish appears to be a form of curry rice, commonly found in South or Southeast Asian cuisine. The sauce generously covers the rice, giving the meal a rich and flavorful appearance. This image shows a prepared meal used for demonstration or instructional purposes. The food appears carefully arranged, suggesting it may be part of a cooking lesson or food presentation. The plate includes rice and vegetables, arranged to showcase balance and portioning rather than casual dining. The image presents a meal that could be either a homemade lunch or a restaurant dish. It includes rice, vegetables, and possibly chicken or tofu. The vegetables appear both steamed and fried, while the protein is unclear. The scene may represent either casual home dining or a plated food sample. The image shows a plate containing food placed on a table. The contents are arranged neatly, and the environment appears calm and ordinary. The scene represents a typical dining situation without emphasizing any specific type of cuisine or dish. The image shows a plate of food placed on a wooden table, consisting of a serving of white rice alongside a stir-fried dish made with sliced chicken and mixed vegetables such as broccoli and carrots. The food appears freshly cooked, with the rice kept separate from the stir-fry. A glass of water is visible in the background, suggesting a casual dining setting, possibly at a restaurant or cafĂŠ. Sample VCDM3IDVCD AvisC MoD OPERADICA (ours) Figure 15: Case study of generative on CHAIR. We compare responses generated by sampling, VCD, M3ID, AvisC, MoD, and OPERA. Hallucinated content is highlighted red, while more detailed and accurate content is marked in green.