Expand layout tree with per-instance files
Browse files
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 |
-
|
| 46 |
|
| 47 |
```
|
| 48 |
-
VBVR-Pro-Bench-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
```
|
| 53 |
|
| 54 |
-
|
| 55 |
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
|
| 61 |
-
`
|
| 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 |
|