Datasets:

bruAristimunha commited on
Commit
aec72ac
·
verified ·
1 Parent(s): 69c5690

Metadata stub for ds005815

Browse files
Files changed (2) hide show
  1. README.md +81 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "A Human EEG
3
+ Dataset for Multisensory Perception and Mental
4
+ Imagery"
5
+ license: cc0-1.0
6
+ tags:
7
+ - eeg
8
+ - neuroscience
9
+ - eegdash
10
+ - brain-computer-interface
11
+ - pytorch
12
+ - multisensory
13
+ - perception
14
+ size_categories:
15
+ - n<1K
16
+ task_categories:
17
+ - other
18
+ ---
19
+
20
+ # A Human EEG
21
+ Dataset for Multisensory Perception and Mental
22
+ Imagery
23
+
24
+ **Dataset ID:** `ds005815`
25
+
26
+ _Chang2025_
27
+
28
+ > **At a glance:** EEG · Multisensory perception · healthy · 20 subjects · 103 recordings · CC0
29
+
30
+ ## Load this dataset
31
+
32
+ This repo is a **pointer**. The raw EEG data lives at its canonical source
33
+ (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
34
+ on demand and returns a PyTorch / braindecode dataset.
35
+
36
+ ```python
37
+ # pip install eegdash
38
+ from eegdash import EEGDashDataset
39
+
40
+ ds = EEGDashDataset(dataset="ds005815", cache_dir="./cache")
41
+ print(len(ds), "recordings")
42
+ ```
43
+
44
+ If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
45
+ you can also pull it directly:
46
+
47
+ ```python
48
+ from braindecode.datasets import BaseConcatDataset
49
+ ds = BaseConcatDataset.pull_from_hub("EEGDash/ds005815")
50
+ ```
51
+
52
+
53
+ ## Dataset metadata
54
+
55
+ | | |
56
+ |---|---|
57
+ | **Subjects** | 20 |
58
+ | **Recordings** | 103 |
59
+ | **Tasks (count)** | 3 |
60
+ | **Channels** | 31 (×103) |
61
+ | **Sampling rate (Hz)** | 1000 (×103) |
62
+ | **Total duration (h)** | 4.0 |
63
+ | **Size on disk** | 7.6 GB |
64
+ | **Recording type** | EEG |
65
+ | **Experimental modality** | Multisensory |
66
+ | **Paradigm type** | Perception |
67
+ | **Population** | Healthy |
68
+ | **Source** | openneuro |
69
+ | **License** | CC0 |
70
+
71
+ ## Links
72
+
73
+ - **DOI:** [10.18112/openneuro.ds005815.v2.0.1](https://doi.org/10.18112/openneuro.ds005815.v2.0.1)
74
+ - **OpenNeuro:** [ds005815](https://openneuro.org/datasets/ds005815)
75
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
76
+ - **Docs:** <https://eegdash.org>
77
+ - **Code:** <https://github.com/eegdash/EEGDash>
78
+
79
+ ---
80
+
81
+ _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/ds005815). 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": "ds005815",
3
+ "title": "A Human EEG\nDataset for Multisensory Perception and Mental\nImagery",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds005815",
6
+ "doi": "10.18112/openneuro.ds005815.v2.0.1",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds005815"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }