---
language:
- en
license: apache-2.0
task_categories:
- video-text-to-text
---
# VideoHallu: Evaluating and Mitigating Multi-modal Hallucinations for Synthetic Videos
[Zongxia Li*](https://zli12321.github.io/), [Xiyang Wu*](https://wuxiyang1996.github.io/), [Guangyao Shi](https://guangyaoshi.github.io/), [Yubin Qin](https://www.linkedin.com/in/yubin-qin/), [Hongyang Du](https://hongyang-du.github.io/), [Tianyi Zhou](https://tianyizhou.github.io/), [Dinesh Manocha](https://www.cs.umd.edu/people/dmanocha), [Jordan Lee Boyd-Graber](https://users.umiacs.umd.edu/~ying/)
[[π Paper](https://arxiv.org/abs/2505.01481)] [[π€ Dataset](https://huggingface.co/datasets/IntelligenceLab/VideoHallu)] [[πWebsite](https://wuxiyang1996.github.io/videohallu_page/)]
## π About VideoHallu
Synthetic video generation has gained significant attention for its realism and broad applications, but remains prone to violations of common sense and physical laws. This highlights the need for reliable abnormality detectors that understand such principles and are robust to hallucinations. To address this, we introduce VideoHallu, a benchmark of over 3,000 video QA pairs built from synthetic videos generated by models like [Sora](https://openai.com/sora/), [Veo2](https://veo2.ai), [Kling](https://www.klingai.com/global/), paired with expert-crafted counterintuitive QA to evaluate the critical thinking abilities of Multi-modal Large Language Models (MLLMs) on abnormalities that are perceptually obvious to humans but often hallucinated due to language priors. VideoHallu evaluates MLLMs' abnormality detection abilities with examples across alignment, consistency, commonsense, and physics. We benchmark SOTA MLLMs, including [GPT-4o](https://openai.com/index/hello-gpt-4o/), [Gemini-2.5-Pro](https://deepmind.google/technologies/gemini/pro/), [Qwen-2.5-VL](https://github.com/QwenLM/Qwen2.5-VL), and forefront models like [Video-R1](https://github.com/tulerfeng/Video-R1) and [VideoChat-R1](https://github.com/OpenGVLab/VideoChat-R1). We observe that these models perform well on many real-world benchmarks like [MVBench](https://huggingface.co/datasets/OpenGVLab/MVBench) and [MovieChat](https://github.com/rese1f/MovieChat), but still struggle with basic physics-based and commonsense reasoning in synthetic videos. We further show that post-training with Group Relative Policy Optimization (GRPO), using curriculum learning on datasets combining video QA with counterintuitive commonsense and physics reasoning over real and synthetic videos, improves MLLMsβ abnormality detection and critical thinking, demonstrating the value of targeted training for improving their understanding of commonsense and physical laws.
## π₯ News
- [2025/05/02] We expand our dataset with more QA pairsπ€.
- [2025/05/02] We release our [datasets](https://huggingface.co/datasets/IntelligenceLab/VideoHallu)π€.
- [2025/05/02] We release our GRPO free-form [RewardModel](https://huggingface.co/IntelligenceLab/RewardPreferenceBert)π€.
## Table of Contents
* [Benchmark](#benchmark)
* [Getting Started](#setup)
* [The Dawn of MLLMs in Synthetic Videos](#showcase)
* [Evaluation over SoTA MLLMs](#evaluation)
* [Reward Model](#rb)
* [Training](#training)
* [Fine-tuning Results](#evaluation_ft)
* [Acknowledgements](#ak)
* [Citations](#citations)
## π Benchmark
We design our benchmark, VideoHallu, with four question categories to probe hallucinations in synthetic video understanding, covering perceptual understanding to abstract reasoning:
* **Alignment** checks if the model correctly identifies and understands entities using visual and textual cues.
* **Spatial-temporal Consistency** examines whether the model can track entity motion across frames.
* **Common Sense Reasoning** tests if the model can reason based on its knowledge.
* **Physics** assesses if the model applies physical laws to entity motions and procedural understanding.
Each question in a category may also be assigned to multiple sub-categories, depending on the specific aspects it targets. Detailed annotations and sub-category breakdowns are available [here](https://huggingface.co/datasets/zli12321/VideoHalluB):
| Updated on | HuggingFace | Dataset Size |
|-------------|:------------------------------------------------:|:------------:|
| May, 2, 2025 | [HuggingFace](https://huggingface.co/datasets/zli12321/VideoHalluB) | 3233 |
Below is an overview of our benchmarkβs organization, including the high-level question categories, ranked by the level of reasoning required by MLLMs, and their corresponding sub-category breakdowns.
## π Getting Started
To set up our benchmark, please follow the steps provided below:
```
# Download the synthetic dataset
pip install huggingface_hub
# Download data to your local dir
huggingface-cli download IntelligenceLab/VideoHallu --repo-type dataset --local-dir ./new_video_folders --local-dir-use-symlinks False
# Download and unzip the physben training data videos
curl -L -o video.part1.rar https://huggingface.co/datasets/WeiChow/PhysBench-train/resolve/main/video.part1.rar
# Unzip data (linux system)
unrar x video.part1.rar
```
## π§ The Dawn of MLLMs in Synthetic Videos
We collect hallucination cases observed during SOTA MLLM evaluations on synthetic video tasks. Each example includes the generation prompt, key frames, questions, human-annotated ground truth, and hallucinated answers from GPT-4o, Qwen2.5-VL, and Gemini-2.5-Pro, with hallucinations marked in red to assist the reader's understanding. More examples can be found in the Appendix of [our paper](https://arxiv.org/abs/2505.01481).
**Note:** The legend below explains all the symbols used to represent the State-of-the-Art (SoTA) MLLMs featured in our showcases for synthetic video generation and video question-answering.