Improve model card: Add pipeline tag, sample usage, and BibTeX

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +31 -2
README.md CHANGED
@@ -1,7 +1,8 @@
1
-
2
  ---
3
  license: mit
 
4
  ---
 
5
  # Orbis: Overcoming Challenges of Long-Horizon Prediction in Driving World Models
6
 
7
  <table>
@@ -20,4 +21,32 @@ license: mit
20
  </table>
21
 
22
  [Arian Mousakhan](https://lmb.informatik.uni-freiburg.de/people/mousakha/), [Sudhanshu Mittal](https://lmb.informatik.uni-freiburg.de/people/mittal/) , [Silvio Galesso](https://lmb.informatik.uni-freiburg.de/people/galessos/), [Karim Farid](https://lmb.informatik.uni-freiburg.de/people/faridk/), [Thomas Brox](https://lmb.informatik.uni-freiburg.de/people/brox/index.html)
23
- <br>University of Freiburg<br>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ pipeline_tag: image-to-video
4
  ---
5
+
6
  # Orbis: Overcoming Challenges of Long-Horizon Prediction in Driving World Models
7
 
8
  <table>
 
21
  </table>
22
 
23
  [Arian Mousakhan](https://lmb.informatik.uni-freiburg.de/people/mousakha/), [Sudhanshu Mittal](https://lmb.informatik.uni-freiburg.de/people/mittal/) , [Silvio Galesso](https://lmb.informatik.uni-freiburg.de/people/galessos/), [Karim Farid](https://lmb.informatik.uni-freiburg.de/people/faridk/), [Thomas Brox](https://lmb.informatik.uni-freiburg.de/people/brox/index.html)
24
+ <br>University of Freiburg<br>
25
+
26
+ ## Sample Usage
27
+
28
+ To perform autoregressive video generation (roll-out) using example input frames, follow these steps:
29
+
30
+ First, clone the repository and set up the environment:
31
+ ```bash
32
+ git clone https://github.com/lmb-freiburg/orbis.git
33
+ cd orbis
34
+ conda env create -f environment.yml
35
+ conda activate orbis_env
36
+ ```
37
+
38
+ Then, run the `rollout.py` script:
39
+ ```bash
40
+ python evaluate/rollout.py --exp_dir logs_wm/orbis_288x512 --num_gen_frames 120 --num_steps 30
41
+ ```
42
+ This command will generate 120 frames over 30 steps using the model located in `logs_wm/orbis_288x512`.
43
+
44
+ ## BibTeX
45
+ ```bibtex
46
+ @article{mousakhan2025orbis,
47
+ title={Orbis: Overcoming Challenges of Long-Horizon Prediction in Driving World Models},
48
+ author={Mousakhan, Arian and Mittal, Sudhanshu and Galesso, Silvio and Farid, Karim and Brox, Thomas},
49
+ journal={arXiv preprint arXiv:2507.13162},
50
+ year={2025}
51
+ }
52
+ ```