Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Out of Sight but Not Out of Mind: Hybrid Memory for Dynamic Video World Models
|
| 2 |
+
|
| 3 |
+
<div align="center">
|
| 4 |
+
<a href="https://kj-chen666.github.io/Hybrid-Memory-in-Video-World-Models/"><img src="https://img.shields.io/badge/Project-Page-orange.svg?logo=googlehome" alt="Project Page"></a>
|
| 5 |
+
<a href="https://github.com/H-EmbodVis/HyDRA"><img src="https://img.shields.io/badge/GitHub-Repository-black?logo=github" alt="GitHub"></a>
|
| 6 |
+
<a href="https://arxiv.org/pdf/2603.25716"><img src="https://img.shields.io/badge/arXiv-Paper-b31b1b?logo=Arxiv" alt="arXiv"></a>
|
| 7 |
+
</div>
|
| 8 |
+
|
| 9 |
+
## HM-World
|
| 10 |
+
|
| 11 |
+
`HM-World` is a dataset for hybrid memory in dynamic video world models. It provides video sequences, foreground masks, camera pose annotations, character pose annotations, event timestamps, and text captions for each sample.
|
| 12 |
+
|
| 13 |
+
## Usage
|
| 14 |
+
|
| 15 |
+
Merge the split archives and extract the dataset with:
|
| 16 |
+
|
| 17 |
+
```bash
|
| 18 |
+
cat HM-World_* | tar -xzvf -
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
+
## Dataset Structure
|
| 22 |
+
|
| 23 |
+
```text
|
| 24 |
+
HM-World/
|
| 25 |
+
├── sample1/
|
| 26 |
+
│ ├── cond.mp4
|
| 27 |
+
│ ├── tgt.mp4
|
| 28 |
+
│ ├── cond_mask.mp4
|
| 29 |
+
│ ├── tgt_mask.mp4
|
| 30 |
+
│ ├── camera.json
|
| 31 |
+
│ ├── character.json
|
| 32 |
+
│ └── check.json
|
| 33 |
+
├── sample2/
|
| 34 |
+
│ └── ...
|
| 35 |
+
├── ...
|
| 36 |
+
└── caption.txt
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## File Description
|
| 40 |
+
|
| 41 |
+
- `cond.mp4`: condition video.
|
| 42 |
+
- `tgt.mp4`: target video.
|
| 43 |
+
- `cond_mask.mp4`: foreground mask video for the condition video.
|
| 44 |
+
- `tgt_mask.mp4`: foreground mask video for the target video.
|
| 45 |
+
- `camera.json`: camera pose information.
|
| 46 |
+
- `character.json`: character pose information.
|
| 47 |
+
- `check.json`: timestamps that record when the subjects enters or leaves the frame.
|
| 48 |
+
- `caption.txt`: captions for all samples in the dataset.
|
| 49 |
+
|
| 50 |
+
|