Datasets:

bruAristimunha commited on
Commit
8a579db
·
verified ·
1 Parent(s): 5dbae5a

Metadata stub for nm000108

Browse files
Files changed (2) hide show
  1. README.md +79 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "HySER: High-Density Surface Electromyogram Recordings"
3
+ license: other
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ size_categories:
11
+ - 1K<n<10K
12
+ task_categories:
13
+ - other
14
+ ---
15
+
16
+ # HySER: High-Density Surface Electromyogram Recordings
17
+
18
+ **Dataset ID:** `nm000108`
19
+
20
+ _Jiang2021_
21
+
22
+ **Canonical aliases:** `HySER` · `Hyser`
23
+
24
+ > **At a glance:** EMG · 20 subjects · 1514 recordings · ODC-By-1.0
25
+
26
+ ## Load this dataset
27
+
28
+ This repo is a **pointer**. The raw EEG data lives at its canonical source
29
+ (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
30
+ on demand and returns a PyTorch / braindecode dataset.
31
+
32
+ ```python
33
+ # pip install eegdash
34
+ from eegdash import EEGDashDataset
35
+
36
+ ds = EEGDashDataset(dataset="nm000108", cache_dir="./cache")
37
+ print(len(ds), "recordings")
38
+ ```
39
+
40
+ You can also load it by canonical alias — these are registered classes in `eegdash.dataset`:
41
+
42
+ ```python
43
+ from eegdash.dataset import HySER
44
+ ds = HySER(cache_dir="./cache")
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/nm000108")
53
+ ```
54
+
55
+
56
+ ## Dataset metadata
57
+
58
+ | | |
59
+ |---|---|
60
+ | **Subjects** | 20 |
61
+ | **Recordings** | 1514 |
62
+ | **Tasks (count)** | 38 |
63
+ | **Channels** | 256 (×1514) |
64
+ | **Size on disk** | 108.2 GB |
65
+ | **Recording type** | EMG |
66
+ | **Source** | nemar |
67
+ | **License** | ODC-By-1.0 |
68
+
69
+ ## Links
70
+
71
+ - **DOI:** [10.82901/nemar.nm000108](https://doi.org/10.82901/nemar.nm000108)
72
+ - **NEMAR:** [nm000108](https://nemar.org/dataexplorer/detail?dataset_id=nm000108)
73
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
74
+ - **Docs:** <https://eegdash.org>
75
+ - **Code:** <https://github.com/eegdash/EEGDash>
76
+
77
+ ---
78
+
79
+ _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/nm000108). 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": "nm000108",
3
+ "title": "HySER: High-Density Surface Electromyogram Recordings",
4
+ "source": "nemar",
5
+ "source_url": "https://openneuro.org/datasets/nm000108",
6
+ "doi": "10.82901/nemar.nm000108",
7
+ "license": "ODC-By-1.0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "nm000108"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }