MOMENTA: Cracking the Code of Evolving Multimodal Misinformation

MOMENTA: Mixture-of-Experts Over Multimodal Embeddings with Neural Temporal Aggregation for Misinformation Detection

Summary
Problem
Method
Results
Takeaways
Abstract

MOMENTA is a unified multimodal misinformation detection framework that integrates modality-specific Mixture-of-Experts (MoE) and Neural Temporal Aggregation. It achieves state-of-the-art results across four major benchmarks (Fakeddit, MMCoVaR, Weibo, XFacta) by capturing cross-modal inconsistencies and narrative evolution over time.

TL;DR

Static analysis is no longer enough to catch modern fake news. MOMENTA introduces a sophisticated framework that combines Mixture-of-Experts (MoE) with Neural Temporal Aggregation to detect misinformation not just by what it says, but by how it contradicts itself and evolves over time. By modeling "narrative drift" and "momentum," it sets new SOTA records on Fakeddit, Weibo, and XFacta.

Context: Why Static Detection Fails

Most current SOTA models treat a social media post as an isolated island (the i.i.d. assumption). However, misinformation is rarely static; it's a process. A narrative that begins as satire might be "purposed" into a fabrication as it spreads. Furthermore, a perfectly "normal" image paired with a misleading headline creates a semantic gap that simple feature concatenation often misses.

Methodology: Specialized Experts & Narrative Physics

The MOMENTA framework is built on three pillars:

  1. Expert Specialization (MoE): Instead of a one-size-fits-all encoder, it uses modality-specific MoE layers. This allows the model to route "satire" to one expert and "deepfakes" to another, capturing the extreme heterogeneity of fake news.
  2. Discrepancy-Aware Fusion: Beyond simple alignment, the model features a dedicated "Discrepancy Branch" that explicitly calculates the element-wise absolute difference and product between text and image embeddings. It asks: Where exactly do these two modalities disagree?
  3. Narrative Physics (Drift & Momentum): This is the most innovative part. Using overlapping time windows, the model calculates:
    • Drift (): The change in aggregated representation between consecutive windows.
    • Momentum (): The smoothed magnitude of that drift, reflecting the intensity of the narrative shift.

MOMENTA Architecture

Experimental Showdown: Stronger Generalization

The researchers tested MOMENTA against four major benchmarks. The results confirm that the "temporal-aware" approach is particularly effective in harder, real-world datasets like XFacta and MMCoVaR.

DatasetAccuracyF1-ScoreAUC
Fakeddit0.9650.9590.982
Weibo0.9560.9560.981
MMCoVaR0.9420.9300.958
XFacta0.9050.9050.928

MOMENTA achieved a +1.7% Accuracy boost on XFacta compared to GPT-4o-based baselines, proving that specialized architectures still hold an edge over general-purpose LLMs in specific adversarial tasks.

Performance Metric Matrix

Critical Insights: Domain Invariance

One of the silent killers of misinformation models is "Domain Shift"—a model trained on Reddit (Fakeddit) often fails on Weibo. MOMENTA solves this via:

  • Domain-Adversarial Training: Using a Gradient Reversal Layer (GRL) to force the encoder to ignore platform-specific features.
  • Prototype Memory Bank: Maintaining "global class centroids" for "Real" vs "Fake" content that remain stable even when moving across different datasets.

Conclusion & Future Outlook

MOMENTA proves that misinformation detection is moving toward process-centric modeling. By treating the evolution of a claim as a physical system with "drift and momentum," we can identify coordinated campaigns that static models miss.

Future Directions: The authors acknowledge the increased computational overhead of MoE. The next frontier will be Sparsely Activated MoE and integrating User Network Graphs to see not just how the narrative changes, but who is driving that change.


For more details, the official code is available at: https://github.com/Yegi03/momenta

Find Similar Papers

Try Our Examples

  • Search for recent multimodal misinformation detection papers that utilize Mixture-of-Experts (MoE) for modality-specific feature routing.
  • Which 2024 or 2025 papers focus on "semantic drift" and "narrative evolution" in social media content classification?
  • Explore how domain-adversarial learning and prototype memory banks are used in cross-lingual or cross-platform fake news detection tasks.
Contents
MOMENTA: Cracking the Code of Evolving Multimodal Misinformation
1. TL;DR
2. Context: Why Static Detection Fails
3. Methodology: Specialized Experts & Narrative Physics
4. Experimental Showdown: Stronger Generalization
5. Critical Insights: Domain Invariance
6. Conclusion & Future Outlook