Views
No views yet

rank_*.ckpt), loaded
through omnimouse.utils.ModelCheckpoint.
The loader handles multi-rank → single-rank consolidation transparently.1from huggingface_hub import snapshot_download
2
3# Download the rank_*.ckpt shards; returns the local cache path.
4ckpt_dir = snapshot_download(
5 repo_id="the-enigma-project/omnimouse-1M",
6 allow_patterns=["rank_*.ckpt"],
7)ckpt_dir as ckpt_path to the standard eval pipeline:uv run eval experiment=omnimouse_1M ckpt_path=<ckpt_dir>notebooks/inference.ipynb —
see that notebook for the end-to-end flow (config composition, dataloader setup,
checkpoint load, evaluation).configs/experiment/omnimouse_1M.yaml.
The session-specific readouts (sess_params) in the checkpoint are tied to the
training corpus; when fine-tuning to new sessions, load with strict=False so
unmatched readouts initialize fresh.| Scale | Repo |
|---|---|
| 1M | the-enigma-project/omnimouse-1M |
| 5M | the-enigma-project/omnimouse-5M |
| 20M | the-enigma-project/omnimouse-20M |
| 80M | the-enigma-project/omnimouse-80M (flagship) |
| 300M | the-enigma-project/omnimouse-300M |
| Model | Params | Forecast | Forecast + Stim | Population | Pop. + Stim | Gaze | Pupil | Running |
|---|---|---|---|---|---|---|---|---|
| OmniMouse-1M | 1M | 0.18 | 0.31 | 0.27 | 0.35 | 0.75 | 0.73 | 0.55 |
1@inproceedings{willeke2026omnimouse,
2 title = {OmniMouse: Scaling properties of multi-modal, multi-task Brain Models on 150B Neural Tokens},
3 author = {Konstantin Friedrich Willeke and Polina Turishcheva and Alex Gilbert and Goirik Chakrabarty and Hasan Atakan Bedel and Paul G. Fahey and Yongrong Qiu and Marissa A. Weis and Michaela Vystr{\v{c}}ilov{\'a} and Taliah Muhammad and Lydia Ntanavara and Rachel E Froebe and Kayla Ponder and Zheng Huan Tan and Emin Orhan and Erick Cobos and Sophia Sanborn and Katrin Franke and Fabian H. Sinz and Alexander S. Ecker and Andreas S. Tolias},
4 booktitle = {The Fourteenth International Conference on Learning Representations},
5 year = {2026},
6 url = {https://openreview.net/forum?id=mEw4lhAn0F}
7}