Datasets:
Add paper link, project page, and task category metadata
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: question_id
|
|
@@ -23,3 +25,31 @@ configs:
|
|
| 23 |
- split: test
|
| 24 |
path: data/test-*
|
| 25 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- video-text-to-text
|
| 4 |
dataset_info:
|
| 5 |
features:
|
| 6 |
- name: question_id
|
|
|
|
| 25 |
- split: test
|
| 26 |
path: data/test-*
|
| 27 |
---
|
| 28 |
+
|
| 29 |
+
# HLVid Dataset
|
| 30 |
+
|
| 31 |
+
[Project Page](https://autogaze.github.io/) | [Paper](https://huggingface.co/papers/2603.12254) | [GitHub](https://github.com/NVlabs/AutoGaze)
|
| 32 |
+
|
| 33 |
+
HLVid (High-resolution, Long-form Video QA) is a benchmark introduced in the paper "[Attend Before Attention: Efficient and Scalable Video Understanding via Autoregressive Gazing](https://huggingface.co/papers/2603.12254)".
|
| 34 |
+
|
| 35 |
+
It is designed to evaluate Multi-modal Large Language Models (MLLMs) on long-form, high-resolution video understanding. The benchmark features 5-minute videos at 4K resolution, challenging models to handle significant spatiotemporal redundancy while preserving critical information.
|
| 36 |
+
|
| 37 |
+
## Dataset Details
|
| 38 |
+
|
| 39 |
+
The dataset contains question-answering pairs based on high-fidelity video content. Each entry in the `test` split includes:
|
| 40 |
+
|
| 41 |
+
- `question_id`: A unique identifier for the sample.
|
| 42 |
+
- `category`: The specific domain or reasoning category of the video/question.
|
| 43 |
+
- `video_path`: The path or reference to the source video file.
|
| 44 |
+
- `question`: The text-based question regarding the video.
|
| 45 |
+
- `answer`: The ground-truth text answer.
|
| 46 |
+
|
| 47 |
+
### Citation
|
| 48 |
+
```bibtex
|
| 49 |
+
@article{shi2024autogaze,
|
| 50 |
+
title={Attend Before Attention: Efficient and Scalable Video Understanding via Autoregressive Gazing},
|
| 51 |
+
author={Shi, Baifeng and Fu, Stephanie and Lian, Long and Ye, Hanrong and Eigen, David and Reite, Aaron and Li, Boyi and Kautz, Jan and Han, Song and Chan, David M and others},
|
| 52 |
+
journal={arXiv preprint arXiv:2412.04452},
|
| 53 |
+
year={2024}
|
| 54 |
+
}
|
| 55 |
+
```
|