HBN_r9_bdf_mini: EEG dataset#
Dataset from OpenNeuro.
Citation: Unknown (—). **.
A EEG dataset distributed through EEGDash with standardized BIDS metadata..
Quickstart#
Install
pip install eegdash
Access the data
from eegdash.dataset import HBN_r9_bdf_mini
dataset = HBN_r9_bdf_mini(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)
Filter by subject
dataset = HBN_r9_bdf_mini(cache_dir="./data", subject="01")
Advanced query
dataset = HBN_r9_bdf_mini(
cache_dir="./data",
query={"subject": {"$in": ["01", "02"]}},
)
Iterate recordings
for rec in dataset:
print(rec.subject, rec.raw.info['sfreq'])
If you use this dataset in your research, please cite the original authors.
BibTeX
@dataset{hbn_r9_bdf_mini,
}
About This Dataset#
No README content is available for this dataset.
Cohort#
Signal · Electrodes & live trace#
No scalp electrode layout is currently indexed for this dataset. Once the eegdash montage registry ingests it, the interactive viewer will appear here automatically.
NEMAR Processing Statistics#
The plots below are generated by NEMAR’s automated EEG pipeline. The histogram shows pipeline success for data cleaning and ICA decomposition, the percentage of data frames and EEG channels retained after artefact removal, line noise per channel (RMS, dB), and the age/gender distribution of participants.
HED event descriptors word cloud
Manifest#
File Explorer#
Browse the BIDS file structure of this dataset. Records are fetched on demand from the EEGDash catalog the first time you open the explorer.
Full dataset metadata table
API Reference#
eegdash.datasetEEGDashDatasetHBN_R9_BDF_MINIeegdash/dataset/registry.py · [source ↗]- eegdash.dataset.HBN_r9_bdf_mini[source]#
alias of
EEG2025R9MINI
BaseDataset from braindecode — windowed via create_windows_from_events.braindecodeDataLoader; supports parallel workers and on-the-fly augmentations.pytorchSwap any load_dataset(...) call for hbn_r9_bdf_mini to reproduce the tutorial on this dataset.
Citation
Authors unspecified (n.d.). HBN_r9_bdf_mini.
Provenance
¹Contributed to OpenNeuro in BIDS format.
²Curated & ingested by the EEGDash catalog; see CITATION.cff for canonical reference.
Related & sibling datasets
No sibling datasets cross-linked for this modality yet.
See Also#
eegdash.dataset.EEGDashDataseteegdash.dataset