EEGdashOpenNeuroHBN_r5_bdf
Iss. 5 · — subjects · — recordings · See source
Dataset Brief · HBN_r5_bdf

HBN_r5_bdf: EEG dataset#

Dataset from OpenNeuro.

Citation: Unknown (—). **.

A EEG dataset distributed through EEGDash with standardized BIDS metadata..

Layer 01Study
What was asked
Hypothesis, independent & dependent variables, paradigm, cohort, and the editorial caveats around what the recordings can and cannot answer.
Layer 02Signal · BIDS
What was recorded
Sidecars, channels & electrodes, coordinate system, event semantics, and quality stats from the NEMAR pipeline when available.
Layer 03Training · ML
What you can train on
Recommended access modes — MNE Raw, braindecode windows, PyTorch DataLoader — plus the targets the metadata makes addressable.
§ 01Access · Get started

Quickstart#

Install

pip install eegdash

Access the data

from eegdash.dataset import HBN_r5_bdf

dataset = HBN_r5_bdf(cache_dir="./data")
# Get the raw object of the first recording
raw = dataset.datasets[0].raw
print(raw.info)

Filter by subject

dataset = HBN_r5_bdf(cache_dir="./data", subject="01")

Advanced query

dataset = HBN_r5_bdf(
    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_r5_bdf,
}
§ 02Study · The README

About This Dataset#

No README content is available for this dataset.

§ 03Cohort · Participants

Cohort#

§ 04Signal · Electrodes & trace

Signal · Electrodes & live trace#

Fig. 01 Signal & montage — ch · EEG · Varies · — subjects, — recordings

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 HED event descriptors word cloud — HBN_R5_BDF
§ 05Manifest · BIDS tree

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.

Recordings
Files
Subjects
Modalities
Click to load file structure…
Full dataset metadata table

Dataset ID

HBN_R5_BDF

Title

Author (year)

Canonical

Importable as

HBN_R5_BDF

Year

Authors

Unknown

License

Citation / DOI

Unknown

Source links

OpenNeuro | NeMAR

§ 06API · Programmatic access

API Reference#

Signature
eegdash.dataset
class
eegdash.dataset.HBN_r5_bdf(cache_dir, query=None, s3_bucket=None, **kwargs)
Bases: EEGDashDataset
Author (year)
Canonical
Importable asHBN_R5_BDF
Sourceeegdash/dataset/registry.py · [source ↗]
eegdash.dataset.HBN_r5_bdf[source]#

alias of EEG2025R5

Access modesMNE → braindecode → PyTorch → ML
.rawMNE Raw object — standard tools (filter, epoch, ICA, plot_psd).mne
DataLoaderWraps the windowed dataset into a PyTorch DataLoader; supports parallel workers and on-the-fly augmentations.pytorch
Zarr cacheOptional braindecode Zarr mirror for fast resume; persisted to cache_dir.zarr
Hugging FaceNo per-dataset mirror published yet — browse the EEGDash org listing for sibling datasets. See the datasets loader API.huggingface
Croissant 1.0Machine-readable JSON-LD descriptorHBN_r5_bdf.croissant.json (MLCommons schema, ingestible by PyTorch / TensorFlow / JAX).mlcommons
Examples using EEGDashcurated · start here

Swap any load_dataset(...) call for hbn_r5_bdf to reproduce the tutorial on this dataset.

Citation

Authors unspecified (n.d.). HBN_r5_bdf.

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.

BIDS
version not on file
Sidecars
not yet probed
Provenance
See source · DOI not on file
Machine-readable
Mirrors

See Also#