OmniFake Benchmark / UMFDet Baseline

Towards Unified Multimodal Misinformation Detection in Social Media

Haiyang Li, Yaxiong Wang, Shengeng Tang, Yuchen Zhang, Lianwei Wu, Lechao Cheng, Liu Liu, Chaofeng Dong, and Zhun Zhong

A benchmark dataset and unified baseline for detecting human-crafted and AI-synthesized multimodal misinformation.

Abstract

Detecting deceptive multimodal content on social media has become an increasingly important problem. Two major types of deception dominate: human-crafted misinformation, such as rumors and misleading posts, and AI-generated content produced by image synthesis models or vision-language models (VLMs). However, these two types are usually addressed as separate tasks. Consequently, existing models are often specialized for only one type of fake content. In real deployments, however, the fake-content type of an incoming multimodal post is typically unknown, which limits the practicality of such specialized systems. To study this setting, we build OmniFake, a benchmark with 98K samples that combines human-curated misinformation from existing resources with newly created AI-generated examples. To address this new task, we propose Unified Multimodal Fake Content Detection (UMFDet), a framework designed to handle both types of deception. UMFDet builds on a VLM backbone augmented with a Category-aware Mixture-of-Experts (CMoE) adapter to capture category-specific cues. We further introduce an Expert-wise Discriminative Regularization to enforce intra-expert compactness. In addition, cross-modal consistency alignment is proposed to improve the perceptual capability of experts for handling different deception types. Experiments show that UMFDet consistently outperforms competitive specialized baselines across both deception types. The dataset and code will be made publicly available.

98K OmniFake samples
50%/50% real vs. fake balance
4 fake-content families
13 news domains

We study unified multimodal misinformation detection: a single model must decide whether an image-text post is real, human-crafted misinformation, vision-manipulated, text-manipulated, or mixed-manipulated.

Existing fake-news detectors and generative-content detectors are often trained as separate systems. In real social-media deployment, however, the type of deception is unknown before prediction. OmniFake turns this into a unified five-class benchmark, and UMFDet uses category-aware expert adapters to separate real evidence, human deception cues, and AI-synthesized visual or textual cues.

Overview

Project Summary

OmniFake is built for a more realistic verification setting where human-crafted misinformation and AI-generated misinformation coexist. The benchmark contains balanced real and fake samples, multiple manipulation categories, and broad news-domain coverage. UMFDet addresses this task with a VLM backbone, Category-aware Mixture-of-Experts adapters, expert-wise discriminative regularization, and cross-modal consistency alignment.

Why unified detection matters

A deployed system usually does not know whether a suspicious post is a rumor, a generated image, generated text, or a mixed attack. The detector must handle all of them under one decision space.

What OmniFake provides

OmniFake provides a 98K-sample benchmark with real news and four fake-content families: human-crafted, vision manipulation, text manipulation, and mixed manipulation.

What UMFDet predicts

UMFDet predicts a unified class label for each image-text post and learns category-specific cues through expert routing, discriminative regularization, and cross-modal consistency alignment.

Motivation

One Detector for Multiple Deception Types

Social media misinformation is no longer a single problem. Human-written rumors, manipulated images, generated text, and mixed multimodal attacks can appear together. OmniFake frames this as a unified detection task instead of assuming the fake category is known beforehand.

Motivation for unified multimodal misinformation detection.
Motivation. Existing pipelines often focus on either human-crafted misinformation or AI-synthesized content. UMFDet receives an image-text post and predicts the unified misinformation category.

Visualization

Feature Separation Across Backbones

The visualization compares text feature distributions from BERT, CLIP-ViT-B/32, and Qwen-2.5-7B. Stronger separation helps distinguish human-crafted and AI-synthesized textual signals.

Feature visualization with red circles for human-crafted text and blue triangles for AI-synthesized text.
Feature visualization. Red circles denote human-crafted text and blue triangles denote AI-synthesized text. The spaces show different degrees of separability across backbone representations.

Dataset

OmniFake Benchmark

OmniFake combines curated real and human-crafted misinformation with generated visual, textual, and mixed manipulations. The benchmark is balanced across real and fake samples while preserving broad domain coverage.

OmniFake dataset construction pipeline.
Dataset construction. OmniFake is built from Fakeddit and VisualNews. The pipeline collects large-scale image-text news posts, selects 49,034 real posts and 24,726 human-crafted misleading posts, then applies AI generation and editing pipelines to create vision, text, and mixed manipulation samples. The final benchmark contains 98,592 image-text pairs across Real, Human-crafted, Vision Manipulation, Text Manipulation, and Mixed Manipulation.
OmniFake category, subcategory, and domain distributions.
Dataset distribution. OmniFake supports both binary Real/Fake detection and five-class recognition. The fake side covers human-crafted misinformation, image-side manipulations, text-side manipulations, and mixed attacks; the mixed class combines four visual manipulation types with two textual manipulation types. The corpus spans politics, health, people, society, and other domains, giving the benchmark broad category, subcategory, and source-domain coverage.

Examples

Real, Human-Crafted, Vision, Text, and Mixed Misinformation

The benchmark contains realistic samples where the evidence can come from the text, image, or the interaction between modalities. This setting pressures a detector to identify the actual deception type instead of relying on a single shortcut.

OmniFake examples of real, human-crafted, image-generated, face-swapped, text-attribute, text-generated, and mixed manipulations.
OmniFake examples. The examples illustrate the five-way setting used by UMFDet. Real posts preserve aligned image-text evidence, while human-crafted samples contain misleading human-written claims. The shown vision manipulations include image generation and face swap; the text manipulations include text attribute editing and text generation. Mixed examples combine image generation with text attribute editing, or face swap with text generation.
Visual overview of the OmniFake dataset construction process and generated multimodal misinformation samples.
Dataset construction at a glance. This visual provides an intuitive view of how OmniFake is assembled from real image-text posts and systematically expanded into human-crafted, vision-manipulated, text-manipulated, and mixed misinformation. By varying the source of deception while preserving realistic multimodal context, the construction pipeline produces diverse and challenging samples for unified misinformation detection.

Method

UMFDet Framework

UMFDet builds on a frozen multimodal backbone and inserts trainable expert adapters. Category-aware experts separate reality, deception, and synthesis cues, while regularization and cross-modal alignment improve the model's ability to handle unknown misinformation types.

Category-aware MoE

Routes multimodal tokens through experts specialized for reality, deception, and synthesis cues.

Expert-wise Regularization

Encourages compact intra-expert representations and clearer separation across experts.

Cross-modal Alignment

Aligns visual and textual evidence so the model can reason over inconsistent or generated content.

UMFDet model architecture.
UMFDet. The model encodes image and prompt tokens, applies a Category-aware Mixture-of-Experts adapter, and decodes a category-aware answer for unified misinformation detection.

Results

Experimental Results

The experiments evaluate UMFDet from three perspectives: five-class recognition on OmniFake, zero-shot binary detection on MMFakeBench, and transfer to DGM4. Across these settings, UMFDet shows stronger average F1, better class balance, and better transfer than general VLMs and specialized multimodal baselines.

OmniFake AVG F1 82.23 Best five-class average F1 in Table 3.
Human-crafted F1 86.92 Strongest human-crafted misinformation recognition on OmniFake.
MMFakeBench Test F1 61.70 Best test F1 after training on OmniFake.
DGM4 AVG F1 83.20 Best overall DGM4 transfer performance in Table 5.

Main Results on OmniFake

Table 3 compares zero-shot VLMs and OmniFake-trained multimodal methods. UMFDet achieves the strongest average five-class F1 and is especially strong on real, human-crafted, text-manipulated, and mixed manipulation categories.

Table 3
Swipe left or right to view all metrics.
Setting Method Venue Real Human-crafted Vision Manipulation Text Manipulation Mixed Manipulation AVG 5-class
PreRecallF1 PreRecallF1 PreRecallF1 PreRecallF1 PreRecallF1 PreRecallF1
Zero-shotGemini-2.5-42.8642.6642.7655.0047.5050.9854.5556.5555.5342.8658.0050.3019.9947.3514.9943.0550.4142.91
Zero-shotQwen2.5-VL-72B-44.8149.8747.2036.0840.3838.1145.6146.5046.0541.5444.9143.1647.0042.6444.7143.0144.8643.85
Zero-shotDeepSeek-VL2-27B-41.2146.1843.5546.6743.1844.8648.1150.1249.0938.9537.0137.9541.2947.5644.2043.2444.8143.93
Zero-shotGPT-4o-60.0059.2460.5943.7037.5840.4141.3445.2242.7840.5151.5945.3644.5831.2135.3246.0344.9744.89
OmniFakeFKA-OWLMM'2478.7193.4785.4088.1872.0878.3265.3756.0960.3849.9121.6730.2261.3569.9765.3868.7062.6564.15
OmniFakeHAMMERCVPR'2482.9880.9381.9474.9873.6774.3271.2173.8672.5152.1251.3051.7074.1772.9773.5771.0970.5570.81
OmniFakeMIMOEWWW'2581.3386.5183.8480.0666.3172.5469.1278.0273.3056.8151.4553.4573.5665.8669.5072.5869.8370.93
OmniFakeGLPNACL'2559.8195.4573.5469.8057.7963.2351.1512.6620.3022.220.811.5754.7527.6036.7051.5538.8639.07
OmniFakeUMFDet (Ours)-87.0492.9489.8992.1782.2286.9279.4963.2370.4371.9561.8566.5268.6881.1774.4082.5682.5382.23

Zero-shot Binary Detection on MMFakeBench

Table 4 shows that training on OmniFake improves transfer to MMFakeBench. UMFDet obtains the highest validation F1 and test F1 among the compared train-on-OmniFake methods, while also keeping precision high.

Table 4
Model Language Model Prompt Validation (1000) Test (10000)
F1PrecisionRecallACC F1PrecisionRecallACC
LVLMs with 7B Parameter
InstructBLIPVicuna-7BStandard14.730.813.28.116.140.514.28.8
Qwen-VLQwen-7BStandard43.650.644.960.344.051.645.260.5
PandaGPTVicuna-7BStandard24.660.650.530.924.161.750.430.6
mPLUG-Owl2LLaMA2-7BStandard47.264.952.370.648.771.153.371.4
LLaVA-1.6Vicuna-7BStandard48.148.248.559.552.553.052.662.5
LVLMs with 13B Parameter
InstructBLIPVicuna-13BStandard41.135.049.969.941.135.049.969.8
InstructBLIPVicuna-13BMMD-Agent51.353.454.053.147.950.150.149.9
LLaVA-1.6Vicuna-13BStandard41.135.050.069.742.357.350.169.5
LLaVA-1.6Vicuna-13BMMD-Agent51.866.754.671.450.267.353.971.3
Train on OmniFake
HAMMER--56.6869.5457.6257.6457.2971.3258.1158.21
UMFDet (Ours)Florence2-0.7BOurs61.7470.1661.1461.1761.7070.9461.1261.14

Transfer Results on DGM4

Table 5 compares multimodal learning methods on DGM4. UMFDet achieves the best average ACC and F1, and also performs strongly on the AI-synthesized split, indicating that OmniFake training improves cross-dataset robustness.

Table 5
Method Venue AVG Real AI-synthesized
ACCPreRecallF1 ACCPreRecallF1 ACCPreRecallF1
Qwen-2.5-VL-72BarXiv'2560.0657.4857.8157.6460.4642.7150.9246.4660.1272.2664.7168.28
GPT-4oarXiv'2462.1459.2058.4558.8262.7545.0352.8648.5661.9374.1066.4869.55
DeepSeek-VL2-27BarXiv'2557.2362.5157.1259.6959.5457.1766.1461.3343.2167.8248.0356.23
Gemini-2.5arXiv'2567.2064.0563.3063.6767.9048.6057.1052.5166.8578.9071.2074.85
MIMOEWWW'2562.1158.7459.3258.8462.1144.0250.9847.2562.1173.4567.6570.43
FKA-OWLMM'2476.3776.9178.5879.3069.6274.0970.4782.8276.1493.9272.6781.94
HAMMERCVPR'2480.6281.2785.1383.1680.6366.8782.8374.0080.6384.2889.5386.83
UMFDet (Ours)Ours83.1081.3584.6283.2086.8869.2186.8877.1481.1892.8581.1886.62
UMFDet quantitative results on PHEME, DGM4, and FineFake.
Result profiles. UMFDet reaches a better early-rate and performance trade-off on PHEME, and maintains stronger zero-shot performance across DGM4 and FineFake metrics.

Citation

BibTeX

@misc{li2025unifiedmultimodalmisinformationdetection,
  title         = {Towards Unified Multimodal Misinformation Detection in Social Media: A Benchmark Dataset and Baseline},
  author        = {Haiyang Li and Yaxiong Wang and Shengeng Tang and Lianwei Wu and Lechao Cheng and Zhun Zhong},
  year          = {2025},
  eprint        = {2509.25991},
  archivePrefix = {arXiv},
  primaryClass  = {cs.AI},
  url           = {https://arxiv.org/abs/2509.25991}
}