nielsr HF Staff commited on
Commit
2447b0b
·
verified ·
1 Parent(s): 511d15a

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

Browse files

Hi! I'm Niels from the community science team at Hugging Face. I've updated the dataset card for OBJ3D to improve its discoverability and documentation. Changes include:
- Adding the `image-to-video` task category.
- Linking the dataset to the paper [Latent Particle World Models](https://huggingface.co/papers/2603.04553).
- Adding links to the official GitHub repository and project page.
- Including sample usage commands for training models on this dataset as documented in the GitHub README.
- Adding the BibTeX citation.

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
+ ```