Datasets:

bruAristimunha commited on
Commit
6188180
·
verified ·
1 Parent(s): 4fdae14

Metadata stub for nm000338

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: "Lee2019-MI"
3
+ license: other
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - visual
11
+ - motor
12
+ size_categories:
13
+ - n<1K
14
+ task_categories:
15
+ - other
16
+ ---
17
+
18
+ # Lee2019-MI
19
+
20
+ **Dataset ID:** `nm000338`
21
+
22
+ _Lee2019_MI_
23
+
24
+ **Canonical aliases:** `OpenBMI_MI`
25
+
26
+ > **At a glance:** EEG · Visual motor · healthy · 54 subjects · 216 recordings · GPL-3.0
27
+
28
+ ## Load this dataset
29
+
30
+ This repo is a **pointer**. The raw EEG data lives at its canonical source
31
+ (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
32
+ on demand and returns a PyTorch / braindecode dataset.
33
+
34
+ ```python
35
+ # pip install eegdash
36
+ from eegdash import EEGDashDataset
37
+
38
+ ds = EEGDashDataset(dataset="nm000338", cache_dir="./cache")
39
+ print(len(ds), "recordings")
40
+ ```
41
+
42
+ You can also load it by canonical alias — these are registered classes in `eegdash.dataset`:
43
+
44
+ ```python
45
+ from eegdash.dataset import OpenBMI_MI
46
+ ds = OpenBMI_MI(cache_dir="./cache")
47
+ ```
48
+
49
+ If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
50
+ you can also pull it directly:
51
+
52
+ ```python
53
+ from braindecode.datasets import BaseConcatDataset
54
+ ds = BaseConcatDataset.pull_from_hub("EEGDash/nm000338")
55
+ ```
56
+
57
+
58
+ ## Dataset metadata
59
+
60
+ | | |
61
+ |---|---|
62
+ | **Subjects** | 54 |
63
+ | **Recordings** | 216 |
64
+ | **Tasks (count)** | 1 |
65
+ | **Channels** | 66 (×216) |
66
+ | **Sampling rate (Hz)** | 1000 (×216) |
67
+ | **Total duration (h)** | 91.5 |
68
+ | **Size on disk** | 60.8 GB |
69
+ | **Recording type** | EEG |
70
+ | **Experimental modality** | Visual |
71
+ | **Paradigm type** | Motor |
72
+ | **Population** | Healthy |
73
+ | **Source** | nemar |
74
+ | **License** | GPL-3.0 |
75
+
76
+ ## Links
77
+
78
+ - **DOI:** [10.1093/gigascience/giz002](https://doi.org/10.1093/gigascience/giz002)
79
+ - **NEMAR:** [nm000338](https://nemar.org/dataexplorer/detail?dataset_id=nm000338)
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/nm000338). 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": "nm000338",
3
+ "title": "Lee2019-MI",
4
+ "source": "nemar",
5
+ "source_url": "https://openneuro.org/datasets/nm000338",
6
+ "doi": "10.1093/gigascience/giz002",
7
+ "license": "GPL-3.0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "nm000338"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }