Summary
This paper makes the observation that MLLMs' internal prior suppresses the visual information, thus leading to hallucination. Besides, they empirically observe that intermediate layers may have less such suppression. Motivated by this observation, this work proposes to combine intermediate logits with final layer projection, and demonstrate improvement in reducing hallucination via empirical study.
Strengths
- This work makes an interesting observation of how visual information exists in intermediate layers, and then overridden by knowledge prior closer to the output
- The proposed mitigation method is lightweight and efficient.
- The experimental results are in general better than baselines.
Weaknesses
Although the presentation has a focus about image-conditioned generative language model, the methodology for finding 1 and 2, as well as the proposed layer selection and probability correction, are modality agnostic. The findings are mostly empirical, and it's unclear whether this is a general phenomenum for other models in the same size, nor for models in other sizes.
There has been quite a few literature in studying LLM's internal presentation and hallucination, only selectively listing a few as [1-5] . What the multi-modal setting brings is the strong conditional dependency, while for text-only use cases there might or might not be informative conditions. An analytical comparison on how an MLLM focuses or ignores input conditions can be more informative and persuasive in supporting the methodology.
In L191-L201 the paper compares the token output with and without the image condition. However this has been studied thouroughly in [6], which also proposes hallucination detection and mitigation method.
The method design also seems ad-hoc, there are thresholds in Eq2 and Eq3, layer interval a, b in Eq4 and the weight $\alpha$ in Eq7. Together they contribute to amplifying the concern in the generalizability of the proposed method.
I suggest to connect the empirical evidences in this paper to 1/ evidences from other papers with the same spirit, and 2/ the unique property and behavior of conditional multi-modal modeling.
**Reference**
[1] Liu, Junteng, et al. "On the Universal Truthfulness Hyperplane Inside LLMs." arXiv preprint arXiv:2407.08582 (2024).
[2] Li, Kenneth, et al. "Inference-time intervention: Eliciting truthful answers from a language model." Advances in Neural Information Processing Systems 36 (2024).
[3] Zhang, Tianhang, et al. "Enhancing uncertainty-based hallucination detection with stronger focus." arXiv preprint arXiv:2311.13230 (2023).
[4] Azaria, Amos, and Tom Mitchell. "The internal state of an LLM knows when it's lying." arXiv preprint arXiv:2304.13734 (2023).
[5] Duan, Hanyu, Yi Yang, and Kar Yan Tam. "Do LLMs Know about Hallucination? An Empirical Investigation of LLM's Hidden States." arXiv preprint arXiv:2402.09733 (2024).
[6] Favero, Alessandro, et al. "Multi-modal hallucination control by visual information grounding." Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 2024.
Questions
- It's unclear to me how is the affine layer $\phi$, in L104, initialized and trained, if at all? If it needs training, then it seems each layer needs such a layer. If it doesn't, then how do we make sure that resentation across layers can share the same mapping to present token probability?
- POPE evaluates answers in Yes/No. How could decoding strategy have impact on the performance for this benchmark?