File size: 6,416 Bytes
9ab686e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49c4de2
9ab686e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dd04cc5
9ab686e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49c4de2
9ab686e
49c4de2
 
 
9ab686e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
pretty_name: TOC-Bench
language:
- en
task_categories:
- video-text-to-text
annotations_creators:
- machine-generated
- expert-generated
source_datasets:
- extended
license: other
license_name: mixed-source-licenses
tags:
- video
- video-understanding
- video-question-answering
- temporal-reasoning
- object-centric
- hallucination-evaluation
- benchmark
configs:
- config_name: default
  data_files:
  - split: test
    path: data/test.jsonl
---

# TOC-Bench: A Temporal Object Consistency Benchmark for Video Large Language Models

TOC-Bench is a diagnostic benchmark for evaluating whether Video Large Language Models maintain object identity, state, persistence, and temporal relations throughout a video. It focuses on object-centric phenomena including occlusion, disappearance, reappearance, repeated events, event order, temporal location, duration, conditional state, and relative movement.

> **Anonymous-review notice.** This artifact accompanies a paper currently under double-blind review. Author-identifying paper, repository, and citation links will be added after the review period.

## Benchmark overview

| Property | Value |
|---|---:|
| QA pairs | 2,323 |
| Unique videos | 1,951 |
| Diagnostic dimensions | 10 |
| Task formats | 4 (5 serialization labels) |
| Language | English |
| Split | Test only |

Each QA item is associated with an object track and a structured temporal event timeline during construction. The released questions use deterministic answer formats so that predictions can be scored without an LLM judge.

## Construction and verification

The benchmark is produced in three stages:

1. Candidate object tracks and temporal events are constructed from the source videos.
2. Structured reasoning units and QA skeletons fix the queried object, event, answer, and distractors before surface realization.
3. Text-only, single-frame, and frame-shuffled filters remove questions that do not require the intended visual or temporal evidence.

The filtering process reduces 45,527 generated items to 17,900 candidates. Five expert annotators then inspect 3,000 sampled candidates in disjoint 600-item assignments. They revise minor wording issues and reject questions with insufficient visual evidence or tracking, event, or answer-label problems, leaving 2,323 released QA pairs.

## Data composition

### Source videos

| Source | QA pairs | Unique videos |
|---|---:|---:|
| Charades | 1,397 | 1,149 |
| Perception Test | 825 | 712 |
| MOSE | 87 | 76 |
| OVIS | 14 | 14 |
| **Total** | **2,323** | **1,951** |

The source videos remain governed by their original terms; this repository does not relicense third-party media.

### Diagnostic dimensions

| Dimension | Items |
|---|---:|
| Event existence | 219 |
| Event count | 300 |
| Reappearance identity | 23 |
| Reappearance / disappearance | 134 |
| Cross-object order | 187 |
| Event ordering | 105 |
| Temporal location | 587 |
| Duration category | 312 |
| Conditional state | 278 |
| Relative spatial change | 178 |

### Task formats and serialization labels

TOC-Bench has four conceptual task formats: multiple choice, statement pair, numerical count, and event ordering. Three- and four-event ordering share the same task format but use separate serialization labels.

| Serialization label | Items | Scoring |
|---|---:|---|
| Four-option multiple choice (`mcq_4`) | 1,355 | Exact option label |
| Statement pair (`sp`) | 563 | Exact A/B label |
| Numerical (`numerical`) | 300 | Controlled numerical answer |
| Three-event ordering (`ordering_3`) | 52 | Exact complete order |
| Four-event ordering (`ordering_4`) | 53 | Exact complete order |

## Files and schema

| Path | Purpose |
|---|---|
| `answer_final.json` | Canonical benchmark bundle used by the evaluation code |
| `data/test.jsonl` | One-record-per-QA projection used by the Hugging Face Dataset Viewer |
| `videos/` | Video files packaged with the artifact; all source-specific terms remain applicable |

Important fields include:

- `qa_id`: unique QA identifier;
- `video_id`: identifier of the associated video;
- `video_path`: relative media path or source-access reference;
- `format`: `mcq_4`, `sp`, `numerical`, `ordering_3`, or `ordering_4`;
- `question`: natural-language question;
- `option_A``option_D` or `statement_A``statement_B`: answer candidates;
- `events`: labeled events for ordering questions;
- `correct_answer` or `correct_order`: deterministic ground truth;
- `metadata.dim`: diagnostic dimension;
- `metadata.tier`: reasoning tier;
- `metadata.hallucination`: hallucination-aware variant, when applicable.

## Loading the QA split

```python
from datasets import load_dataset

dataset = load_dataset(
    "anonymous-video-benchmark/toc_bench",
    split="test",
)

print(dataset)
print(dataset[0])
```

The Dataset Viewer should display **2,323 QA rows**. The separate number of unique source videos is **1,951**.

## Evaluation protocol

Most reported models receive 32 uniformly sampled frames. Model-specific exceptions use the frame budgets explicitly reported in the paper and evaluation configuration.

```bash
python eval_runner.py \
  --bench answer_final.json \
  --videos-root videos \
  --model <MODEL_KEY> \
  --frames 32 \
  --out predictions.jsonl

python compute_metrics.py \
  --bench answer_final.json \
  --preds predictions.jsonl \
  --save-summary summary.json
```

The inference runner uses fixed format-specific prompts and produces resumable JSONL predictions. Scoring uses deterministic answer extraction and exact matching.

## Intended use

TOC-Bench is intended for non-commercial academic evaluation of temporal object consistency in Video-LLMs. It is not intended for training identity-recognition systems, surveillance, biometric inference, demographic profiling, or safety-critical deployment decisions.

## Limitations

- Candidate construction depends partly on automatic object and event tools.
- Uniform frame sampling may miss very brief events.
- The benchmark emphasizes short-to-medium videos and object-centric temporal reasoning rather than all aspects of video understanding.
- Results are behavioral evidence and should not be interpreted as direct evidence about a model's internal mechanism.
- The source datasets introduce their own domain, activity, scene, and geographic biases.

## Citation

Citation information will be added after the double-blind review period.