Datasets:

bruAristimunha commited on
Commit
bddaedf
·
verified ·
1 Parent(s): 51784bb

Metadata stub for ds004625

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