nielsr HF Staff commited on
Commit
51c1744
·
verified ·
1 Parent(s): 0fcea9a

Add robotics task category and research links to dataset card

Browse files

Hi! I'm Niels from the Hugging Face community science team.

This PR improves the dataset card for the OGBench data used in the "Latent Particle World Models" paper. Specifically, I have:
- Added the `robotics` task category to the metadata.
- Included links to the official paper, project page, and GitHub repository.
- Added a BibTeX citation section for researchers.

This helps make the dataset more discoverable and provides context for how it was used in the study of object-centric world models.

Files changed (1) hide show
  1. README.md +26 -2
README.md CHANGED
@@ -1,5 +1,7 @@
1
  ---
2
  license: cc-by-4.0
 
 
3
  tags:
4
  - robot
5
  - ogbench
@@ -9,6 +11,28 @@ tags:
9
  - simulation
10
  - manipulation
11
  ---
12
- Pre-processed 64x64 frames for the `scene` and `cube` tasks from the OGBench benchmark. Includes actions+frames.
13
 
14
- https://github.com/seohongpark/ogbench
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - robotics
5
  tags:
6
  - robot
7
  - ogbench
 
11
  - simulation
12
  - manipulation
13
  ---
 
14
 
15
+ # OGBench Data for Latent Particle World Models (LPWM)
16
+
17
+ This repository contains pre-processed 64x64 frames for the `scene` and `cube` tasks from the [OGBench benchmark](https://github.com/seohongpark/ogbench). The dataset includes actions and frames used for training and evaluating **Latent Particle World Models (LPWM)**.
18
+
19
+ LPWM is a self-supervised object-centric world model that autonomously discovers keypoints, bounding boxes, and object masks directly from video data. It is designed to scale to real-world multi-object datasets and is applicable in decision-making tasks such as goal-conditioned imitation learning.
20
+
21
+ - **Paper:** [Latent Particle World Models: Self-supervised Object-centric Stochastic Dynamics Modeling](https://huggingface.co/papers/2603.04553)
22
+ - **Project Page:** [https://taldatech.github.io/lpwm-web](https://taldatech.github.io/lpwm-web)
23
+ - **GitHub Repository:** [https://github.com/taldatech/lpwm](https://github.com/taldatech/lpwm)
24
+
25
+ ## Citation
26
+
27
+ If you use this data or the LPWM model in your research, please cite the following paper:
28
+
29
+ ```bibtex
30
+ @inproceedings{
31
+ daniel2026latent,
32
+ title={Latent Particle World Models: Self-supervised Object-centric Stochastic Dynamics Modeling},
33
+ author={Tal Daniel and Carl Qi and Dan Haramati and Amir Zadeh and Chuan Li and Aviv Tamar and Deepak Pathak and David Held},
34
+ booktitle={The Fourteenth International Conference on Learning Representations},
35
+ year={2026},
36
+ url={https://openreview.net/forum?id=lTaPtGiUUc}
37
+ }
38
+ ```