Add link to paper, project page, and usage information

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +31 -2
README.md CHANGED
@@ -1,9 +1,38 @@
1
  ---
2
  license: cc-by-4.0
3
- tags:
4
  - robotics
 
5
  - sketchy
6
  - open-x
7
  ---
8
 
9
- Sketchy dataset from Open-X and Deepmind, pre-processed to 128x128 pixels (not tfrecords, just frames)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
  - robotics
5
+ tags:
6
  - sketchy
7
  - open-x
8
  ---
9
 
10
+ # Sketchy 128x128
11
+
12
+ This dataset is a pre-processed version of the Sketchy dataset (originally from DeepMind and the Open-X Embodiment effort) used in the paper [Latent Particle World Models: Self-supervised Object-centric Stochastic Dynamics Modeling](https://huggingface.co/papers/2603.04553).
13
+
14
+ The data has been pre-processed to 128x128 pixels. Unlike the original TFRecords, this version consists of raw frames/images, facilitating use in standard PyTorch/JAX pipelines for training object-centric world models.
15
+
16
+ - **Project Page:** [https://taldatech.github.io/lpwm-web](https://taldatech.github.io/lpwm-web)
17
+ - **GitHub Repository:** [https://github.com/taldatech/lpwm](https://github.com/taldatech/lpwm)
18
+
19
+ ## Usage
20
+
21
+ To train the Latent Particle World Model (LPWM) on the Sketchy dataset, you can use the following command from the [official repository](https://github.com/taldatech/lpwm):
22
+
23
+ ```bash
24
+ python train_lpwm.py --dataset sketchy
25
+ ```
26
+
27
+ ## Citation
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
+ ```