junxiangjoe commited on
Commit
5e8ecf3
·
verified ·
1 Parent(s): 5f5e5f7

Expand layout tree with per-instance files

Browse files
Files changed (1) hide show
  1. README.md +30 -11
README.md CHANGED
@@ -42,23 +42,42 @@ Companion resources: [VBVR-Pro-SFT-Video](https://huggingface.co/datasets/Video-
42
  └── VBVR-Pro-Bench-Image.tar.gz
43
  ```
44
 
45
- Extracting either archive yields:
46
 
47
  ```
48
- VBVR-Pro-Bench-<Video|Image>/
49
- ── <In-Domain_50|Out-of-Domain_50>/
50
- ── <TASK>/ # e.g. G-131_select_next_figure_increasing_size_sequence_data-generator
51
- ── 00000/ … 00004/
 
 
 
 
 
 
 
 
52
  ```
53
 
54
- Per instance:
55
 
56
- | Setting | Files |
57
- |---|---|
58
- | Video | `first_frame.png`, `ground_truth.mp4`, `final_frame.png`, `prompt.txt` |
59
- | Image | `first_frame.png`, `frame_1.png` … `frame_N.png`, `prompt.txt` |
 
 
 
 
 
 
 
 
 
 
 
60
 
61
- `first_frame.png` is the conditioning image, `prompt.txt` the instruction, and the remaining files the reference output. `N` varies by task (1–21) according to how many steps the instruction asks the model to render.
62
 
63
  ## Usage
64
 
 
42
  └── VBVR-Pro-Bench-Image.tar.gz
43
  ```
44
 
45
+ `VBVR-Pro-Bench-Video.tar.gz` extracts to:
46
 
47
  ```
48
+ VBVR-Pro-Bench-Video/
49
+ ── In-Domain_50/
50
+ │ ├── G-131_select_next_figure_increasing_size_sequence_data-generator/
51
+ │ │ ├── 00000/
52
+ │ │ │ ├── first_frame.png # conditioning image (1024 × 1024)
53
+ │ │ │ ├── prompt.txt # instruction
54
+ │ │ │ ├── ground_truth.mp4 # reference video (16 fps)
55
+ │ │ │ └── final_frame.png # last frame of the reference video
56
+ │ │ ├── 00001/ … 00004/ # same five files
57
+ │ │ └── …
58
+ │ └── … # 50 tasks
59
+ └── Out-of-Domain_50/ # 50 tasks, same shape
60
  ```
61
 
62
+ `VBVR-Pro-Bench-Image.tar.gz` extracts to the same tree, with the reference output as an image sequence instead:
63
 
64
+ ```
65
+ VBVR-Pro-Bench-Image/
66
+ ├── In-Domain_50/
67
+ │ ├── G-131_select_next_figure_increasing_size_sequence_data-generator/
68
+ │ │ ├── 00000/
69
+ │ │ │ ├── first_frame.png # conditioning image (1024 × 1024)
70
+ │ │ │ ├── prompt.txt # instruction
71
+ │ │ │ ├── frame_1.png # reference output, step 1
72
+ │ │ │ ├── frame_2.png # … step 2, when the task has more steps
73
+ │ │ │ └── … # up to frame_N.png
74
+ │ │ ├── 00001/ … 00004/
75
+ │ │ └── …
76
+ │ └── … # 50 tasks
77
+ └── Out-of-Domain_50/ # 50 tasks, same shape
78
+ ```
79
 
80
+ `N` is task-dependent (1–21): it is the number of steps the instruction asks the model to render, and it is stated in `prompt.txt` (e.g. *"Output 4 images: …"*). Most tasks are single-step.
81
 
82
  ## Usage
83