Datasets:

bruAristimunha commited on
Commit
8c06a5c
·
verified ·
1 Parent(s): c0dc6d0

Metadata stub for ds004902

Browse files
Files changed (2) hide show
  1. README.md +135 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "A Resting-state EEG Dataset for Sleep Deprivation"
3
+ license: cc0-1.0
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - resting-state
11
+ - eyesclosed
12
+ - eyesopen
13
+ size_categories:
14
+ - n<1K
15
+ task_categories:
16
+ - other
17
+ authors:
18
+ - "Chuqin Xiang"
19
+ - "Xinrui Fan"
20
+ - "Duo Bai"
21
+ - "Ke Lv"
22
+ - "Xu Lei"
23
+ ---
24
+
25
+ # A Resting-state EEG Dataset for Sleep Deprivation
26
+
27
+ **Dataset ID:** `ds004902`
28
+
29
+ _Xiang2023_
30
+
31
+ > **At a glance:** EEG · Resting State resting state · healthy · 71 subjects · 218 recordings · CC0
32
+
33
+ ## Load this dataset
34
+
35
+ This repo is a **pointer**. The raw EEG data lives at its canonical source
36
+ (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
37
+ on demand and returns a PyTorch / braindecode dataset.
38
+
39
+ ```python
40
+ # pip install eegdash
41
+ from eegdash import EEGDashDataset
42
+
43
+ ds = EEGDashDataset(dataset="ds004902", cache_dir="./cache")
44
+ print(len(ds), "recordings")
45
+ ```
46
+
47
+ If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
48
+ you can also pull it directly:
49
+
50
+ ```python
51
+ from braindecode.datasets import BaseConcatDataset
52
+ ds = BaseConcatDataset.pull_from_hub("EEGDash/ds004902")
53
+ ```
54
+
55
+
56
+ ## Dataset metadata
57
+
58
+ | | |
59
+ |---|---|
60
+ | **Subjects** | 71 |
61
+ | **Age range** | 17–23 yrs, mean 20.0 |
62
+ | **Recordings** | 218 |
63
+ | **Tasks (count)** | 2 |
64
+ | **Sessions** | 2 |
65
+ | **Channels** | 61 (×218) |
66
+ | **Sampling rate (Hz)** | 500 (×215), 5000 (×3) |
67
+ | **Total duration (h)** | 18.1 |
68
+ | **Size on disk** | 8.3 GB |
69
+ | **Recording type** | EEG |
70
+ | **Experimental modality** | Resting State |
71
+ | **Paradigm type** | Resting state |
72
+ | **Population** | Healthy |
73
+ | **BIDS version** | 1.8.0 |
74
+ | **Source** | openneuro |
75
+ | **License** | CC0 |
76
+ | **NEMAR citations** | 3 |
77
+
78
+ ## Tasks
79
+
80
+ - `eyesclosed`
81
+ - `eyesopen`
82
+
83
+
84
+ ## Upstream README
85
+
86
+ _Verbatim from the dataset's authors — the canonical description._
87
+
88
+ # General information
89
+ The dataset provides resting-state EEG data (eyes open,partially eyes closed) from 71 participants who underwent two experiments involving normal sleep (NS---session1) and sleep deprivation(SD---session2) .The dataset also provides information on participants' sleepiness and mood states.
90
+ (Please note here Session 1 (NS) and Session 2 (SD) is not the time order, the time order is counterbalanced across participants and is listed in metadata.)
91
+ # Dataset
92
+ ## Presentation
93
+ The data collection was initiated in March 2019 and was terminated in December 2020. The detailed description of the dataset is currently under working by Chuqin Xiang,Xinrui Fan,Duo Bai,Ke Lv and Xu Lei, and will submit to Scientific Data for publication.
94
+ #### EEG acquisition
95
+ * EEG system (Brain Products GmbH, Steing- rabenstr, Germany, 61 electrodes)
96
+ * Sampling frequency: 500Hz
97
+ * Impedances were kept below 5k
98
+ ## Contact
99
+ * If you have any questions or comments, please contact:
100
+ * Xu Lei: xlei@swu.edu.cn
101
+ ## Article
102
+ Xiang, C., Fan, X., Bai, D. et al. A resting-state EEG dataset for sleep deprivation. Sci Data 11, 427 (2024). https://doi.org/10.1038/s41597-024-03268-2
103
+
104
+
105
+ ## People
106
+
107
+ ### Authors
108
+ - Chuqin Xiang
109
+ - Xinrui Fan
110
+ - Duo Bai
111
+ - Ke Lv
112
+ - Xu Lei _(senior)_
113
+
114
+ ### Contact
115
+ - Chuqin Xiang
116
+ - XINRUI FAN
117
+
118
+ ## Links
119
+
120
+ - **DOI:** [10.18112/openneuro.ds004902.v1.0.8](https://doi.org/10.18112/openneuro.ds004902.v1.0.8)
121
+ - **OpenNeuro:** [ds004902](https://openneuro.org/datasets/ds004902)
122
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
123
+ - **Docs:** <https://eegdash.org>
124
+ - **Code:** <https://github.com/eegdash/EEGDash>
125
+
126
+ ## Provenance
127
+
128
+ - **Backend:** `s3` — `s3://openneuro.org/ds004902`
129
+ - **Exact size:** 8,898,598,868 bytes (8.3 GB)
130
+ - **Ingested:** 2026-04-06
131
+ - **Stats computed:** 2026-04-04
132
+
133
+ ---
134
+
135
+ _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/ds004902). 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": "ds004902",
3
+ "title": "A Resting-state EEG Dataset for Sleep Deprivation",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds004902",
6
+ "doi": "10.18112/openneuro.ds004902.v1.0.8",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds004902"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }