Views
No views yet
torch.hub:1import torch
2
3# Load the open-set model
4myriad_openset = torch.hub.load("CompVis/myriad", "myriad_openset")
5
6# Load the billiard-specific model
7myriad_billiard = torch.hub.load("CompVis/myriad", "myriad_billiard")model.py and dinov3.py from the GitHub repository.
The MyriadStepByStep class contains a predict_simulate method for unrolling trajectories and a low-level forward method to predict distributions for previously observed trajectories.1@inproceedings{baumann2026envisioning,
2 title={Envisioning the Future, One Step at a Time},
3 author={Baumann, Stefan Andreas and Wiese, Jannik and Martorella, Tommaso and Kalayeh, Mahdi M. and Ommer, Bjorn},
4 booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
5 year={2026}
6}