File size: 6,516 Bytes
070343e
aa6454a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
070343e
aa6454a
 
 
 
 
 
 
 
 
8051198
 
aa6454a
211b4f1
 
 
 
aa6454a
 
 
 
 
8051198
 
aa6454a
 
 
8051198
aa6454a
8051198
 
 
 
 
 
 
 
aa6454a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8051198
aa6454a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
211b4f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
---
pretty_name: SVHalluc
language:
  - en
license: other
size_categories:
  - 1K<n<10K
task_categories:
  - visual-question-answering
tags:
  - audio
  - video
  - multimodal
  - speech
  - hallucination
  - temporal-reasoning
  - benchmark
  - youcook2
configs:
  - config_name: default
    data_files:
      - split: test
        path: samples.json
---

# SVHalluc: Benchmarking Speech-Vision Hallucination in Audio-Visual Large Language Models


> **TL;DR:** Speech content is not necessarily visual evidence. SVHalluc is the first benchmark that tests whether audio-visual large language models (AV-LLMs)  can distinguish what is *said* from what is actually *seen*.

SVHalluc was introduced in **“SVHalluc: Benchmarking Speech-Vision Hallucination in Audio-Visual Large Language Models,” CVPR 2026**.

- [Project page](https://chenshuang-zhang.github.io/projects/svhalluc/)
- [Paper (arXiv)](https://arxiv.org/pdf/2606.02642)
- [Code](https://github.com/kaist-ami/SVHalluc.git)

## Contact

For any questions about the dataset or code, please contact **Chenshuang Zhang** ([chenshuang.zhang02@gmail.com](mailto:chenshuang.zhang02@gmail.com)).

## Motivation
Existing audio-visual hallucination benchmarks commonly treat environmental sounds, such as a dog barking, as indicators that an event occurred. Human speech is fundamentally different: it contains dense semantic information and can refer to past, present, or future events. An AV-LLM may therefore recognize the speech correctly while still incorrectly assuming that the spoken content is visible.

SVHalluc evaluates this distinction from two complementary perspectives:

- **Semantic hallucination:** What content mentioned in speech is supported by the video?
- **Temporal hallucination:** When does the narrated event happen visually?

## Benchmark Overview

The released test set contains **2,405 video-question pairs**:

| Category | Task | Abbreviation | Description |
|---|---|---:|---|
| Semantic | Global Semantic Alignment | GSA | Video-level semantic matching between speech and visual events |
| Semantic | Fine-grained Semantic Alignment | FGSA | Object-level semantic grounding | 
| Semantic | Cross-Modal Semantic Binding | CSMB | Event-level semantic grounding |
| Temporal | Temporal Alignment | TA | Whether the narrated event and visual event occur at the same time |
| Temporal | Temporal Forecasting | TF | Whether the narrated event occurs in the past, present, or future relative to the speech |
| Temporal | Cross-Modal Temporal Binding | CMTB | Which visual action occurs when the speech is heard |

## Task Definitions

### Semantic tasks

1. **Global Semantic Alignment (GSA)** asks whether the speech describes the visual events at the video level.
2. **Fine-grained Semantic Alignment (FGSA)** asks whether a specific object mentioned by speech is visually present.
3. **Cross-Modal Semantic Binding (CSMB)** asks whether a specific narrated event is visible.

### Temporal tasks

1. **Temporal Alignment (TA)** asks whether the narrated event is happening at the same time that its speech is heard.
2. **Temporal Forecasting (TF)** asks whether the narrated event occurs in the past, present, or future relative to the speech.
3. **Cross-Modal Temporal Binding (CMTB)** asks the model to select the visual action occurring when the speech is heard.

## Data Format

The repository has the following structure:

```text
svhalluc/
├── README.md
├── samples.json
├── semantic/
│   └── .../*.mp4
└── temporal/
    └── .../*.mp4
```

`samples.json` is a JSON list. Each element represents one video-question pair:

```json
{
  "video_path": "semantic/119/wqpqx-Qm7lk/e4714d74c73bbe3b.mp4",
  "data_type": "semantic",
  "task_type": "Global Semantic Alignment",
  "task_type_abbr": "GSA",
  "question": "Does the speech describe the visual events in the video? (A) Yes (B) No",
  "answer": "B"
}
```

### Fields

| Field | Type | Description |
|---|---|---|
| `video_path` | string | Path to the MP4 file, relative to the repository root |
| `data_type` | string | High-level category: `semantic` or `temporal` |
| `task_type` | string | Full task name |
| `task_type_abbr` | string | Task abbreviation: `GSA`, `FGSA`, `CSMB`, `TA`, `TF`, or `CMTB` |
| `question` | string | Multiple-choice question, including its answer options |
| `answer` | string | Correct option letter (`A`, `B`, or `C`) |

Multiple questions may reference the same video. Consumers should therefore use `video_path` rather than row index as the video identifier.

## Loading the Dataset

### With Python

```python
import json
from pathlib import Path

root = Path("/path/to/svhalluc")
samples = json.loads((root / "samples.json").read_text(encoding="utf-8"))

sample = samples[0]
video_path = root / sample["video_path"]
question = sample["question"]
answer = sample["answer"]
```

### Downloading from the Hugging Face Hub

```python
from huggingface_hub import snapshot_download

dataset_dir = snapshot_download(
    repo_id="zcs15/SVHalluc",
    repo_type="dataset",
)
```

## Evaluation

SVHalluc is designed as a multiple-choice benchmark. A model receives the video (including its audio) and the question exactly as provided in `samples.json`. The predicted option letter is compared with `answer`.


## Intended Use

SVHalluc is intended for:

- evaluating speech-grounded video understanding;
- diagnosing semantic and temporal hallucination in AV-LLMs;
- comparing multimodal grounding and reasoning methods;


## License and Usage Terms

The dataset is created based on YouCook2 dataset which include Youtube videos. Users are responsible for reviewing and complying with the applicable SVHalluc, YouCook2, Youtube terms before downloading, redistributing, or using the data.

The dataset is provided for research-only purposes. No ownership of third-party video content is transferred by this release. If you are a rights holder and believe content should be removed, please contact the dataset author by email: chenshuang.zhang02@gmail.com.

## Citation

If you find this dataset useful, please cite:

```bibtex
@InProceedings{Zhang_2026_SVHalluc,
  author    = {Chenshuang Zhang and Kyeong Seon Kim and Chengxin Liu and Tae-Hyun Oh},
  title     = {SVHalluc: Benchmarking Speech--Vision Hallucination in Audio-Visual Large Language Models},
  booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
  month     = {June},
  year      = {2026}
}
```