VA-Judger-Bench / README.md
nielsr's picture
nielsr HF Staff
Add task category and links to paper, project page, and code
acb7e31 verified
|
Raw
History Blame
1.24 kB
---
license: mit
task_categories:
- video-text-to-text
---
# VA-Judger-Bench
[Paper](https://huggingface.co/papers/2608.18607) | [Project page](https://sharelab-sii.github.io/VA-Judger/) | [Code](https://github.com/ShareLab-SII/VA-Judger)
VA-Judger-Bench is a paired audio/video preference benchmark with 1,150 cases:
- `easy`: 400 cases
- `indomain`: 250 cases
- `outdomain`: 500 cases
## Layout
Each split contains `data.jsonl` and a `videos/` directory. All video paths are
relative to the split directory.
```text
VA-Judger-Bench/
├── README.md
├── easy/
│ ├── data.jsonl
│ └── videos/
├── indomain/
│ ├── data.jsonl
│ └── videos/
└── outdomain/
├── data.jsonl
└── videos/
```
## Record format
```json
{
"case_id": "stable unique case identifier",
"text_prompt": "generation prompt",
"video_1_relative_path": "videos/example1.mp4",
"video_2_relative_path": "videos/example2.mp4",
"human_preference_answer": "video 1 is better",
}
```
`human_preference_answer` is either `video 1 is better` or
`video 2 is better`. Use `case_id`, not `sample_id`, when joining records.
## Licensing
This dataset is released under the MIT License.