Back to Multimodal Mind Map
中文·English
👁️ MultimodalID: multimodal-hallucination

Multimodal Hallucination

多模态幻觉
🎯Core Definition
Multimodal Hallucination is VLM output that contradicts the image, mainly two kinds: object hallucination (mentioning objects not present) and attribute hallucination (wrong color/count/position). Three driving forces: (1) text prior dominance: when generating, visual evidence is weaker than the LLM's text statistics, pθ(ytx<t,v)p_\theta(y_t \mid x_{<t}, v) leans on vv too little and the model fills in from language habits; (2) data co-occurrence bias: objects frequently co-occur in captions (e.g. person and surfboard in COCO), so the model learns co-occurrence statistics, not "is it in the image"; (3) training objective and decoding amplification: Masked CE supervises only text tokens, vision tokens get no gradient supervision; greedy/sampling decoding amplifies high-entropy hallucinated tokens. Decoding-level mitigation: Visual Contrastive Decoding (VCD) cancels the language prior with a distorted image vv' (e.g. Gaussian blur): q(yt)=softmax((1+α)logpθ(ytx<t,v)αlogpθ(ytx<t,v))q(y_t) = \text{softmax}\left( (1+\alpha)\, \log p_\theta(y_t \mid x_{<t}, v) - \alpha\, \log p_\theta(y_t \mid x_{<t}, v') \right) α\alpha controls prior-cancellation strength (typically 0.1–1); OPERA penalizes oversampling behavior where decoding repeats without new attention. Evaluation uses POPE probing and CHAIR word-level metrics: CHAIRS=hallucinated objectsall mentioned objectsCHAIR_S = \frac{|\text{hallucinated objects}|}{|\text{all mentioned objects}|}.
💡Use Cases
a must-ask interview topic (causes and mitigations); hallucination audit before deployment in fact-sensitive domains (medical/document); preference-data construction in alignment (see the multimodal-dpo card).
Key Problems Solved
hallucination makes VLMs unusable in fact-sensitive scenarios and cannot be cured by scale alone (stronger priors hallucinate more); systematically mitigated at three levels — data debiasing (balanced negatives/hard negatives), alignment (MMDPO/RLHF-V with POPE negatives), decoding intervention (VCD/OPERA) — with POPE/CHAIR providing quantifiable evaluation; the levels are complementary: data fixes the prior, alignment fixes preferences, decoding fixes runtime behavior.
🎯5 High-Frequency Exam Points
1
Explain the three causes of object hallucination (text prior, co-occurrence bias, training objective)?
2
Write the VCD formula and explain why it mitigates hallucination?
3
How does POPE construct positive/negative probes? How is CHAIR computed?
4
Data-level hallucination mitigation: co-occurrence bias and hard negatives?
5
How do greedy/sampling decoding amplify hallucination? OPERA mechanism?
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Multimodal Hallucination"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardMultimodal Reasoning & AgentsNext CardMultimodal Eval Benchmarks

🔗 More Multimodal Knowledge Cards

ASR (Whisper)Audio RepresentationClassifier-Free GuidanceCLIP Applications