pufanyi commited on
Commit
2e45d18
·
verified ·
1 Parent(s): 2f07bc6

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +56 -25
README.md CHANGED
@@ -1,29 +1,18 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: task_name
5
- dtype: string
6
- - name: video_idx
7
- dtype: string
8
- - name: domain
9
- dtype: string
10
- - name: prompt
11
- dtype: string
12
- - name: first_frame
13
- dtype: image
14
- - name: final_frame
15
- dtype: image
16
- - name: ground_truth_video
17
- dtype: binary
18
- splits:
19
- - name: in_domain
20
- num_bytes: 88652293
21
- num_examples: 250
22
- - name: out_of_domain
23
- num_bytes: 85824995
24
- num_examples: 250
25
- download_size: 132875656
26
- dataset_size: 174477288
27
  configs:
28
  - config_name: default
29
  data_files:
@@ -32,3 +21,45 @@ configs:
32
  - split: out_of_domain
33
  path: data/out_of_domain-*
34
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
+ license: apache-2.0
5
+ task_categories:
6
+ - visual-question-answering
7
+ - video-classification
8
+ tags:
9
+ - video
10
+ - reasoning
11
+ - benchmark
12
+ - i2v
13
+ pretty_name: VBVR-Bench
14
+ size_categories:
15
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
16
  configs:
17
  - config_name: default
18
  data_files:
 
21
  - split: out_of_domain
22
  path: data/out_of_domain-*
23
  ---
24
+
25
+ # VBVR-Bench
26
+
27
+ Re-hosted copy of [Video-Reason/VBVR-Bench-Data](https://huggingface.co/datasets/Video-Reason/VBVR-Bench-Data),
28
+ converted to standard HuggingFace parquet format.
29
+
30
+ ## Splits
31
+ - **`in_domain`**: 50 tasks x 5 samples = 250 entries (tasks overlap with the VBVR training set).
32
+ - **`out_of_domain`**: 50 tasks x 5 samples = 250 entries (held-out reasoning tasks).
33
+
34
+ ## Schema
35
+
36
+ | field | type | notes |
37
+ |---|---|---|
38
+ | `task_name` | string | e.g. `G-13_grid_number_sequence_data-generator` |
39
+ | `video_idx` | string | zero-padded sample id (`00000`..`00004`) |
40
+ | `domain` | string | duplicates split name; convenient for filtering |
41
+ | `prompt` | string | task description fed to the I2V model |
42
+ | `first_frame` | Image (PNG) | I2V condition frame |
43
+ | `final_frame` | Image (PNG) | expected final frame |
44
+ | `ground_truth_video` | binary (MP4) | reference video — decode with decord / PyAV |
45
+
46
+ ## Quick load
47
+
48
+ ```python
49
+ from datasets import load_dataset
50
+
51
+ ds = load_dataset("pufanyi/VBVR-Bench", split="in_domain")
52
+ sample = ds[0]
53
+ sample["first_frame"] # PIL.Image
54
+ sample["prompt"] # str
55
+ sample["ground_truth_video"] # raw MP4 bytes
56
+
57
+ # Decode the video with decord
58
+ import decord, io
59
+ vr = decord.VideoReader(io.BytesIO(sample["ground_truth_video"]))
60
+ ```
61
+
62
+ ## Links
63
+ - Upstream dataset: [Video-Reason/VBVR-Bench-Data](https://huggingface.co/datasets/Video-Reason/VBVR-Bench-Data)
64
+ - Evaluation kit: [Video-Reason/VBVR-EvalKit](https://github.com/Video-Reason/VBVR-EvalKit)
65
+ - Project page: [video-reason.com](https://video-reason.com/)