Other
English

Improve model card

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +14 -13
README.md CHANGED
@@ -1,41 +1,43 @@
1
  ---
2
- license: cc-by-nc-sa-4.0
3
  language:
4
  - en
5
- pipeline_tag: image-to-video
 
6
  ---
7
 
8
  # MYRIAD (Envisioning the Future, One Step at a Time)
 
9
  [![Project Page](https://img.shields.io/badge/Project-Page-blue)](https://compvis.github.io/myriad)
10
  [![Paper](https://img.shields.io/badge/arXiv-paper-b31b1b)](https://arxiv.org/abs/2604.09527)
 
11
  [![OWM-95](https://img.shields.io/badge/HuggingFace-Dataset-yellow)](https://huggingface.co/datasets/CompVis/owm-95)
 
12
 
13
- ## Paper and Abstract
14
-
15
- The MYRIAD (Motion hYpothesis Reasoning via Iterative Autoregressive Diffusion) model was presented in the paper [Envisioning the Future, One Step at a Time](_blank).
16
 
17
- From a single image, MYRIAD predicts distributions over sparse point trajectories autoregressively. This allows to predict consistent futures in open-set environments and plan actions by exploring a large number of counterfacual interactions.
18
 
19
- ## Project Page and Code
20
 
21
- - **Project Page**: https://compvis.github.io/myriad
22
- - **GitHub Repository**: https://github.com/CompVis/flow-poke-transformer
23
 
24
  ![MYRIAD predicts distributions over potential motion auto-regressively](https://compvis.github.io/myriad/static/images/paper-svg/teaser-qualitative.svg)
25
  *From a single image, our model envisions diverse, physically consistent futures by predicting sparse point trajectories step by step.*
26
 
27
-
28
  ![Sampling from MYRIAD enables planning-by-search](https://compvis.github.io/myriad/static/images/paper-svg/teaser-billiards.svg)
29
  *Its efficiency enables exploring thousands of counterfactual rollouts directly in motion space - here illustrated for billiards planning, where candidate shots are evaluated by simulating many possible outcomes.*
30
 
31
-
32
  ## Usage
33
 
34
  For programmatic use, the simplest way to use MYRIAD is via `torch.hub`:
35
 
36
  ```python
 
 
 
37
  myriad_openset = torch.hub.load("CompVis/myriad", "myriad_openset")
38
 
 
39
  myriad_billiard = torch.hub.load("CompVis/myriad", "myriad_billiard")
40
  ```
41
 
@@ -53,5 +55,4 @@ If you find our model or code useful, please cite our paper:
53
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
54
  year={2026}
55
  }
56
- ```
57
-
 
1
  ---
 
2
  language:
3
  - en
4
+ license: cc-by-nc-sa-4.0
5
+ pipeline_tag: other
6
  ---
7
 
8
  # MYRIAD (Envisioning the Future, One Step at a Time)
9
+
10
  [![Project Page](https://img.shields.io/badge/Project-Page-blue)](https://compvis.github.io/myriad)
11
  [![Paper](https://img.shields.io/badge/arXiv-paper-b31b1b)](https://arxiv.org/abs/2604.09527)
12
+ [![GitHub](https://img.shields.io/badge/GitHub-Code-black)](https://github.com/CompVis/flow-poke-transformer)
13
  [![OWM-95](https://img.shields.io/badge/HuggingFace-Dataset-yellow)](https://huggingface.co/datasets/CompVis/owm-95)
14
+ [![Paper](https://img.shields.io/badge/Huggingface-Papers-yellow)](https://huggingface.co/papers/2604.09527)
15
 
16
+ MYRIAD (Motion hYpothesis Reasoning via Iterative Autoregressive Diffusion) is an autoregressive diffusion model that predicts open-set future scene dynamics as step-wise inference over sparse point trajectories. Starting from a single image, it can efficiently explore thousands of plausible future outcomes, maintaining physical plausibility.
 
 
17
 
18
+ ## Paper and Abstract
19
 
20
+ The MYRIAD model was presented in the paper [Envisioning the Future, One Step at a Time](https://arxiv.org/abs/2604.09527).
21
 
22
+ From a single image, MYRIAD predicts distributions over sparse point trajectories autoregressively. This allows the model to predict consistent futures in open-set environments and plan actions by exploring a large number of counterfactual interactions.
 
23
 
24
  ![MYRIAD predicts distributions over potential motion auto-regressively](https://compvis.github.io/myriad/static/images/paper-svg/teaser-qualitative.svg)
25
  *From a single image, our model envisions diverse, physically consistent futures by predicting sparse point trajectories step by step.*
26
 
 
27
  ![Sampling from MYRIAD enables planning-by-search](https://compvis.github.io/myriad/static/images/paper-svg/teaser-billiards.svg)
28
  *Its efficiency enables exploring thousands of counterfactual rollouts directly in motion space - here illustrated for billiards planning, where candidate shots are evaluated by simulating many possible outcomes.*
29
 
 
30
  ## Usage
31
 
32
  For programmatic use, the simplest way to use MYRIAD is via `torch.hub`:
33
 
34
  ```python
35
+ import torch
36
+
37
+ # Load the open-set model
38
  myriad_openset = torch.hub.load("CompVis/myriad", "myriad_openset")
39
 
40
+ # Load the billiard-specific model
41
  myriad_billiard = torch.hub.load("CompVis/myriad", "myriad_billiard")
42
  ```
43
 
 
55
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
56
  year={2026}
57
  }
58
+ ```