Add dataset card with paper link, project page, and usage instructions
#1
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- image-to-video
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
# LongE2V Dataset
|
| 7 |
+
|
| 8 |
+
This repository contains the preprocessed dataset (including `BS-ERGB`, `ECD`, `MVSEC`, and `HQF` sequences) for **LongE2V**, presented in the paper [LongE2V: Long-Horizon Event-based Video Reconstruction, Prediction, and Frame Interpolation with Video Diffusion Models](https://arxiv.org/abs/2607.08770).
|
| 9 |
+
|
| 10 |
+
[Project Page](https://cdfan0627.github.io/LongE2V-page/) | [GitHub Repository](https://github.com/cdfan0627/LongE2V) | [Paper](https://arxiv.org/abs/2607.08770)
|
| 11 |
+
|
| 12 |
+
## Dataset Download
|
| 13 |
+
|
| 14 |
+
The preprocessed `BS-ERGB`, `ECD`, `MVSEC`, and `HQF` data (images and voxel grids) are released on Hugging Face at `fansam39/LongE2V-data`.
|
| 15 |
+
|
| 16 |
+
You can download all datasets using the Hugging Face CLI:
|
| 17 |
+
|
| 18 |
+
```bash
|
| 19 |
+
pip install -U "huggingface_hub[cli]"
|
| 20 |
+
hf download fansam39/LongE2V-data --repo-type dataset --local-dir data
|
| 21 |
+
```
|
| 22 |
+
|
| 23 |
+
Or download a single dataset only (e.g., ECD):
|
| 24 |
+
|
| 25 |
+
```bash
|
| 26 |
+
hf download fansam39/LongE2V-data --repo-type dataset --local-dir data --include "ECD/*"
|
| 27 |
+
```
|
| 28 |
+
|
| 29 |
+
## Expected Data Layout
|
| 30 |
+
|
| 31 |
+
Once downloaded, organize the `data/` folder as follows:
|
| 32 |
+
|
| 33 |
+
```text
|
| 34 |
+
data/
|
| 35 |
+
BS-ERGB/
|
| 36 |
+
train_set/
|
| 37 |
+
<sequence>/
|
| 38 |
+
images/
|
| 39 |
+
voxels/
|
| 40 |
+
cogvlm_prompts.txt
|
| 41 |
+
test_set/
|
| 42 |
+
<sequence>/
|
| 43 |
+
images/
|
| 44 |
+
voxels/
|
| 45 |
+
voxels_reverse/
|
| 46 |
+
ECD/
|
| 47 |
+
<sequence>/
|
| 48 |
+
images_eval/
|
| 49 |
+
voxels_eval/
|
| 50 |
+
MVSEC/
|
| 51 |
+
<sequence>/
|
| 52 |
+
images_eval/
|
| 53 |
+
voxels_eval/
|
| 54 |
+
HQF/
|
| 55 |
+
<sequence>/
|
| 56 |
+
images/
|
| 57 |
+
voxels/
|
| 58 |
+
voxels_reverse/
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
- **Training** needs `images/*.png`, `voxels/*.npz`, and `cogvlm_prompts.txt` for each training sequence.
|
| 62 |
+
- **Reconstruction / prediction** use `ECD`, `MVSEC`, and `HQF`.
|
| 63 |
+
- **Interpolation** uses `BS-ERGB` and `HQF`.
|
| 64 |
+
|
| 65 |
+
## Citation
|
| 66 |
+
|
| 67 |
+
```bibtex
|
| 68 |
+
@inproceedings{fan2026longe2v,
|
| 69 |
+
title = {LongE2V: Long-Horizon Event-based Video Reconstruction, Prediction, and Frame Interpolation with Video Diffusion Models},
|
| 70 |
+
author = {Fan, Cheng-De and Mu, Chun-Wei Tuan and Chang, Chen-Wei and Lin, Chin-Yang and Wu, Kun-Ru and Tseng, Yu-Chee and Liu, Yu-Lun},
|
| 71 |
+
booktitle = {SIGGRAPH Conference Papers},
|
| 72 |
+
year = {2026}
|
| 73 |
+
}
|
| 74 |
+
```
|