Datasets:

bruAristimunha commited on
Commit
49955c3
·
verified ·
1 Parent(s): df790ba

Metadata stub for eeg2025r4mini

Browse files
Files changed (2) hide show
  1. README.md +86 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "Healthy Brain Network (HBN) EEG - Release 4 (BDF Converted)"
3
+ license: cc-by-sa-4.0
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - visual
11
+ - clinical-intervention
12
+ - development
13
+ size_categories:
14
+ - n<1K
15
+ task_categories:
16
+ - other
17
+ ---
18
+
19
+ # Healthy Brain Network (HBN) EEG - Release 4 (BDF Converted)
20
+
21
+ **Dataset ID:** `eeg2025r4mini`
22
+
23
+ _Shirazi2024_R4_bdf_mini_
24
+
25
+ **Canonical aliases:** `HBN_r4_bdf_mini`
26
+
27
+ > **At a glance:** EEG · Visual clinical/intervention · development · 20 subjects · 240 recordings · CC-BY-SA 4.0
28
+
29
+ ## Load this dataset
30
+
31
+ This repo is a **pointer**. The raw EEG data lives at its canonical source
32
+ (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
33
+ on demand and returns a PyTorch / braindecode dataset.
34
+
35
+ ```python
36
+ # pip install eegdash
37
+ from eegdash import EEGDashDataset
38
+
39
+ ds = EEGDashDataset(dataset="eeg2025r4mini", cache_dir="./cache")
40
+ print(len(ds), "recordings")
41
+ ```
42
+
43
+ You can also load it by canonical alias — these are registered classes in `eegdash.dataset`:
44
+
45
+ ```python
46
+ from eegdash.dataset import HBN_r4_bdf_mini
47
+ ds = HBN_r4_bdf_mini(cache_dir="./cache")
48
+ ```
49
+
50
+ If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
51
+ you can also pull it directly:
52
+
53
+ ```python
54
+ from braindecode.datasets import BaseConcatDataset
55
+ ds = BaseConcatDataset.pull_from_hub("EEGDash/eeg2025r4mini")
56
+ ```
57
+
58
+
59
+ ## Dataset metadata
60
+
61
+ | | |
62
+ |---|---|
63
+ | **Subjects** | 20 |
64
+ | **Recordings** | 240 |
65
+ | **Tasks (count)** | 10 |
66
+ | **Channels** | 129 (×240) |
67
+ | **Sampling rate (Hz)** | 100 (×240) |
68
+ | **Size on disk** | 3.3 GB |
69
+ | **Recording type** | EEG |
70
+ | **Experimental modality** | Visual |
71
+ | **Paradigm type** | Clinical/Intervention |
72
+ | **Population** | Development |
73
+ | **Source** | nemar |
74
+ | **License** | CC-BY-SA 4.0 |
75
+
76
+ ## Links
77
+
78
+ - **DOI:** [10.18112/openneuro.ds005508.v1.0.1](https://doi.org/10.18112/openneuro.ds005508.v1.0.1)
79
+ - **NEMAR:** [eeg2025r4mini](https://nemar.org/dataexplorer/detail?dataset_id=eeg2025r4mini)
80
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
81
+ - **Docs:** <https://eegdash.org>
82
+ - **Code:** <https://github.com/eegdash/EEGDash>
83
+
84
+ ---
85
+
86
+ _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/eeg2025r4mini). Do not edit this file by hand — update the upstream source and re-run `scripts/push_metadata_stubs.py`._
eegdash.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "dataset_id": "eeg2025r4mini",
3
+ "title": "Healthy Brain Network (HBN) EEG - Release 4 (BDF Converted)",
4
+ "source": "nemar",
5
+ "source_url": "https://openneuro.org/datasets/eeg2025r4mini",
6
+ "doi": "10.18112/openneuro.ds005508.v1.0.1",
7
+ "license": "CC-BY-SA 4.0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "eeg2025r4mini"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }