Datasets:

bruAristimunha commited on
Commit
3f2c168
·
verified ·
1 Parent(s): a0db586

Metadata stub for ds004100

Browse files
Files changed (2) hide show
  1. README.md +88 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "HUP iEEG Epilepsy Dataset"
3
+ license: cc0-1.0
4
+ tags:
5
+ - ieeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - other
11
+ - clinical-intervention
12
+ - epilepsy
13
+ size_categories:
14
+ - n<1K
15
+ task_categories:
16
+ - other
17
+ ---
18
+
19
+ # HUP iEEG Epilepsy Dataset
20
+
21
+ **Dataset ID:** `ds004100`
22
+
23
+ _Bernabei2022_
24
+
25
+ **Canonical aliases:** `HUPiEEG`
26
+
27
+ > **At a glance:** IEEG · Other clinical/intervention · epilepsy · 57 subjects · 319 recordings · CC0
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="ds004100", 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 HUPiEEG
47
+ ds = HUPiEEG(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/ds004100")
56
+ ```
57
+
58
+
59
+ ## Dataset metadata
60
+
61
+ | | |
62
+ |---|---|
63
+ | **Subjects** | 57 |
64
+ | **Recordings** | 319 |
65
+ | **Tasks (count)** | 2 |
66
+ | **Channels** | 122 (×21), 128 (×18), 118 (×17), 172 (×15), 126 (×14), 104 (×13), 82 (×12), 127 (×12), 180 (×12), 96 (×12), 92 (×7), 80 (×7), 190 (×7), 108 (×7), 74 (×7), 121 (×7), 136 (×7), 109 (×7), 117 (×7), 102 (×7), 174 (×7), 149 (×7), 120 (×7), 163 (×6), 98 (×6), 63 (×5), 186 (×5), 162 (×5), 100 (×5), 164 (×5), 88 (×5), 59 (×5), 116 (×5), 52 (×5), 71 (×5), 105 (×4), 90 (×4), 61 (×4), 85 (×3), 94 (×2), 192 (×2), 232 (×1) |
67
+ | **Sampling rate (Hz)** | 512 (×165), 1024 (×78), 500 (×69), 256 (×7) |
68
+ | **Total duration (h)** | 25.7 |
69
+ | **Size on disk** | 13.2 GB |
70
+ | **Recording type** | IEEG |
71
+ | **Experimental modality** | Other |
72
+ | **Paradigm type** | Clinical/Intervention |
73
+ | **Population** | Epilepsy |
74
+ | **Source** | openneuro |
75
+ | **License** | CC0 |
76
+ | **NEMAR citations** | 21.0 |
77
+
78
+ ## Links
79
+
80
+ - **DOI:** [10.18112/openneuro.ds004100.v1.1.3](https://doi.org/10.18112/openneuro.ds004100.v1.1.3)
81
+ - **OpenNeuro:** [ds004100](https://openneuro.org/datasets/ds004100)
82
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
83
+ - **Docs:** <https://eegdash.org>
84
+ - **Code:** <https://github.com/eegdash/EEGDash>
85
+
86
+ ---
87
+
88
+ _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/ds004100). 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": "ds004100",
3
+ "title": "HUP iEEG Epilepsy Dataset",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds004100",
6
+ "doi": "10.18112/openneuro.ds004100.v1.1.3",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds004100"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }