Add paper link, GitHub link, and task category
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,3 +1,44 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- video-text-to-text
|
| 5 |
+
---
|
| 6 |
+
|
| 7 |
+
# PEARL-Bench: Personalized Streaming Video Understanding
|
| 8 |
+
|
| 9 |
+
[**Paper**](https://huggingface.co/papers/2603.20422) | [**GitHub**](https://github.com/Yuanhong-Zheng/PEARL)
|
| 10 |
+
|
| 11 |
+
PEARL-Bench is the first comprehensive benchmark designed specifically for **Personalized Streaming Video Understanding (PSVU)**. It evaluates a model's ability to recognize user-defined concepts, localize them at precise timestamps, and answer personalized queries over continuous video streams.
|
| 12 |
+
|
| 13 |
+
The benchmark comprises 132 unique videos and 2,173 fine-grained annotations with precise timestamps. It supports two evaluation modes:
|
| 14 |
+
- **Frame-level**: Focuses on a specific person or object in discrete frames.
|
| 15 |
+
- **Video-level**: Focuses on personalized actions unfolding across continuous frames.
|
| 16 |
+
|
| 17 |
+
## Dataset Structure
|
| 18 |
+
|
| 19 |
+
The dataset is organized as follows:
|
| 20 |
+
|
| 21 |
+
```text
|
| 22 |
+
data/
|
| 23 |
+
frame-level/
|
| 24 |
+
annotations/ # Fine-grained annotations with timestamps
|
| 25 |
+
output_clips/ # Generated scene clips
|
| 26 |
+
videos/ # Source video files (.mp4)
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## Usage
|
| 30 |
+
|
| 31 |
+
For detailed instructions on downloading, merging, and extracting the data, as well as running the evaluation pipeline, please refer to the [official GitHub repository](https://github.com/Yuanhong-Zheng/PEARL).
|
| 32 |
+
|
| 33 |
+
## Citation
|
| 34 |
+
|
| 35 |
+
If you find this dataset useful for your research, please cite:
|
| 36 |
+
|
| 37 |
+
```bibtex
|
| 38 |
+
@article{zheng2026pearl,
|
| 39 |
+
title={PEARL: Personalized Streaming Video Understanding Model},
|
| 40 |
+
author={Zheng, Yuanhong and An, Ruichuan and Lin, Xiaopeng and Liu, Yuxing and Yang, Sihan and Zhang, Huanyu and Li, Haodong and Zhang, Qintong and Zhang, Renrui and Li, Guopeng and Zhang, Yifan and Li, Yuheng and Zhang, Wentao},
|
| 41 |
+
journal={arXiv preprint arXiv:2603.20422},
|
| 42 |
+
year={2026}
|
| 43 |
+
}
|
| 44 |
+
```
|