junxiangjoe commited on
Commit
7403292
·
verified ·
1 Parent(s): 077db22

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +134 -0
README.md ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - video-generation
6
+ - image-to-video
7
+ - visual-reasoning
8
+ - training
9
+ pretty_name: VBVR-Pro-SFT-Video
10
+ size_categories:
11
+ - 1M<n<10M
12
+ ---
13
+
14
+ # VBVR-Pro-SFT-Video
15
+
16
+ <p align="center">
17
+ <a href="https://huggingface.co/datasets/Video-Reason/VBVR-Pro-Bench" target="_blank">
18
+ <img alt="VBVR-Pro-Bench" src="https://img.shields.io/badge/%F0%9F%A4%97%20_VBVR_Pro_Bench-Benchmark-ffc107?color=ffc107&logoColor=white" height="20" />
19
+ </a>
20
+ <a href="https://huggingface.co/datasets/Video-Reason/VBVR-Pro-SFT-Image" target="_blank">
21
+ <img alt="VBVR-Pro-SFT-Image" src="https://img.shields.io/badge/%F0%9F%A4%97%20_VBVR_Pro_SFT-Image-ffc107?color=ffc107&logoColor=white" height="20" />
22
+ </a>
23
+ <a href="https://huggingface.co/datasets/Video-Reason/VBVR-Pro-RL" target="_blank">
24
+ <img alt="VBVR-Pro-RL" src="https://img.shields.io/badge/%F0%9F%A4%97%20_VBVR_Pro-RL-ffc107?color=ffc107&logoColor=white" height="20" />
25
+ </a>
26
+ <a href="https://github.com/Video-Reason/VBVR-Pro-Bench" target="_blank">
27
+ <img alt="Scorer" src="https://img.shields.io/badge/Scorer-VBVR_Pro_Bench-100000?style=flat-square&logo=github&logoColor=white" height="20" />
28
+ </a>
29
+ <a href="LICENSE">
30
+ <img alt="License" src="https://img.shields.io/badge/License-Apache_2.0-blue.svg" height="20" />
31
+ </a>
32
+ </p>
33
+
34
+
35
+ The **video (I2V) supervised-fine-tuning split** of VBVR-Pro: 1.24M programmatically generated reasoning instances across 250 parameterized tasks, one tar.gz per task.
36
+
37
+
38
+ ## At a glance
39
+
40
+ | Property | Value |
41
+ |---|---|
42
+ | Tasks | **250** |
43
+ | Instances | **1,250,000** (5,000 per task) |
44
+ | Archives | 250 tar.gz, one per task |
45
+ | Total size | **76.6 GB** |
46
+ | Resolution | **512 × 512** |
47
+ | Video codec | H.264, CRF 20 |
48
+
49
+ ## Layout
50
+
51
+ ```
52
+ .
53
+ ├── tars/
54
+ │ ├── G-11_handle_object_reappearance_data-generator.tar.gz
55
+ │ └── … # 250 archives, one per task
56
+ ├── jsonl/
57
+ │ ├── G-11_handle_object_reappearance_data-generator.jsonl
58
+ │ └── … # 250 files, one per task
59
+ └── meta_video_train.json # index over the 250 tasks
60
+ ```
61
+
62
+ Each archive holds one task and extracts to:
63
+
64
+ ```
65
+ G-11_handle_object_reappearance_data-generator/ # task
66
+ └── handle_object_reappearance_task/ # subtask
67
+ ├── handle_object_reappearance_00000000/ # sample
68
+ │ ├── first_frame.png # conditioning image (512 × 512)
69
+ │ ├── metadata.json # task parameters, ground truth, scoring contract
70
+ │ └── video/
71
+ │ ├── prompt.txt # instruction
72
+ │ ├── ground_truth.mp4 # reference video (16 fps, H.264)
73
+ │ └── final_frame.png # last frame of the reference video
74
+ ├── handle_object_reappearance_00000001/ # same files
75
+ ├── …
76
+ └── handle_object_reappearance_00004999/ # 5,000 samples per task
77
+ ```
78
+
79
+ Sample ids run `00000000`–`00004999`.
80
+
81
+ All 250 archives share this shape and no two overlap, so they can be extracted
82
+ into one directory.
83
+
84
+ ### Index files
85
+
86
+ `meta_video_train.json` maps every task to its jsonl:
87
+
88
+ ```json
89
+ {
90
+ "G-11_handle_object_reappearance_data-generator": {
91
+ "root": ".",
92
+ "annotation": "jsonl/G-11_handle_object_reappearance_data-generator.jsonl",
93
+ "length": 5000,
94
+ "task": "Video-SFT"
95
+ }
96
+ }
97
+ ```
98
+
99
+ `root` is the directory the archives were extracted into; `length` is that task's
100
+ row count. Each jsonl row points at one sample, with every path relative to `root`:
101
+
102
+ | Field | Meaning |
103
+ |---|---|
104
+ | `sample_id` | e.g. `handle_object_reappearance_00000000` |
105
+ | `first_frame` | conditioning image |
106
+ | `metadata` | that sample's `metadata.json` |
107
+ | `clip_path` | reference video |
108
+ | `final_frame` | last frame of the reference video |
109
+ | `prompt` | instruction |
110
+
111
+ ## Usage
112
+
113
+ ```bash
114
+ huggingface-cli download Video-Reason/VBVR-Pro-SFT-Image --repo-type dataset --local-dir data/VBVR-Pro-SFT-Image
115
+ huggingface-cli download Video-Reason/VBVR-Pro-SFT-Video --repo-type dataset --local-dir data/VBVR-Pro-SFT-Video
116
+ ```
117
+
118
+ The [VBVR-Pro training code](https://github.com/Video-Reason/VBVR-Pro) unpacks the
119
+ archives and emits the per-trainer manifests in one step:
120
+
121
+ ```bash
122
+ python training/prepare_data.py \
123
+ --image-archives data/VBVR-Pro-SFT-Image \
124
+ --video-archives data/VBVR-Pro-SFT-Video \
125
+ --output-dir data/prepared
126
+ ```
127
+
128
+ To use the data directly instead, extract every archive into one directory and
129
+ point `root` at it:
130
+
131
+ ```bash
132
+ mkdir -p data/extracted
133
+ for f in data/VBVR-Pro-SFT-Video/tars/*.tar.gz; do tar xzf "$f" -C data/extracted; done
134
+ ```