Update dataset card with task category, paper link, and usage instructions

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +38 -2
README.md CHANGED
@@ -1,5 +1,7 @@
1
  ---
2
  license: cc-by-4.0
 
 
3
  tags:
4
  - simulation
5
  - clevr
@@ -8,5 +10,39 @@ tags:
8
  - video
9
  - prediction
10
  ---
11
- OBJ3D dataset from G-SWM (https://github.com/zhixuan-lin/G-SWM).
12
- Contains video frames of synthetic CLEVR-like objects colliding.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - image-to-video
5
  tags:
6
  - simulation
7
  - clevr
 
10
  - video
11
  - prediction
12
  ---
13
+
14
+ # OBJ3D Dataset
15
+
16
+ OBJ3D dataset originally from [G-SWM](https://github.com/zhixuan-lin/G-SWM). It contains video frames of synthetic CLEVR-like objects colliding.
17
+
18
+ This dataset is used for evaluating object-centric world models and stochastic dynamics, as featured in the paper: **[Latent Particle World Models: Self-supervised Object-centric Stochastic Dynamics Modeling](https://huggingface.co/papers/2603.04553)**.
19
+
20
+ - **Project Page:** [https://taldatech.github.io/lpwm-web](https://taldatech.github.io/lpwm-web)
21
+ - **GitHub Repository:** [https://github.com/taldatech/lpwm](https://github.com/taldatech/lpwm)
22
+
23
+ ## Sample Usage
24
+
25
+ To train models on this dataset using the official implementation, you can use the following commands:
26
+
27
+ ### Single-GPU Training (DLPv3)
28
+ ```bash
29
+ python train_dlp.py --dataset obj3d_img
30
+ ```
31
+
32
+ ### Multi-GPU Training (LPWM)
33
+ ```bash
34
+ accelerate launch --config_file ./accel_conf.yml train_lpwm_accelerate.py --dataset obj3d128
35
+ ```
36
+
37
+ ## Citation
38
+
39
+ ```bibtex
40
+ @inproceedings{
41
+ daniel2026latent,
42
+ title={Latent Particle World Models: Self-supervised Object-centric Stochastic Dynamics Modeling},
43
+ author={Tal Daniel and Carl Qi and Dan Haramati and Amir Zadeh and Chuan Li and Aviv Tamar and Deepak Pathak and David Held},
44
+ booktitle={The Fourteenth International Conference on Learning Representations},
45
+ year={2026},
46
+ url={https://openreview.net/forum?id=lTaPtGiUUc}
47
+ }
48
+ ```