| --- |
| pretty_name: "BNCI 2015-013 Error-Related Potentials dataset" |
| license: other |
| tags: |
| - eeg |
| - neuroscience |
| - eegdash |
| - brain-computer-interface |
| - pytorch |
| - visual |
| - attention |
| size_categories: |
| - n<1K |
| task_categories: |
| - other |
| --- |
| |
| # BNCI 2015-013 Error-Related Potentials dataset |
|
|
| **Dataset ID:** `nm000168` |
|
|
| _Chavarriaga2015_ |
|
|
| **Canonical aliases:** `Chavarriaga2010` |
|
|
| > **At a glance:** EEG · Visual attention · healthy · 6 subjects · 120 recordings · CC-BY-NC-ND-4.0 |
|
|
| ## Load this dataset |
|
|
| This repo is a **pointer**. The raw EEG data lives at its canonical source |
| (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it |
| on demand and returns a PyTorch / braindecode dataset. |
|
|
| ```python |
| # pip install eegdash |
| from eegdash import EEGDashDataset |
| |
| ds = EEGDashDataset(dataset="nm000168", cache_dir="./cache") |
| print(len(ds), "recordings") |
| ``` |
|
|
| You can also load it by canonical alias — these are registered classes in `eegdash.dataset`: |
|
|
| ```python |
| from eegdash.dataset import Chavarriaga2010 |
| ds = Chavarriaga2010(cache_dir="./cache") |
| ``` |
|
|
| If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout, |
| you can also pull it directly: |
|
|
| ```python |
| from braindecode.datasets import BaseConcatDataset |
| ds = BaseConcatDataset.pull_from_hub("EEGDash/nm000168") |
| ``` |
|
|
|
|
| ## Dataset metadata |
|
|
| | | | |
| |---|---| |
| | **Subjects** | 6 | |
| | **Recordings** | 120 | |
| | **Tasks (count)** | 1 | |
| | **Channels** | 64 (×120) | |
| | **Sampling rate (Hz)** | 512 (×120) | |
| | **Total duration (h)** | 6.1 | |
| | **Size on disk** | 2.0 GB | |
| | **Recording type** | EEG | |
| | **Experimental modality** | Visual | |
| | **Paradigm type** | Attention | |
| | **Population** | Healthy | |
| | **Source** | nemar | |
| | **License** | CC-BY-NC-ND-4.0 | |
|
|
| ## Links |
|
|
| - **NEMAR:** [nm000168](https://nemar.org/dataexplorer/detail?dataset_id=nm000168) |
| - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog) |
| - **Docs:** <https://eegdash.org> |
| - **Code:** <https://github.com/eegdash/EEGDash> |
|
|
| --- |
|
|
| _Auto-generated from [dataset_summary.csv](https://github.com/eegdash/EEGDash/blob/main/eegdash/dataset/dataset_summary.csv) and the [EEGDash API](https://data.eegdash.org/api/eegdash/datasets/summary/nm000168). Do not edit this file by hand — update the upstream source and re-run `scripts/push_metadata_stubs.py`._ |
|
|