File size: 4,187 Bytes
df028e8
236524f
df028e8
236524f
 
 
df028e8
236524f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-nc-4.0
task_categories:
  - image-text-to-video
language:
  - en
size_categories:
  - 10K<n<100K
tags:
  - video-generation
  - video-reasoning
  - reinforcement-learning
  - rlvr
  - verifiable-rewards
  - multimodal
pretty_name: "VideoRLVR-Data: Verifiable Video Reasoning Data"
configs:
  - config_name: default
    data_files:
      - split: train
        path: train/metadata_all.csv
      - split: test
        path: test/metadata_all.csv
  - config_name: maze
    data_files:
      - split: train
        path: train/metadata_maze.csv
      - split: test
        path: test/metadata_maze.csv
  - config_name: flowfree
    data_files:
      - split: train
        path: train/metadata_flowfree.csv
      - split: test
        path: test/metadata_flowfree.csv
  - config_name: sokoban
    data_files:
      - split: train
        path: train/metadata_sokoban.csv
      - split: test
        path: test/metadata_sokoban.csv
---

# VideoRLVR-Data · Verifiable video reasoning data for RLVR

Training and evaluation data accompanying  
**Video Models Can Reason with Verifiable Rewards**.

**VideoRLVR-Data** is built for a stricter question:

> Can a video model generate a full visual trajectory that is not only realistic, but also rule-consistent, executable, and automatically verifiable?

The dataset contains procedurally generated visual reasoning tasks from three domains: Maze, FlowFree, and Sokoban. Each sample pairs an initial visual state and task prompt with a ground-truth solution video. These domains are designed for reinforcement learning with verifiable rewards, where generated videos can be parsed and checked by symbolic rule-based evaluators.

## What's in this repo

| Path | Description |
|---|---|
| `train/` | Training split for VideoRLVR supervised fine-tuning and RL initialization |
| `test/` | Held-out evaluation split generated with disjoint random seeds |
| `train/maze/` | Maze training videos and metadata |
| `train/flowfree/` | FlowFree training videos and metadata |
| `train/sokoban/` | Sokoban training videos and metadata |
| `test/maze/` | Maze test videos and metadata |
| `test/flowfree/` | FlowFree test videos and metadata |
| `test/sokoban/` | Sokoban test videos and metadata |
| `train/metadata_all.csv` | Combined training metadata |
| `test/metadata_all.csv` | Combined test metadata |
| `*/metadata_maze.csv` | Maze-only metadata |
| `*/metadata_flowfree.csv` | FlowFree-only metadata |
| `*/metadata_sokoban.csv` | Sokoban-only metadata |

## Dataset composition

| Domain | Train | Test | Description |
|---|---:|---:|---|
| `maze` | 10,000 | 1,000 | Grid navigation from start to goal while avoiding walls |
| `flowfree` | 10,000 | 1,000 | Connect colored endpoints with non-overlapping paths that fill the grid |
| `sokoban` | 10,000 | 1,000 | Push boxes to target locations under Sokoban transition rules |
| **Total** | **30,000** | **3,000** | Multi-task verifiable video reasoning suite |

Each example contains an input state, a natural-language instruction, and a ground-truth solution video. Videos are rendered at **480×832** resolution with **81 frames**.

## How to use

```bash
# Download the dataset
hf download DarthZhu/VideoRLVR-Data \
  --repo-type dataset \
  --local-dir VideoRLVR-Data

cd VideoRLVR-Data
```

You can load the metadata files directly:
```python
import pandas as pd
from pathlib import Path

root = Path("VideoRLVR-Data")

maze_train = pd.read_csv(root / "train" / "metadata_maze.csv")
flowfree_train = pd.read_csv(root / "train" / "metadata_flowfree.csv")
sokoban_train = pd.read_csv(root / "train" / "metadata_sokoban.csv")
```

# Schema
The metadata files use a simple video-generation format.
```json
{
  "video": "relative/path/to/solution_video.mp4",
  "input_image": "relative/path/to/input_image.png",
  "prompt": "Natural-language task instruction"
}
```

# Citation
```bibtex
@article{zhu2026video,
  title={Video Models Can Reason with Verifiable Rewards}, 
  author={Tinghui Zhu and Sheng Zhang and James Y. Huang and Selena Song and Xiaofei Wen and Yuankai Li and Hoifung Poon and Muhao Chen},
  journal={arXiv preprint arXiv:2605.15458},
  year={2026}
}
```