Improve dataset card: add metadata, links and descriptions

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +42 -1
README.md CHANGED
@@ -1,4 +1,9 @@
1
  ---
 
 
 
 
 
2
  dataset_info:
3
  - config_name: dynamic_fo
4
  features:
@@ -149,4 +154,40 @@ configs:
149
  path: static_po/validation_200-*
150
  ---
151
 
152
- Mnist World dataset for experiments of FloWM: https://huggingface.co/papers/2601.01075.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ task_categories:
3
+ - image-to-video
4
+ tags:
5
+ - world-models
6
+ - reinforcement-learning
7
  dataset_info:
8
  - config_name: dynamic_fo
9
  features:
 
154
  path: static_po/validation_200-*
155
  ---
156
 
157
+ # MNIST World Dataset
158
+
159
+ This repository contains the **MNIST World** dataset, used for experiments in the paper [Flow Equivariant World Models: Memory for Partially Observed Dynamic Environments](https://huggingface.co/papers/2601.01075), accepted at ICML 2026.
160
+
161
+ MNIST World is a 2D partially observed video world modeling benchmark designed to evaluate how well models can handle smooth, time-parameterized symmetries and unobserved regions that continue to evolve.
162
+
163
+ ## Project Resources
164
+ - **Paper:** [arXiv:2601.01075](https://arxiv.org/abs/2601.01075)
165
+ - **Project Page:** [https://flowequivariantworldmodels.github.io/](https://flowequivariantworldmodels.github.io/)
166
+ - **GitHub Repository:** [https://github.com/hlillemark/flowm](https://github.com/hlillemark/flowm)
167
+
168
+ ## Dataset Configurations
169
+
170
+ The dataset is provided in several configurations to test different aspects of world modeling:
171
+
172
+ - **`dynamic_po`**: Partially observed environments with dynamic elements (the main benchmark for the paper).
173
+ - **`static_po`**: Partially observed environments where the world is static.
174
+ - **`dynamic_fo`**: Fully observed environments with dynamic elements.
175
+ - **`dynamic_fo_no_sm`**: Fully observed environments with dynamic elements but no self-motion.
176
+
177
+ Each configuration includes `train` and `validation` splits.
178
+
179
+ ## Citation
180
+
181
+ If you find this dataset or the FloWM framework useful, please cite:
182
+
183
+ ```bibtex
184
+ @misc{lillemark2026flowequivariantworldmodels,
185
+ title={Flow Equivariant World Models: Memory for Partially Observed Dynamic Environments},
186
+ author={Hansen Jin Lillemark and Benhao Huang and Fangneng Zhan and Yilun Du and Thomas Anderson Keller},
187
+ year={2026},
188
+ eprint={2601.01075},
189
+ archivePrefix={arXiv},
190
+ primaryClass={cs.LG},
191
+ url={https://arxiv.org/abs/2601.01075},
192
+ }
193
+ ```