Other
English
nielsr HF Staff commited on
Commit
7a44d49
·
verified ·
1 Parent(s): c40236b

Improve model card

Browse files

This PR improves the model card for MYRIAD by:
- Updating the `pipeline_tag` to `other` to better reflect the sparse trajectory prediction task.
- Fixing the broken paper link and pointing it to the Hugging Face paper page.
- Adding a sample usage section with a code snippet demonstrating how to load the model via `torch.hub` as found in the GitHub README.
- Ensuring the GitHub repository and project page are correctly linked.

Files changed (1) hide show
  1. README.md +14 -14
README.md CHANGED
@@ -1,41 +1,42 @@
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 +54,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://huggingface.co/papers/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
 
15
+ 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 and long-range coherence.
 
 
16
 
17
+ ## Paper and Abstract
18
 
19
+ The MYRIAD model was presented in the paper [Envisioning the Future, One Step at a Time](https://huggingface.co/papers/2604.09527).
20
 
21
+ 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.
 
22
 
23
  ![MYRIAD predicts distributions over potential motion auto-regressively](https://compvis.github.io/myriad/static/images/paper-svg/teaser-qualitative.svg)
24
  *From a single image, our model envisions diverse, physically consistent futures by predicting sparse point trajectories step by step.*
25
 
 
26
  ![Sampling from MYRIAD enables planning-by-search](https://compvis.github.io/myriad/static/images/paper-svg/teaser-billiards.svg)
27
  *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.*
28
 
 
29
  ## Usage
30
 
31
  For programmatic use, the simplest way to use MYRIAD is via `torch.hub`:
32
 
33
  ```python
34
+ import torch
35
+
36
+ # Load the open-set model
37
  myriad_openset = torch.hub.load("CompVis/myriad", "myriad_openset")
38
 
39
+ # Load the billiard-specific model
40
  myriad_billiard = torch.hub.load("CompVis/myriad", "myriad_billiard")
41
  ```
42
 
 
54
  booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
55
  year={2026}
56
  }
57
+ ```