Views
No views yet
braindecode.models.EEGDINO,
curated and re-uploaded as part of the
OpenEEG-Bench effort.pip install braindecode[hub]1from braindecode.models import EEGDINO
2
3model = EEGDINO.from_pretrained(
4 "braindecode/eegdino-small-pretrained",
5 n_outputs=2, # set to your downstream task
6 n_chans=19,
7 sfreq=200,
8)from_pretrained reads both the architecture configuration (config.json)
and the weights (model.safetensors or pytorch_model.bin) and returns a
ready-to-fine-tune nn.Module.| Architecture | braindecode.models.EEGDINO |
| Expected channels | 19 |
| Expected sampling frequency | 200 Hz |
| Library | braindecode ≥ 1.5 |
| Loaded via | huggingface_hub.PyTorchModelHubMixin (free with braindecode[hub]) |
Interpolated* variant
(where available) or resample channels with MNE before fine-tuning.1@inproceedings{wang2025eegdino,
2 title = {{EEG-DINO}: Learning {EEG} Foundation Models via Hierarchical
3 Self-Distillation},
4 author = {Wang, Xujia and Liu, Xuhui and Liu, Xi and Si, Qian and Xu,
5 Zhaoliang and Li, Yang and Zhen, Xiantong},
6 booktitle = {Medical Image Computing and Computer Assisted Intervention (MICCAI)},
7 year = {2025},
8}
9
10@article{aristimunha2025braindecode,
11 title = {Braindecode: a deep learning library for raw electrophysiological data},
12 author = {Aristimunha, Bruno and others},
13 journal = {Zenodo},
14 year = {2025},
15 doi = {10.5281/zenodo.17699192},
16}