Update dataset card with metadata, links and usage instructions
Browse filesHi, I'm Niels from the Hugging Face community science team.
I'm opening this PR to improve the dataset card for SeeU45. My changes include:
- Adding YAML metadata for `task_categories` (`image-to-video`) and `license` (`cc-by-nc-nd-4.0`).
- Including direct links to the research paper, official project page, and GitHub repository.
- Adding a "Sample Usage" section showing how to download the dataset via the Hugging Face CLI, as documented in the official repository.
- Adding the BibTeX citation for researchers using this data.
README.md
CHANGED
|
@@ -1,6 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
|
| 2 |
-
#
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
## Dataset Structure
|
| 6 |
|
|
@@ -31,13 +49,21 @@ The publicly released scenes in SeeU45 are derived from the following sources (i
|
|
| 31 |
|
| 32 |
All original copyrights of these source datasets are retained by their respective authors.
|
| 33 |
|
| 34 |
-
##
|
| 35 |
-
|
| 36 |
-
The **SeeU45 dataset** (including our processed frames, splits, and annotations) is released under:
|
| 37 |
|
| 38 |
-
**
|
| 39 |
-
This means:
|
| 40 |
|
| 41 |
- ✅ You may use SeeU45 for **non-commercial academic research**.
|
| 42 |
- ✅ You must credit the SeeU paper and dataset when using it.
|
| 43 |
-
- ❌ You may not use SeeU45 for commercial purposes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-nd-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-video
|
| 5 |
+
---
|
| 6 |
|
| 7 |
+
# SeeU45 Dataset
|
| 8 |
+
|
| 9 |
+
[**Project Page**](https://yuyuan-space.github.io/SeeU/) | [**Paper**](https://huggingface.co/papers/2512.03350) | [**Code**](https://github.com/pandayuanyu/SeeU)
|
| 10 |
+
|
| 11 |
+
This is the official dataset for **SeeU: Seeing the Unseen World via 4D Dynamics-aware Generation**, a framework that learns continuous 4D dynamics to generate unseen visual content from sparse monocular frames.
|
| 12 |
+
|
| 13 |
+
## Sample Usage
|
| 14 |
+
|
| 15 |
+
You can download the dataset using the `huggingface_hub` CLI:
|
| 16 |
+
|
| 17 |
+
```bash
|
| 18 |
+
pip install "huggingface_hub[hf_transfer]"
|
| 19 |
+
|
| 20 |
+
hf download pandaphd/SeeU45 --repo-type dataset --local-dir SeeU45
|
| 21 |
+
```
|
| 22 |
|
| 23 |
## Dataset Structure
|
| 24 |
|
|
|
|
| 49 |
|
| 50 |
All original copyrights of these source datasets are retained by their respective authors.
|
| 51 |
|
| 52 |
+
## License
|
|
|
|
|
|
|
| 53 |
|
| 54 |
+
The **SeeU45 dataset** (including our processed frames, splits, and annotations) is released under **CC BY-NC-ND 4.0**.
|
|
|
|
| 55 |
|
| 56 |
- ✅ You may use SeeU45 for **non-commercial academic research**.
|
| 57 |
- ✅ You must credit the SeeU paper and dataset when using it.
|
| 58 |
+
- ❌ You may not use SeeU45 for commercial purposes.
|
| 59 |
+
|
| 60 |
+
## Citation
|
| 61 |
+
|
| 62 |
+
```bibtex
|
| 63 |
+
@article{Yuan_2025_SeeU,
|
| 64 |
+
title={{SeeU}: Seeing the Unseen World via 4D Dynamics-aware Generation},
|
| 65 |
+
author={Yuan, Yu and Wickremasinghe, Tharindu and Nadir, Zeeshan and Wang, Xijun and Chi, Yiheng and Chan, Stanley H.},
|
| 66 |
+
journal={arXiv preprint arXiv: 2512.03350},
|
| 67 |
+
year={2025}
|
| 68 |
+
}
|
| 69 |
+
```
|