Mimic Video
Project description
Mimic Video (wip)
Implementation of Mimic-Video, Video-Action Models for Generalizable Robot Control Beyond VLAs
Appreciation
- Pranoy for submitting a pull request for proprioception masking
Install
$ pip install mimic-video
Usage
import torch
# video wrapper
# but will be agnostic to the model
from mimic_video.cosmos_predict import CosmosPredictWrapper
video_wrapper = CosmosPredictWrapper(
extract_layer = 1,
random_weights = True,
tiny = True
)
# mimic video
from mimic_video import MimicVideo
model = MimicVideo(512, video_wrapper)
# states
video = torch.rand(2, 3, 3, 32, 32)
joint_state = torch.randn(2, 32)
# action
actions = torch.randn(2, 32, 20)
# training
loss = model(
prompts = [
'put the package on the conveyer belt',
'pass the butter'
],
video = video,
actions = actions,
joint_state = joint_state
)
loss.backward()
# inference
actions = model.sample(
prompts = 'peel the orange',
video = video[:1],
joint_state = joint_state[:1]
)
assert actions.shape == (1, 32, 20)
Contributing
First make sure pytest and test dependencies are installed with
$ pip install '.[test]'
Then add your test to tests/test_mimic_video.py and run
$ pytest tests
That's it
Citations
@inproceedings{Pai2025mimicvideoVM,
title = {mimic-video: Video-Action Models for Generalizable Robot Control Beyond VLAs},
author = {Jonas Pai and Liam Achenbach and Victoriano Montesinos and Benedek Forrai and Oier Mees and Elvis Nava},
year = {2025},
url = {https://api.semanticscholar.org/CorpusID:283920528}
}
@misc{li2025basicsletdenoisinggenerative,
title = {Back to Basics: Let Denoising Generative Models Denoise},
author = {Tianhong Li and Kaiming He},
year = {2025},
eprint = {2511.13720},
archivePrefix = {arXiv},
primaryClass = {cs.CV},
url = {https://arxiv.org/abs/2511.13720},
}
@misc{black2025trainingtimeactionconditioningefficient,
title = {Training-Time Action Conditioning for Efficient Real-Time Chunking},
author = {Kevin Black and Allen Z. Ren and Michael Equi and Sergey Levine},
year = {2025},
eprint = {2512.05964},
archivePrefix = {arXiv},
primaryClass = {cs.RO},
url = {https://arxiv.org/abs/2512.05964},
}
@misc{intelligence2025pi06vlalearnsexperience,
title = {$\pi^{*}_{0.6}$: a VLA That Learns From Experience},
author = {Physical Intelligence and Ali Amin and Raichelle Aniceto and Ashwin Balakrishna and Kevin Black and Ken Conley and Grace Connors and James Darpinian and Karan Dhabalia and Jared DiCarlo and Danny Driess and Michael Equi and Adnan Esmail and Yunhao Fang and Chelsea Finn and Catherine Glossop and Thomas Godden and Ivan Goryachev and Lachy Groom and Hunter Hancock and Karol Hausman and Gashon Hussein and Brian Ichter and Szymon Jakubczak and Rowan Jen and Tim Jones and Ben Katz and Liyiming Ke and Chandra Kuchi and Marinda Lamb and Devin LeBlanc and Sergey Levine and Adrian Li-Bell and Yao Lu and Vishnu Mano and Mohith Mothukuri and Suraj Nair and Karl Pertsch and Allen Z. Ren and Charvi Sharma and Lucy Xiaoyang Shi and Laura Smith and Jost Tobias Springenberg and Kyle Stachowicz and Will Stoeckle and Alex Swerdlow and James Tanner and Marcel Torne and Quan Vuong and Anna Walling and Haohuan Wang and Blake Williams and Sukwon Yoo and Lili Yu and Ury Zhilinsky and Zhiyuan Zhou},
year = {2025},
eprint = {2511.14759},
archivePrefix = {arXiv},
primaryClass = {cs.LG},
url = {https://arxiv.org/abs/2511.14759},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mimic_video-0.0.36.tar.gz
(783.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mimic_video-0.0.36.tar.gz.
File metadata
- Download URL: mimic_video-0.0.36.tar.gz
- Upload date:
- Size: 783.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0eefbace3b3795d8408c309014b6f1d6dc457170c76820ed22cf0988435f7512
|
|
| MD5 |
aa275eb7430480a14423ab4702118bd0
|
|
| BLAKE2b-256 |
121bb7681d7045dbd3b7713420ef02cbd31717d9142bfe7bea8f99bdb2f8ad48
|
File details
Details for the file mimic_video-0.0.36-py3-none-any.whl.
File metadata
- Download URL: mimic_video-0.0.36-py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
899dc3e4a7378770cb9a0658c89d84eda5ec3e583869f25029ddd7014b19776a
|
|
| MD5 |
e99f378880e9041cfab407d34c1a2806
|
|
| BLAKE2b-256 |
4b9e2f7a5a57b337236503a2fe622711873e29b93acb4c199c8293f431a26054
|