Add paper link, GitHub link, and task category to dataset card
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,19 +1,23 @@
|
|
| 1 |
---
|
| 2 |
-
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
- zh
|
|
|
|
|
|
|
|
|
|
| 6 |
tags:
|
| 7 |
- streaming
|
| 8 |
-
- spatial
|
|
|
|
| 9 |
---
|
| 10 |
|
| 11 |
-
|
| 12 |
# UCS-Bench
|
| 13 |
|
|
|
|
|
|
|
| 14 |
UCS-Bench is a benchmark for evaluating **user-centric continual spatial intelligence** in streaming egocentric videos.
|
| 15 |
|
| 16 |
-
The dataset contains **170+ hours of egocentric visual observations** and **
|
| 17 |
|
| 18 |
Unlike standard video QA benchmarks, UCS-Bench focuses on long-horizon spatial reasoning in continuous egocentric streams, including:
|
| 19 |
|
|
@@ -23,6 +27,18 @@ Unlike standard video QA benchmarks, UCS-Bench focuses on long-horizon spatial r
|
|
| 23 |
* reasoning about dynamic scenes from the user's perspective;
|
| 24 |
* aligning spatial memory with the user's changing location.
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
## Dataset Format
|
| 27 |
|
| 28 |
Each video is paired with metadata in `metadata.jsonl`.
|
|
@@ -39,10 +55,6 @@ Fields:
|
|
| 39 |
* `text`: question, caption, or annotation text
|
| 40 |
* `label`: answer, category, or target label
|
| 41 |
|
| 42 |
-
## Intended Use
|
| 43 |
-
|
| 44 |
-
UCS-Bench is intended for research on egocentric AI assistants, streaming video understanding, spatial memory, and long-term multimodal reasoning.
|
| 45 |
-
|
| 46 |
## Source Datasets
|
| 47 |
|
| 48 |
UCS-Bench is built upon and curated from several public egocentric and spatial understanding datasets. We gratefully acknowledge the original datasets and their contributors:
|
|
@@ -58,4 +70,13 @@ Please refer to the original dataset pages for their licenses, terms of use, and
|
|
| 58 |
|
| 59 |
## Citation
|
| 60 |
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
- zh
|
| 5 |
+
license: mit
|
| 6 |
+
task_categories:
|
| 7 |
+
- video-text-to-text
|
| 8 |
tags:
|
| 9 |
- streaming
|
| 10 |
+
- spatial-intelligence
|
| 11 |
+
- egocentric-video
|
| 12 |
---
|
| 13 |
|
|
|
|
| 14 |
# UCS-Bench
|
| 15 |
|
| 16 |
+
[**Paper**](https://huggingface.co/papers/2606.15200) | [**Code**](https://github.com/cocowy1/UCS-Bench)
|
| 17 |
+
|
| 18 |
UCS-Bench is a benchmark for evaluating **user-centric continual spatial intelligence** in streaming egocentric videos.
|
| 19 |
|
| 20 |
+
The dataset contains **170+ hours of egocentric visual observations** and **8.1K+ timestamped questions**. It is designed to test whether models can understand dynamic spatial environments from a user's point of view, maintain long-term spatial memory, and answer questions grounded in the user's real-time movement and location.
|
| 21 |
|
| 22 |
Unlike standard video QA benchmarks, UCS-Bench focuses on long-horizon spatial reasoning in continuous egocentric streams, including:
|
| 23 |
|
|
|
|
| 27 |
* reasoning about dynamic scenes from the user's perspective;
|
| 28 |
* aligning spatial memory with the user's changing location.
|
| 29 |
|
| 30 |
+
## Dataset Download
|
| 31 |
+
|
| 32 |
+
You can download the dataset using the `huggingface_hub` CLI:
|
| 33 |
+
|
| 34 |
+
```bash
|
| 35 |
+
pip install -U huggingface_hub
|
| 36 |
+
|
| 37 |
+
huggingface-cli download cocowy1/UCS-Bench \
|
| 38 |
+
--repo-type dataset \
|
| 39 |
+
--local-dir data/UCS-Bench
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
## Dataset Format
|
| 43 |
|
| 44 |
Each video is paired with metadata in `metadata.jsonl`.
|
|
|
|
| 55 |
* `text`: question, caption, or annotation text
|
| 56 |
* `label`: answer, category, or target label
|
| 57 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
## Source Datasets
|
| 59 |
|
| 60 |
UCS-Bench is built upon and curated from several public egocentric and spatial understanding datasets. We gratefully acknowledge the original datasets and their contributors:
|
|
|
|
| 70 |
|
| 71 |
## Citation
|
| 72 |
|
| 73 |
+
If you find UCS-Bench or DirectMe useful, please cite our work:
|
| 74 |
+
|
| 75 |
+
```bibtex
|
| 76 |
+
@misc{ucsbench2026,
|
| 77 |
+
title = {Keep It in Mind: User-Centric Continual Spatial Intelligence Reasoning in Egocentric Video Streams},
|
| 78 |
+
year = {2026},
|
| 79 |
+
note = {ICML 2026},
|
| 80 |
+
url = {https://icml.cc/virtual/2026/poster/63682}
|
| 81 |
+
}
|
| 82 |
+
```
|