Improve dataset card and add paper metadata
#2
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -112,6 +112,40 @@ configs:
|
|
| 112 |
path: tex/train-*
|
| 113 |
- split: validation
|
| 114 |
path: tex/validation-*
|
|
|
|
|
|
|
| 115 |
---
|
| 116 |
|
| 117 |
-
Block World
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
path: tex/train-*
|
| 113 |
- split: validation
|
| 114 |
path: tex/validation-*
|
| 115 |
+
task_categories:
|
| 116 |
+
- image-to-video
|
| 117 |
---
|
| 118 |
|
| 119 |
+
# Block World Dataset
|
| 120 |
+
|
| 121 |
+
This repository contains the Block World dataset for experiments of **FloWM (Flow Equivariant World Models)**, presented in the paper [Flow Equivariant World Models: Memory for Partially Observed Dynamic Environments](https://huggingface.co/papers/2601.01075).
|
| 122 |
+
|
| 123 |
+
[**Project Page**](https://flowequivariantworldmodels.github.io/) | [**GitHub Repository**](https://github.com/hlillemark/flowm)
|
| 124 |
+
|
| 125 |
+
## Dataset Summary
|
| 126 |
+
|
| 127 |
+
The Block World dataset is a 3D partially observed video world modeling benchmark. It is designed to evaluate how world models handle continuous sensory input and underlying symmetries in environment dynamics. The dataset includes three main configurations:
|
| 128 |
+
|
| 129 |
+
- **dynamic**: The primary environment used for results in the paper, featuring moving objects.
|
| 130 |
+
- **static**: A version of the environment with static external objects.
|
| 131 |
+
- **tex**: A textured version of the environment to test visual complexity.
|
| 132 |
+
|
| 133 |
+
Each configuration contains both `train` and `validation` splits.
|
| 134 |
+
|
| 135 |
+
## Usage
|
| 136 |
+
|
| 137 |
+
To use this dataset with the FloWM framework, the authors provide a download script in the associated GitHub repository to handle the extraction and setup of the data. For more details, please refer to the [official code repository](https://github.com/hlillemark/flowm).
|
| 138 |
+
|
| 139 |
+
## Citation
|
| 140 |
+
|
| 141 |
+
```bibtex
|
| 142 |
+
@misc{lillemark2026flowequivariantworldmodels,
|
| 143 |
+
title={Flow Equivariant World Models: Memory for Partially Observed Dynamic Environments},
|
| 144 |
+
author={Hansen Jin Lillemark and Benhao Huang and Fangneng Zhan and Yilun Du and Thomas Anderson Keller},
|
| 145 |
+
year={2026},
|
| 146 |
+
eprint={2601.01075},
|
| 147 |
+
archivePrefix={arXiv},
|
| 148 |
+
primaryClass={cs.LG},
|
| 149 |
+
url={https://arxiv.org/abs/2601.01075},
|
| 150 |
+
}
|
| 151 |
+
```
|