[CVPR 2025 Prediction] MoD-DPO: Decoupling Modalities to Cure Omni-modal Hallucinations

MoD-DPO: Towards Mitigating Cross-modal Hallucinations in Omni LLMs using Modality Decoupled Preference Optimization

Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces MoD-DPO (Modality-Decoupled Direct Preference Optimization), a framework designed to reduce cross-modal hallucinations in Omni-modal Large Language Models (Omni LLMs). By introducing modality-aware regularization and language-prior debiasing, it achieves state-of-the-art results on audiovisual benchmarks like AVHBench and CMM, significantly improving grounding in specific modalities.

TL;DR

Omni-modal Large Language Models (Omni LLMs) like Qwen2-Omni or MiniCPM-O can "see" and "hear," but they often suffer from cross-modal hallucinations—imagining a dog barking because they see a dog, even if the audio is actually a car horn. MoD-DPO solves this by fundamentally restructuring the Preference Optimization objective. It forces the model to ignore irrelevant noise while becoming hypersensitive to the correct sensory modality, effectively "decoupling" the internal reasoning pathways.

The "Linguistic Shortcut" Problem

Why do state-of-the-art models fail?

  1. Over-reliance on Language Priors: The LLM backbone is so good at predicting text that it often ignores the video/audio pixels or waveforms.
  2. Spurious Correlations: If the training data often pairs "beach video" with "wave sounds," the model creates a "shortcut" that makes it unable to handle a silent beach video or a beach video with heavy metal music.

Methodology: The Power of Invariance and Sensitivity

The core innovation is a "Modality-Decoupled" objective. Instead of standard DPO, which just compares a "good" vs. "bad" answer, MoD-DPO introduces two regularization terms:

  1. Invariance (): If we add noise to the irrelevant modality (e.g., blurring the video for an audio question), the model's output should stay the same.
  2. Sensitivity (): If we add noise to the relevant modality, the model's output must change. This forces the model to prove it is actually "paying attention" to the right source.

Overall Framework and Pipeline Figure: The MoD-DPO pipeline involves stage-based generation of hard-negative preferences and a decoupled optimization objective.

The Language-Prior Debiasing (LPD) Penalty

To stop the model from "guessing" based on the text prompt alone, the authors add a penalty term: This mathematically suppresses the rewards for answers that the model could have guessed without even looking at the video or hearing the audio.

Experimental Battleground: AVHBench & CMM

The authors tested MoD-DPO against heavy hitters like VideoLLaMA 2 and Qwen2.5 Omni.

  • AVHBench: The model achieved a relative 27% improvement in Audiovisual Matching accuracy.
  • CMM (Curse of Multi-Modalities): It showed superior perception accuracy and hallucination resistance.

Performance Comparison Figure: Average accuracy across AVHBench and CMM benchmarks, showing MoD-DPO++ outperforming baseline DPO and OmniDPO.

Visual Evidence: Tracking Attention

Does it actually change the model's brain? The authors plotted the attention distribution. With MoD-DPO++, the percentage of total attention directed toward audiovisual tokens increased significantly compared to the reference model. This proves the "debiasing" actually worked—the model "looked" more at the pixels.

Attention Redistribution Figure: Visualizing the shift towards audiovisual tokens in the attention layers.

Critical Insight & Future Outlook

The brilliance of MoD-DPO is that it is objective-centric, not just data-centric. While others try to fix hallucinations with "better data," MoD-DPO changes the rules of the game (the Loss Function).

Limitations: The framework currently treats audio and video as separate entities to decouple them. Future work might need to explore how to apply this to "intertwined" tasks (like reading lips) where both modalities are equally relevant and cannot be easily perturbed.

Takeaway for Practitioners: If your multimodal model is "lazy" and over-relying on text, don't just add more data. Use a decoupled DPO approach to force modality-faithfulness.

Find Similar Papers

Try Our Examples

  • Search for recent papers at CVPR 2024 or NeurIPS 2024 that specifically address "language prior dominance" in multimodal models using contrastive or preference learning.
  • Which study first introduced the Bradley-Terry model for Direct Preference Optimization (DPO), and how does the current MoD-DPO modification of the KL-divergence term differ mathematically?
  • Explore if "modality-decoupled" optimization techniques have been successfully applied to real-time robotics or autonomous systems where sensor hallucination (e.g., LiDAR vs Camera) is a safety critical issue.
Contents
[CVPR 2025 Prediction] MoD-DPO: Decoupling Modalities to Cure Omni-modal Hallucinations
1. TL;DR
2. The "Linguistic Shortcut" Problem
3. Methodology: The Power of Invariance and Sensitivity
3.1. The Language-Prior Debiasing (LPD) Penalty
4. Experimental Battleground: AVHBench & CMM
5. Visual Evidence: Tracking Attention
6. Critical Insight & Future Outlook