A Python toolkit for building neuroimaging data pipelines.
Project description
neuralset
A Python toolkit for building neuroimaging data pipelines — from raw data to AI-ready batched tensors.
- Event-driven processing with typed, validated DataFrames
- Multi-modal extractors for MEG, EEG, fMRI, EMG, iEEG, text, image, audio, video
- Caching and remote compute via exca
Install
pip install neuralset
Quick example
# First install study dependencies:
# pip install neuralfetch
import neuralset as ns
# Load a study and download its data (MNE sample, ~1.6GB on first run).
study = ns.Study(name="Mne2013Sample", path=ns.CACHE_FOLDER)
study.download()
events = study.run()
# Configure extractors
meg = ns.extractors.MegExtractor(frequency=100.0, filter=(0.5, 30))
# Segment around triggers and build a dataset
segmenter = ns.Segmenter(
extractors=dict(meg=meg),
trigger_query='type == "Stimulus"',
start=-0.1, duration=0.5,
)
dataset = segmenter.apply(events)
batch = dataset.load_all()
Citation
If you use NeuralSet in your research, please cite NeuralSet: A High-Performing Python Package for Neuro-AI:
@article{king2026neuralset,
title = {NeuralSet: A High-Performing Python Package for Neuro-AI},
author = {King, J-R. and Bel, C. and Evanson, L. and Gadonneix, J. and Houhamdi, S. and L{\'e}vy, J. and Raugel, J. and Santos Revilla, A. and Zhang, M. and Bonnaire, J. and Caucheteux, C. and D{\'e}fossez, A. and Desbordes, T. and Diego-Sim{\'o}n, P. and Khanna, S. and Millet, J. and Orhan, P. and Panchavati, S. and Ratouchniak, A. and Thual, A. and Brooks, T. and Begany, K. and Benchetrit, Y. and Careil, M. and Banville, H. and d'Ascoli, S. and Dahan, S. and Rapin, J.},
year = {2026},
url = {https://kingjr.github.io/files/neuralset.pdf},
note = {Preprint; URL will be updated when the paper lands on arXiv}
}
Third-Party Content
References to third-party content from other locations are subject to their own licenses and you may have other legal obligations or restrictions that govern your use of that content.
License
This project is licensed under the MIT License. See LICENSE for details.
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 neuralset-0.1.1.tar.gz.
File metadata
- Download URL: neuralset-0.1.1.tar.gz
- Upload date:
- Size: 206.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40e8a97f453abac7d97c56a90476280db5cf911afcef49005bb01f86729405e7
|
|
| MD5 |
aa428b51b42735deaf5c5b3f404036d6
|
|
| BLAKE2b-256 |
7b6e2f30be658b73da8104ade0b703ab8351cb69e059640fd9676faefbead835
|
File details
Details for the file neuralset-0.1.1-py3-none-any.whl.
File metadata
- Download URL: neuralset-0.1.1-py3-none-any.whl
- Upload date:
- Size: 239.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5eb0a0d29612e6d8e02237cabfb39538469fbcdbec4de63c70c7d186dc2e7847
|
|
| MD5 |
b2292970d89ba25c8927eaa252262ab4
|
|
| BLAKE2b-256 |
09ef4651aa287699b4bf0c0ed698de028b1b2c749879b7f34fc776d321389ef4
|