Foundation model for EEG reconstruction and interpolation
Project description
ZUNA: EEG Foundation Model
ZUNA is a 380M-parameter masked diffusion autoencoder trained to reconstruct, denoise, and upsample scalp-EEG signals. Given a subset of EEG channels, ZUNA can:
- Denoise existing EEG channels
- Reconstruct missing EEG channels
- Predict novel channel signals given physical coordinates on the scalp
ZUNA was trained on approximately 2 million channel-hours of EEG data from a wide range of publicly available sources. At 380M parameters, it is lightweight enough to run on a consumer GPU and can be used on CPU for many workloads.
Performance
ZUNA significantly outperforms existing standard methods for channel denoising, reconstruction, and upsampling. We compared ZUNA to MNE's default spherical spline interpolation method. ZUNA outperforms MNE in reconstruction accuracy across a range of unseen datasets, even those with a different preprocessing pipeline. ZUNA's advantage is particularly striking for higher upsampling ratios, demonstrating that it is effectively using general priors learned through large-scale pretraining.
Installation
# (1). Download tutorial and sample data from GitHub
git clone --depth 1 --filter=blob:none --sparse https://github.com/Zyphra/zuna.git && cd zuna && git sparse-checkout set tutorials
# (2). Pip Install zuna
pip install zuna
Or install in development mode:
# (1). Download Zuna codebase from GitHub
git clone https://github.com/Zyphra/zuna.git && cd zuna
# (2). Pip Install zuna in developer mode
pip install -e .
GPU support (PyTorch + CUDA)
zuna runs on the GPU via PyTorch, and PyPI cannot pick a PyTorch build that matches your GPU driver for you. If the automatically installed torch is built for a newer CUDA version than your NVIDIA driver supports, PyTorch silently falls back to CPU (very slow) with a warning like No CUDA runtime is found / CUDA initialization: The NVIDIA driver on your system is too old.
To avoid this, install a torch build that matches your driver before installing zuna. Check the CUDA version your driver supports (top-right of nvidia-smi), then install the matching wheel — for example, for CUDA 12.8:
# 1. Install a torch build matching your driver's CUDA version (see `nvidia-smi`).
# Example for CUDA 12.8 — use cu121 / cu124 / cu126 / cu128 to match yours:
pip install torch --index-url https://download.pytorch.org/whl/cu128
# 2. Then install zuna (it will use the torch you already installed)
pip install zuna
If you already installed zuna and it's running on CPU, fix it by reinstalling the matching torch:
pip install --force-reinstall torch --index-url https://download.pytorch.org/whl/cu128
Verify GPU access:
python -c "import torch; print(torch.__version__, torch.version.cuda, torch.cuda.is_available())"
# Expect the CUDA build (e.g. ...+cu128) and `True`.
Quick Start
See tutorials/run_zuna_pipeline_new.py for a complete working example.
Edit the paths and options, then run:
python tutorials/run_zuna_pipeline_new.py
Citation
For more information please see our technical whitepaper and blog. If you find ZUNA useful in your work, please cite accordingly.
Organizations or researchers interested in collaborating with Zyphra to improve future versions for specific needs or use cases should contact bci@zyphra.com.
Disclaimer
This software and related services ("Services") are provided for research use only and are not intended for use in the diagnosis, cure, mitigation, treatment, or prevention of any disease or health condition. The Services have not been validated for any medical or clinical use. The information provided through the Services is for general informational purposes only and is not a substitute for any professional medical or healthcare advice. We do not warrant that any information provided through the Services is accurate, complete, or useful to you. Any reliance you place on such information is strictly at your own risk.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 zuna-1.1.2.tar.gz.
File metadata
- Download URL: zuna-1.1.2.tar.gz
- Upload date:
- Size: 201.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f707cd4f8bdf11ae5a42261b7be1ad3a020e262cafb2dc59772cb5c2b0182712
|
|
| MD5 |
c92a3b73ac14d38ae67128950da89ed3
|
|
| BLAKE2b-256 |
001831083355875347ffe644436f93e1d43a130c2f63dfb65c1a1b5916595af5
|
File details
Details for the file zuna-1.1.2-py3-none-any.whl.
File metadata
- Download URL: zuna-1.1.2-py3-none-any.whl
- Upload date:
- Size: 387.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28aed989c34a6779540c0c4d9c3f3b73d95589f270785639934b5830fd59645b
|
|
| MD5 |
49a890180289356128e75ca62258d1b5
|
|
| BLAKE2b-256 |
b8b4c5fcdbd1a4767a35f6474673006948fe2e8214542db3d0a111dc334aa4f1
|