File size: 3,297 Bytes
fc3d789
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
a44ce6e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: gpl-3.0
language:
  - en
  - zh
language_creators:
  - found
  - machine-generated
task_categories:
  - translation
pretty_name: DoveBench
size_categories:
  - 10K<n<100K
tags:
  - long-form
  - subtitles
  - starcraft
  - video-translation
source_datasets:
  - original
---

# DoveBench

A segment-level English→Chinese translation benchmark derived from the ViDove release corpus. DoveBench pairs each Chinese translation segment with an aligned English reference, packaged as a single JSONL so evaluation runs directly without per-file parsing.

Companion dataset for [ViDove: A Translation Agent System with Multimodal Context and Memory-Augmented Reasoning](https://arxiv.org/abs/2507.07306) (Lu et al., 2025).

## Quick stats

| | |
|---|---|
| Videos | **28** |
| Segments | **13,704** |
| Total audio | **766 min** (12.77 h) |
| Language pair | English → Chinese |
| Source | sc2 corpus (StarCraft II commentary / interviews) |

> **Note.** Original video files are *not* shipped with this release. Each row carries a `youtube_id`; access the source video at `https://www.youtube.com/watch?v={youtube_id}`.

### Row schema (`dovebench.jsonl`)

```json
{
  "video_id":   "sc2/27_59",
  "youtube_id": "G3eZhv5qdDo",
  "idx":        0,
  "start":      4.120,
  "end":        7.840,
  "zh_text":    "...",
  "en_text":    "..."
}
```

| Field | Type | Description |
|---|---|---|
| `video_id` | `str` | Corpus-qualified ID (`sc2/<key>`). |
| `youtube_id` | `str` | 11-char YouTube video ID — concatenate with `https://www.youtube.com/watch?v=` to view the source. |
| `idx` | `int` | Zero-based segment index within the video. |
| `start`, `end` | `float` | Segment boundaries in seconds, sourced from the Chinese subtitle timeline. |
| `zh_text` | `str` | Chinese translation for this segment. |
| `en_text` | `str` | Aligned English reference. |

## How to use

### HuggingFace `datasets`

```python
from datasets import load_dataset

ds = load_dataset(
    "json",
    data_files="dovebench/dovebench.jsonl",
    split="train",
)
row = next(r for r in ds if r["video_id"] == "sc2/13_07")
print(row)
# → {'video_id': 'sc2/13_07', 'youtube_id': 'n-Dx7MLqFqY', 'idx': 0,
#    'start': 0.0, 'end': 3.55,
#    'zh_text': '欢迎来到这一场的SC2专业比赛',
#    'en_text': 'Welcome back to a professional match of StarCraft 2.'}
```

### Plain Python

```python
import json
with open("dovebench/dovebench.jsonl") as f:
    rows = [json.loads(line) for line in f]

# Group by video
from collections import defaultdict
by_video = defaultdict(list)
for r in rows:
    by_video[r["video_id"]].append(r)
```

### View a source video

```python
row = rows[0]
print(f"https://www.youtube.com/watch?v={row['youtube_id']}&t={int(row['start'])}s")
```

## Citation

```bibtex
@misc{lu2025vidovetranslationagentmultimodal,
      title={ViDove: A Translation Agent System with Multimodal Context and Memory-Augmented Reasoning},
      author={Yichen Lu and Wei Dai and Jiaen Liu and Ching Wing Kwok and Zongheng Wu and Xudong Xiao and Ao Sun and Sheng Fu and Jianyuan Zhan and Yian Wang and Takatomo Saito and Sicheng Lai},
      year={2025},
      eprint={2507.07306},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2507.07306},
}
```