Improve model card
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,41 +1,43 @@
|
|
| 1 |
---
|
| 2 |
-
license: cc-by-nc-sa-4.0
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
# MYRIAD (Envisioning the Future, One Step at a Time)
|
|
|
|
| 9 |
[](https://compvis.github.io/myriad)
|
| 10 |
[](https://arxiv.org/abs/2604.09527)
|
|
|
|
| 11 |
[](https://huggingface.co/datasets/CompVis/owm-95)
|
|
|
|
| 12 |
|
| 13 |
-
|
| 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 |
-
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
-
|
| 22 |
-
- **GitHub Repository**: https://github.com/CompVis/flow-poke-transformer
|
| 23 |
|
| 24 |

|
| 25 |
*From a single image, our model envisions diverse, physically consistent futures by predicting sparse point trajectories step by step.*
|
| 26 |
|
| 27 |
-
|
| 28 |

|
| 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 |
[](https://compvis.github.io/myriad)
|
| 11 |
[](https://arxiv.org/abs/2604.09527)
|
| 12 |
+
[](https://github.com/CompVis/flow-poke-transformer)
|
| 13 |
[](https://huggingface.co/datasets/CompVis/owm-95)
|
| 14 |
+
[](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 |

|
| 25 |
*From a single image, our model envisions diverse, physically consistent futures by predicting sparse point trajectories step by step.*
|
| 26 |
|
|
|
|
| 27 |

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