REVIEW 5 major objections 5 minor 16 cited by
Seeing Clearly by Layer Two: Enhancing Attention Heads to Alleviate Hallucination in LVLMs
T0 review · 5 major / 5 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper claims that hallucinations in vision-language models track the density of attention sinks over image tokens, and that copying the densest early-layer attention head across its layer reduces hallucination without retraining.
desk verdict A simple training-free attention-broadcast trick that cuts CHAIR scores across LVLMs; the mechanism claim needs a random-head control and the mask equation looks like a zero-matrix typo. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The key machinery is the vision-sink measure combined with a broadcast operation. A vision sink is defined as a column in the image-token range whose average attention score exceeds $\beta$; the paper counts such columns per head in a shallow layer and classifies heads with many such columns as dense vision sink heads. EAH takes the head with the maximum count and overwrites every other head in that layer with its attention map, forcing the layer to follow one high-density attention pattern. This operation carries the whole argument because the claimed effect depends on whether homogenizing early-layer image attention is safe and beneficial.
What would settle it
A direct test would be to broadcast a randomly chosen head, or the head with the fewest vision sinks, instead of the densest one; if hallucination drops just as much under those alternatives, density is not what matters. A complementary test would be to apply EAH to images deliberately chosen to contain many small, spatially spread objects and check whether recall of those objects falls, which would show the homogenization sacrifices coverage rather than simply sharpening vision.
Extended reading notes
Core claim
On the paper's own terms, the central discovery is a consistent relationship between the density of vision sinks in shallow-layer attention heads and hallucination, plus an intervention that exploits it. A vision sink is a column within the image-token range of an attention map whose average score exceeds a threshold $\beta$; a dense vision sink head is one in which many such columns appear. The paper reports that hallucinating outputs activate fewer dense vision sink heads in layers 1 and 2, while non-hallucinating outputs activate more. EAH then selects the head with the highest vision-sink count and broadcasts its attention map to all heads in that layer, using $A[i][j] = A[i][n]$ for every head $j$. The authors claim this dense, homogenized early-layer attention carries image information forward and reduces hallucination on POPE and CHAIR, with additional gains on several general benchmarks and on LLM factuality tasks.
Load-bearing premise
The load-bearing premise is that overwriting every attention head in the first two layers with one selected head's attention map preserves enough information for downstream layers, so that the forced consensus pattern helps more than the destroyed multi-head diversity hurts.
Editorial extensions
If this is right
- Applying EAH to layer 2 with $\beta=0.002$ and the top-1 head improves CHAIR$_S$ and CHAIR$_I$ on LLaVA-1.5-7B relative to greedy search while keeping caption length comparable (36.4/9.9 versus 47.0/13.8).
- The method transfers across model families including LLaVA, Shikra, MiniGPT-4, InstructBLIP, Qwen-VL, Mini-Gemini, and InternVL, with larger gains reported for models using MLP or Linear projectors.
- EAH also produces consistent accuracy gains on GSM8K and TruthfulQA for LLaMA-3.1, Ministral-8B, Qwen-2-7B, and Qwen-2.5-7B, suggesting the underlying LLM pattern is shared.
- Ablation results show that broadcasting to all 32 heads works best and that applying EAH in deeper layers (3, 4, 16, 32) degrades performance, supporting the claim that only shallow layers should be modified.
Reading between the lines
- If the mechanism is right, the density signal could be computed per token during generation to select which head to broadcast dynamically, rather than fixing the layer and head in advance as the paper does.
- The aggressive overwrite implies that multi-head diversity in early layers is largely redundant for vision grounding; a testable extension is whether those heads could be pruned entirely instead of merely copied over.
- The reported gains on pure LLM factuality tasks suggest the attention-sink pattern may be inherited from the base language model rather than learned by the vision projector, a distinction the paper leaves open.
- A stress test with images containing many small, distributed objects would show whether the homogenized attention pattern trades hallucination reduction for missed visual details.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a training-free, plug-and-play method, Enhancing Attention Heads (EAH), to reduce object hallucinations in large vision-language models (LVLMs). The authors analyze attention maps and observe that shallow layers contain dense 'vision sinks' (columns with high average attention over image tokens) and that hallucination tokens tend to be associated with fewer such heads. EAH identifies, within a chosen shallow layer, the head with the densest vision sink and broadcasts that head's attention map to all other heads in that layer (Algorithm 1, Eq. 12). They report CHAIR and POPE improvements on LLaVA-1.5-7B, plus additional experiments on other LVLMs and LLMs.
Significance. The paper addresses an important problem, hallucination in LVLMs, and proposes a simple, training-free intervention that requires no parameter updates, which is attractive for practical deployment. The observation that attention patterns in shallow layers correlate with hallucination is interesting and potentially useful for future interpretability work. A strength is the breadth of models tested (seven LVLMs and four LLMs). However, the current evidence does not yet establish the paper's causal mechanism: the missing control experiments, the incorrect mask definition, and the lack of statistical rigor all limit the significance of the reported gains. If the control experiments confirm that dense vision sinks—rather than mere attention homogenization—are responsible, the method would be a meaningful contribution; as written, the support is incomplete.
major comments (5)
- [Section 3.2, Eq. (5)-(6), Eq. (8)] The mask matrix is defined as M = eye(r,c) - diag(1). For a square attention map (r = c), this equals the zero matrix. With M = 0, the left-hand side of Eq. (6) and Eq. (8) is identically 0, so no column can ever exceed any positive threshold β, contradicting the existence of the vision sinks that the paper reports. This is a central definitional error that prevents replication. Please correct the mask definition (likely M = ones(r,c) - eye(r,c)) and verify all subsequent equations.
- [Section 3.3, Algorithm 1, Eq. (12)] The central causal claim—that broadcasting the head with the densest vision sink reduces hallucination—is not tested. All ablations vary layer, threshold, or the number of broadcast heads, but none compare EAH to an equally aggressive control that broadcasts a randomly chosen head, the head with the fewest vision sinks, or the average of all heads. Without such controls, the observed CHAIR improvements could be due to the homogenization of early-layer attention (a diversity-reducing operation) rather than the specific dense-sink property. Please add these controls and report their CHAIR and POPE numbers.
- [Section 4.4.3, Table 6] The hyperparameters β, layer index, and top-N are selected directly on the CHAIR evaluation benchmark, and the same CHAIR numbers are then reported as the main result in Table 1. This selection procedure risks overfitting to the evaluation set. The paper provides no held-out validation, cross-validation, or confidence intervals. Please report results on a separate validation split or provide statistical significance tests (e.g., repeated runs with different seeds) to show that the improvements are not artifacts of tuning.
- [Section 4.4.2, Table 5] Applying EAH to pure text LLMs (LLaMA-3.1, Ministral, Qwen-2, Qwen-2.5) is conceptually unclear: the vision sink definition depends on an image token range [s, e] and an image token count (e.g., 576), but these quantities are undefined for text-only inputs. The paper does not explain how the method is adapted to LLMs, what token range is used, or what the broadcast operation means without image tokens. Please either clarify the adaptation or remove this section, since it currently undermines the paper's focus and reproducibility.
- [Section 4.2, Table 1 and Appendix A.1] EAH reduces CHAIR CS from 47.0 to 36.4 but also lowers recall from 76.6 to 73.9, and POPE F1 remains unchanged at 85.7. The appendix acknowledges a roughly 4-point recall drop. This pattern is consistent with a diversity-reducing regularizer that makes the model more conservative in its captions, rather than with a mechanism that specifically improves visual grounding. The paper should analyze whether the gains are driven by reduced output diversity (e.g., by measuring caption length, lexical diversity, and recall on a per-category basis) and should report the standard deviations across the evaluation set.
minor comments (5)
- [Equations (1), (6), (8)] The symbol "Pr" in the equations appears to be a summation (Σ), not a probability. Please replace it with \sum for clarity.
- [Section 4.4.1] The text refers to "Table 8" for the generalization study on other LVLMs, but the corresponding table is numbered Table 4 in the paper. Please fix the cross-reference.
- [Table 7] The row for Layer=32, Threshold=0.008 lists a threshold value that does not appear in the other rows for layer 32; likely a typo for 0.002. Please correct.
- [Appendix A.3.1] The phrase "layer 1.2" likely means "layers 1–2" or "layers 1 and 2". Please clarify.
- [General] The word "significant" is used to describe performance improvements without any statistical significance testing. Please either add significance tests or replace the word with "substantial" or similar.
Circularity Check
No significant circularity: the vision-sink ranking is geometric and externally validated; the CHAIR-tuned hyperparameters and missing broadcast control are correctness risks, not reduction-by-construction.
full rationale
This paper's central chain is observational, not derivational. Vision sinks are defined geometrically in Eqs. 6-7 as image-range attention columns whose mean score exceeds a threshold beta; dense-vision-sink heads are then correlated with hallucination-free tokens (Sec. 3.1, Figs. 3-4) using external CHAIR/POPE labels, and EAH (Eqs. 11-12) broadcasts the attention map of the head with the maximum sink count. No step reduces by construction: the vision-sink definition contains no reference to hallucination labels or to CHAIR/POPE scores, and the outcome of the broadcast is an empirical measurement that could have failed. The closest concern is hyperparameter selection: layer=2, beta=0.002, and N=1 are chosen on the CHAIR benchmark itself (Sec. 4.4.3), and the same CHAIR numbers are then reported as the headline result (Table 1), which inflates but does not force the gain - deeper layers are worse than the baseline (Table 7), so the improvement is not entailed by the search. The causal claim that dense vision sinks, rather than attention homogenization, drive the gains is under-supported because no control broadcasts a random, sparse-sink, or averaged head; that is a missing-control confound for the mechanism, not a circular reduction. Self-citations are minor and not load-bearing: Ref. [45] (overlapping authors) supplies the Grad-CAM visualization tool and Ref. [36] (a co-author) is related-work comparison. Independent evidence is substantial: the early-layer observation is credited to external FastV work, and fixed-hyperparameter gains on other LVLMs (Table 4), LLMs (Table 5), and general benchmarks (Tables 2-3) are genuine held-out tests. The paper also discloses its own 4-point recall drop (Appendix A.1), consistent with a diversity-reducing intervention rather than a forced identity. Verdict: no significant circularity (score 2), with the CHAIR tuning and missing-control issues flagged as correctness risks.
Assumptions & free parameters
free parameters (4)
- beta (vision sink threshold) =
0.002
- layer L =
2
- top-N broadcast heads =
1
- image token range [s,e] =
36 to 611 on LLaVA-1.5
assumptions (3)
- domain assumption Overwriting every attention head in layers 0 to 2 with one head's map is a safe intervention.
- domain assumption The observed correlation between dense vision sinks and fewer hallucinations is causal and intervention-relevant.
- ad hoc to paper Hyperparameters chosen on CHAIR transfer to other benchmarks and models.
Cite this review
Pith. "Pith review of Seeing Clearly by Layer Two: Enhancing Attention Heads to Alleviate Hallucination in LVLMs." pith.science (2026). https://pith.science/paper/TQVV4L6W
@misc{pith2026241109968,
author = {Pith},
title = {Pith review of: Seeing Clearly by Layer Two: Enhancing Attention Heads to Alleviate Hallucination in LVLMs},
year = {2026},
howpublished = {\url{https://pith.science/paper/TQVV4L6W}},
note = {Machine review of arXiv:2411.09968}
}
read the original abstract
The hallucination problem in multimodal large language models (MLLMs) remains a common issue. Although image tokens occupy a majority of the input sequence of MLLMs, there is limited research to explore the relationship between image tokens and hallucinations. In this paper, we analyze the distribution of attention scores for image tokens across each layer and head of the model, revealing an intriguing and common phenomenon: most hallucinations are closely linked to the pattern of attention sinks in the self-attention matrix of image tokens, where shallow layers exhibit dense attention sinks and deeper layers show sparse attention sinks. We further analyze the attention heads of different layers and find that heads with high-density attention sink in the image part play a positive role in alleviating hallucinations. In this paper, we propose a training-free method named \textcolor{red}{\textbf{E}}nhancing \textcolor{red}{\textbf{A}}ttention \textcolor{red}{\textbf{H}}eads (EAH), an approach designed to enhance the convergence of image tokens attention sinks in the shallow layers. EAH identifies the attention head that shows the vision sink in a shallow layer and extracts its attention matrix. This attention map is then broadcast to other heads in the layer, thereby strengthening the layer to pay more attention to the image itself. With extensive experiments, EAH shows significant hallucination-mitigating performance on different MLLMs and metrics, proving its effectiveness and generality.
Figures
Figures from the paper (16 more)
Forward citations
Cited by 16 Pith papers
-
Visual Attention Never Fades: Selective Progressive Attention ReCalibration for Detailed Image Captioning in Multimodal Large Language Models
SPARC selectively and progressively reinforces attention to relevant image tokens during decoding, improving both precision and recall in detailed image captioning compared to baselines and prior hallucination-mitigat...
-
Cracking the Code of Hallucination in LVLMs with Vision-aware Head Divergence
Hallucination in LVLMs correlates with low sensitivity of attention heads to image input, and scaling up the most image-sensitive heads reduces it without training.
-
The Ebb and Flow of Multimodal Focus: Scheduling Visual Relay Windows for Grounded VLM Reasoning
Visual evidence in VLMs flows through a depth-wise Visual Relay Window; scheduling that window with the lightweight TRACE controller yields +4.33 points on grounding benchmarks and +3.05 on MathVista across four open-...
-
Role-Break in Attention Heads: Understanding and Detecting Hallucinations in VLMs
Hallucinated tokens in vision-language models are detectable from each attention head's deviation from its own faithful source-allocation role, reaching ~93% AUROC with a linear probe.
-
ST-Veto: Spatio-Temporal Token Veto for Diffusion MLLMs via Taylor Prediction and Visual Grounding
ST-Veto improves reasoning in diffusion MLLMs by vetoing temporally unstable tokens and tokens with weak image grounding, swapping in safer near-boundary candidates.
-
METEOR: Multi-Encoder Collaborative Token Pruning for Efficient Vision Language Models
METEOR is a three-stage token pruning framework that reduces visual tokens in multi-encoder MLLMs by 76% with only a 0.3% average accuracy drop.
-
Kwai Keye-VL Technical Report
Kwai Keye-VL shows that a five-mode chain-of-thought cold-start plus mix-mode reinforcement learning can push an 8B multimodal model to strong short-video and general vision-language performance.
-
DenseWorld-1M: Towards Detailed Dense Grounded Caption in the Real World
DenseWorld-1M provides one million images with detailed object captions, pixel masks, and spatial relations by chaining SAM, APE, RAM++, and VLMs through a three-stage labeling pipeline.
-
Dense360: Dense Understanding from Omnidirectional Panoramas
Introduces a 160K-panorama auto-annotated dataset, a dense captioning and grounding benchmark, and ERP-RoPE; fine-tuning Qwen2.5VL on the data lifts benchmark scores.
-
Mitigating Object Hallucination via Robust Local Perception Search
A training-free decoding method that uses an MLLM's own local object descriptions as a reward prior, combined with CLIP similarity, to cut object hallucination, especially under adversarial image noise.
-
Enhancing Multimodal Large Language Models Complex Reason via Similarity Computation
Simignore improves multimodal LLM complex question answering on ScienceQA by masking image tokens whose embeddings have low cosine similarity to the text prompt.
-
A Comprehensive Analysis for Visual Object Hallucination in Large Vision-Language Models
The paper finds the LLM is mostly faithful given good captions, the CLIP vision encoder contributes perception errors, and the projector preserves visual information but aligns it poorly with text.
-
Toward Modality Gap: Vision Prototype Learning for Weakly-supervised Semantic Segmentation with CLIP
Weakly supervised segmentation with CLIP improves by learning per-class prototypes in vision space instead of relying on text prototypes.
-
MCA-LLaVA: Manhattan Causal Attention for Reducing Hallucination in Large Vision-Language Models
MCA-LLaVA reindexes image tokens by sums of mirrored 2D coordinates so instruction tokens attend across the whole image, reducing hallucination on POPE, CHAIR, and MME.
-
AdaToken-3D: Dynamic Spatial Gating for Efficient 3D Large Multimodal-Models Reasoning
AdaToken-3D uses attention-derived contribution scores to prune spatial tokens layer by layer in 3D LMMs, achieving about 60 percent FLOPs reduction with roughly unchanged benchmark scores.
-
First-place Solution for Streetscape Shop Sign Recognition Competition
A team reports winning a street-view shop sign recognition competition with a multi-stage OCR pipeline built from known components, but provides no code, data, or rigorous ablations.
Reference graph
Works this paper leans on
-
[1]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ah- mad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774 ,
-
[2]
Wenbin An, Feng Tian, Sicong Leng, Jiahao Nie, Haonan Lin, QianYing Wang, Guang Dai, Ping Chen, and Shijian Lu. Agla: Mitigating object hallucinations in large vision- language models with assembly of global and local attention. arXiv preprint arXiv:2406.12718, 2024. 6, 7
arXiv 2024
-
[3]
Qwen-vl: A frontier large vision-language model with versatile abilities
Jinze Bai, Shuai Bai, Shusheng Yang, Shijie Wang, Sinan Tan, Peng Wang, Junyang Lin, Chang Zhou, and Jingren Zhou. Qwen-vl: A frontier large vision-language model with versatile abilities. arXiv preprint arXiv:2308.12966 , 2023. 1, 4, 7, 8
arXiv 2023
-
[4]
Shikra: Unleashing multimodal llm’s ref- erential dialogue magic
Keqin Chen, Zhao Zhang, Weili Zeng, Richong Zhang, Feng Zhu, and Rui Zhao. Shikra: Unleashing multimodal llm’s ref- erential dialogue magic. arXiv preprint arXiv:2306.15195 ,
-
[5]
Liang Chen, Haozhe Zhao, Tianyu Liu, Shuai Bai, Junyang Lin, Chang Zhou, and Baobao Chang. An image is worth 1/2 tokens after layer 2: Plug-and-play inference acceleration for large vision-language models. 18th European Conference on Computer Vision ECCV 2024, 2024. 2, 6, 7
work page 2024
-
[6]
Internvl: Scaling up vision foundation mod- els and aligning for generic visual-linguistic tasks
Zhe Chen, Jiannan Wu, Wenhai Wang, Weijie Su, Guo Chen, Sen Xing, Muyan Zhong, Qinglong Zhang, Xizhou Zhu, Lewei Lu, et al. Internvl: Scaling up vision foundation mod- els and aligning for generic visual-linguistic tasks. In Pro- ceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 24185–24198, 2024. 2, 3, 4, 7, 8
work page 2024
-
[7]
Halc: Object hallucination reduc- tion via adaptive focal-contrast decoding
Zhaorun Chen, Zhuokai Zhao, Hongyin Luo, Huaxiu Yao, Bo Li, and Jiawei Zhou. Halc: Object hallucination reduc- tion via adaptive focal-contrast decoding. arXiv preprint arXiv:2403.00425, 2024. 6, 7, 11
arXiv 2024
-
[8]
Dola: Decoding by con- trasting layers improves factuality in large language models
Yung-Sung Chuang, Yujia Xie, Hongyin Luo, Yoon Kim, James Glass, and Pengcheng He. Dola: Decoding by con- trasting layers improves factuality in large language models. arXiv preprint arXiv:2309.03883, 2023. 6, 7, 11
arXiv 2023
Show all 46 references
-
[9]
Training verifiers to solve math word problems
Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, Christopher Hesse, and John Schulman. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168, 2021. 7
-
[10]
Instructblip: Towards general-purpose vision-language models with instruction tuning
Wenliang Dai, Junnan Li, Dongxu Li, Anthony Meng Huat Tiong, Junqi Zhao, Weisheng Wang, Boyang Li, Pascale N Fung, and Steven Hoi. Instructblip: Towards general-purpose vision-language models with instruction tuning. Advances in Neural Information Processing Systems, 36, 2024....
2024
-
[11]
The llama 3 herd of models
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Ab- hishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783 ,
-
[12]
Blink: Multimodal large language models can see but not perceive
Xingyu Fu, Yushi Hu, Bangzheng Li, Yu Feng, Haoyu Wang, Xudong Lin, Dan Roth, Noah A Smith, Wei-Chiu Ma, and Ranjay Krishna. Blink: Multimodal large language models can see but not perceive. arXiv preprint arXiv:2404.12390,
-
[13]
Multimodal-gpt: A vision and lan- guage model for dialogue with humans
Tao Gong, Chengqi Lyu, Shilong Zhang, Yudong Wang, Miao Zheng, Qian Zhao, Kuikun Liu, Wenwei Zhang, Ping Luo, and Kai Chen. Multimodal-gpt: A vision and lan- guage model for dialogue with humans. arXiv preprint arXiv:2305.04790, 2023. 1
2023 arXiv
-
[14]
Making the v in vqa matter: Elevating the role of image understanding in visual question answer- ing
Yash Goyal, Tejas Khot, Douglas Summers-Stay, Dhruv Ba- tra, and Devi Parikh. Making the v in vqa matter: Elevating the role of image understanding in visual question answer- ing. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 6904–6913...
2017
-
[15]
Hallusionbench: An advanced diag- nostic suite for entangled language hallucination and visual illusion in large vision-language models
Tianrui Guan, Fuxiao Liu, Xiyang Wu, Ruiqi Xian, Zongxia Li, Xiaoyu Liu, Xijun Wang, Lichang Chen, Furong Huang, Yaser Yacoob, et al. Hallusionbench: An advanced diag- nostic suite for entangled language hallucination and visual illusion in large vision-language models. arXiv ...
-
[16]
Vizwiz grand challenge: Answering visual questions from blind people
Danna Gurari, Qing Li, Abigale J Stangl, Anhong Guo, Chi Lin, Kristen Grauman, Jiebo Luo, and Jeffrey P Bigham. Vizwiz grand challenge: Answering visual questions from blind people. In Proceedings of the IEEE conference on computer vision and pattern recognition, pages 3608–3617,
-
[17]
Opera: Alleviating hallucination in multi-modal large language models via over-trust penalty and retrospection- allocation
Qidong Huang, Xiaoyi Dong, Pan Zhang, Bin Wang, Con- ghui He, Jiaqi Wang, Dahua Lin, Weiming Zhang, and Neng- hai Yu. Opera: Alleviating hallucination in multi-modal large language models via over-trust penalty and retrospection- allocation. In Proceedings of the IEEE/CVF Conf...
2024
-
[18]
Gqa: A new dataset for real-world visual reasoning and compositional question answering
Drew A Hudson and Christopher D Manning. Gqa: A new dataset for real-world visual reasoning and compositional question answering. In Proceedings of the IEEE/CVF con- ference on computer vision and pattern recognition , pages 6700–6709, 2019. 6
2019
-
[19]
Mistral 7b
Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lam- ple, Lucile Saulnier, et al. Mistral 7b. arXiv preprint arXiv:2310.06825, 2023. 7, 8
-
[20]
Mitigating object hal- lucinations in large vision-language models through visual contrastive decoding
Sicong Leng, Hang Zhang, Guanzheng Chen, Xin Li, Shijian Lu, Chunyan Miao, and Lidong Bing. Mitigating object hal- lucinations in large vision-language models through visual contrastive decoding. In Proceedings of the IEEE/CVF Con- ference on Computer Vision and Pattern Recogn...
2024
-
[21]
Seed-bench: Benchmarking multi- modal llms with generative comprehension
Bohao Li, Rui Wang, Guangzhi Wang, Yuying Ge, Yix- iao Ge, and Ying Shan. Seed-bench: Benchmarking multi- modal llms with generative comprehension. arXiv preprint arXiv:2307.16125, 2023. 6
2023 arXiv
-
[22]
Fine-tuning multimodal llms to follow zero-shot demonstrative instructions
Juncheng Li, Kaihang Pan, Zhiqi Ge, Minghe Gao, Wei Ji, Wenqiao Zhang, Tat-Seng Chua, Siliang Tang, Han- wang Zhang, and Yueting Zhuang. Fine-tuning multimodal llms to follow zero-shot demonstrative instructions. In The Twelfth International Conference on Learning Representa- ...
2023
-
[23]
Inference-time intervention: Elicit- ing truthful answers from a language model
Kenneth Li, Oam Patel, Fernanda Vi ´egas, Hanspeter Pfister, and Martin Wattenberg. Inference-time intervention: Elicit- ing truthful answers from a language model. Advances in Neural Information Processing Systems , 36, 2024. 3, 6, 7, 11
2024
-
[24]
Evaluating object hallucina- tion in large vision-language models
Yifan Li, Yifan Du, Kun Zhou, Jinpeng Wang, Wayne Xin Zhao, and Ji-Rong Wen. Evaluating object hallucina- tion in large vision-language models. arXiv preprint arXiv:2305.10355, 2023. 6, 7
2023 arXiv
-
[25]
Llama-vid: An image is worth 2 tokens in large language models
Yanwei Li, Chengyao Wang, and Jiaya Jia. Llama-vid: An image is worth 2 tokens in large language models. arXiv preprint arXiv:2311.17043, 2023. 1
2023 arXiv
-
[26]
Mini-gemini: Mining the potential of multi-modality vision language models
Yanwei Li, Yuechen Zhang, Chengyao Wang, Zhisheng Zhong, Yixin Chen, Ruihang Chu, Shaoteng Liu, and Jiaya Jia. Mini-gemini: Mining the potential of multi-modality vision language models. arXiv preprint arXiv:2403.18814,
-
[27]
Truthfulqa: Measuring how models mimic human falsehoods
Stephanie Lin, Jacob Hilton, and Owain Evans. Truthfulqa: Measuring how models mimic human falsehoods. arXiv preprint arXiv:2109.07958, 2021. 7
2021 arXiv
-
[28]
Aligning large multi-modal model with robust instruction tuning
Fuxiao Liu, Kevin Lin, Linjie Li, Jianfeng Wang, Yaser Yacoob, and Lijuan Wang. Aligning large multi-modal model with robust instruction tuning. arXiv preprint arXiv:2306.14565, 2023. 1
2023 arXiv
-
[29]
Visual instruction tuning
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. Advances in neural information processing systems, 36, 2024. 1, 2, 3, 4, 6, 7, 8
2024
-
[30]
Mitigating dialogue hallucination for large multi- modal models via adversarial instruction tuning
Dongmin Park, Zhaofang Qian, Guangxing Han, and Ser- Nam Lim. Mitigating dialogue hallucination for large multi- modal models via adversarial instruction tuning. arXiv preprint arXiv:2403.10492, 2024. 1
2024 arXiv
-
[31]
Object hallucination in image cap- tioning
Anna Rohrbach, Lisa Anne Hendricks, Kaylee Burns, Trevor Darrell, and Kate Saenko. Object hallucination in image cap- tioning. arXiv preprint arXiv:1809.02156, 2018. 6, 8
2018 arXiv
-
[32]
Gemini: a family of highly capable multimodal models
Gemini Team, Rohan Anil, Sebastian Borgeaud, Yonghui Wu, Jean-Baptiste Alayrac, Jiahui Yu, Radu Soricut, Johan Schalkwyk, Andrew M Dai, Anja Hauth, et al. Gemini: a family of highly capable multimodal models. arXiv preprint arXiv:2312.11805, 2023. 1
2023 arXiv
-
[33]
Qwen2.5: A party of foundation models, 2024
Qwen Team. Qwen2.5: A party of foundation models, 2024. 7, 8
2024
-
[34]
Llama: Open and efficient foundation language models
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timoth ´ee Lacroix, Bap- tiste Rozi `ere, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971, 2023. 7
2023 arXiv
-
[35]
Label words are an- chors: An information flow perspective for understanding in- context learning
Lean Wang, Lei Li, Damai Dai, Deli Chen, Hao Zhou, Fan- dong Meng, Jie Zhou, and Xu Sun. Label words are an- chors: An information flow perspective for understanding in- context learning. arXiv preprint arXiv:2305.14160, 2023. 2, 4
2023 arXiv
-
[36]
Dopra: Decoding over-accumulation penalization and re-allocation in specific weighting layer
Jinfeng Wei and Xiaofeng Zhang. Dopra: Decoding over-accumulation penalization and re-allocation in specific weighting layer. Proceedings of the 32nd ACM International Conference on Multimedia, 2024. 4, 6, 7
2024
-
[37]
Efficient streaming language models with attention sinks
Guangxuan Xiao, Yuandong Tian, Beidi Chen, Song Han, and Mike Lewis. Efficient streaming language models with attention sinks. arXiv preprint arXiv:2309.17453, 2023. 4
2023 arXiv
-
[38]
Miti- gating object hallucination via concentric causal attention
Yun Xing, Yiheng Li, Ivan Laptev, and Shijian Lu. Miti- gating object hallucination via concentric causal attention. arXiv preprint arXiv:2410.15926, 2024. 6, 7
2024 arXiv
-
[39]
Qwen2 technical report
An Yang, Baosong Yang, Binyuan Hui, Bo Zheng, Bowen Yu, Chang Zhou, Chengpeng Li, Chengyuan Li, Dayiheng Liu, Fei Huang, Guanting Dong, Haoran Wei, Huan Lin, Jialong Tang, Jialin Wang, Jian Yang, Jianhong Tu, Jian- wei Zhang, Jianxin Ma, Jin Xu, Jingren Zhou, Jinze Bai, Jinzhe...
-
[40]
A survey on multimodal large language models
Shukang Yin, Chaoyou Fu, Sirui Zhao, Ke Li, Xing Sun, Tong Xu, and Enhong Chen. A survey on multimodal large language models. arXiv preprint arXiv:2306.13549 , 2023. 6, 7
2023 arXiv
-
[41]
Mm-vet: Evaluating large multimodal models for integrated capabilities
Weihao Yu, Zhengyuan Yang, Linjie Li, Jianfeng Wang, Kevin Lin, Zicheng Liu, Xinchao Wang, and Lijuan Wang. Mm-vet: Evaluating large multimodal models for integrated capabilities. arXiv preprint arXiv:2308.02490, 2023. 6
2023 arXiv
-
[42]
Unveiling and har- nessing hidden attention sinks: Enhancing large language models without training through attention calibration
Zhongzhi Yu, Zheng Wang, Yonggan Fu, Huihong Shi, Khalid Shaikh, and Yingyan Celine Lin. Unveiling and har- nessing hidden attention sinks: Enhancing large language models without training through attention calibration. arXiv preprint arXiv:2406.15765, 2024. 4
2024 arXiv
-
[43]
Less is more: Mit- igating multimodal hallucination from an eos decision per- spective
Zihao Yue, Liang Zhang, and Qin Jin. Less is more: Mit- igating multimodal hallucination from an eos decision per- spective. The 62nd Annual Meeting of the Association for Computational Linguistics, 2024. 6, 7
2024
-
[44]
Video-llama: An instruction-tuned audio-visual language model for video un- derstanding
Hang Zhang, Xin Li, and Lidong Bing. Video-llama: An instruction-tuned audio-visual language model for video un- derstanding. arXiv preprint arXiv:2306.02858, 2023. 1
2023 arXiv
-
[45]
From redundancy to relevance: Infor- mation flow in lvlms across reasoning tasks
Xiaofeng Zhang, Yihao Quan, Chen Shen, Xiaosong Yuan, Shaotian Yan, Liang Xie, Wenxiao Wang, Chaochen Gu, Hao Tang, and Jieping Ye. From redundancy to relevance: Infor- mation flow in lvlms across reasoning tasks. arXiv preprint arXiv:2406.06579, 2024. 8
2024 arXiv
-
[46]
Minigpt-4: Enhancing vision-language understanding with advanced large language models
Deyao Zhu, Jun Chen, Xiaoqian Shen, Xiang Li, and Mo- hamed Elhoseiny. Minigpt-4: Enhancing vision-language understanding with advanced large language models. arXiv preprint arXiv:2304.10592, 2023. 1, 2, 3, 4, 7, 8 10 A. Appendix A.1. Discussion and Limitations The results of ...
2023 arXiv
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.