Datasets:

bruAristimunha commited on
Commit
ddff0f7
·
verified ·
1 Parent(s): ae85191

Metadata stub for ds004849

Browse files
Files changed (2) hide show
  1. README.md +125 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,125 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "STRONG"
3
+ license: cc0-1.0
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - unknown
11
+ - memory
12
+ - nback
13
+ size_categories:
14
+ - n<1K
15
+ task_categories:
16
+ - other
17
+ authors:
18
+ - "Tony Johnson"
19
+ - "Stephen Gordon"
20
+ - "Jon Touryan"
21
+ - "Kevin King"
22
+ ---
23
+
24
+ # STRONG
25
+
26
+ **Dataset ID:** `ds004849`
27
+
28
+ _Johnson2023_STRONG_
29
+
30
+ **Canonical aliases:** `STRONG`
31
+
32
+ > **At a glance:** EEG · Unknown memory · unknown · 1 subjects · 1 recordings · CC0
33
+
34
+ ## Load this dataset
35
+
36
+ This repo is a **pointer**. The raw EEG data lives at its canonical source
37
+ (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
38
+ on demand and returns a PyTorch / braindecode dataset.
39
+
40
+ ```python
41
+ # pip install eegdash
42
+ from eegdash import EEGDashDataset
43
+
44
+ ds = EEGDashDataset(dataset="ds004849", cache_dir="./cache")
45
+ print(len(ds), "recordings")
46
+ ```
47
+
48
+ You can also load it by canonical alias — these are registered classes in `eegdash.dataset`:
49
+
50
+ ```python
51
+ from eegdash.dataset import STRONG
52
+ ds = STRONG(cache_dir="./cache")
53
+ ```
54
+
55
+ If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
56
+ you can also pull it directly:
57
+
58
+ ```python
59
+ from braindecode.datasets import BaseConcatDataset
60
+ ds = BaseConcatDataset.pull_from_hub("EEGDash/ds004849")
61
+ ```
62
+
63
+
64
+ ## Dataset metadata
65
+
66
+ | | |
67
+ |---|---|
68
+ | **Subjects** | 1 |
69
+ | **Recordings** | 1 |
70
+ | **Tasks (count)** | 1 |
71
+ | **Channels** | 64 (×1) |
72
+ | **Sampling rate (Hz)** | 128 (×1) |
73
+ | **Total duration (h)** | 0.5 |
74
+ | **Size on disk** | 79.2 MB |
75
+ | **Recording type** | EEG |
76
+ | **Experimental modality** | Unknown |
77
+ | **Paradigm type** | Memory |
78
+ | **Population** | Unknown |
79
+ | **BIDS version** | 1.8.0 |
80
+ | **Source** | openneuro |
81
+ | **License** | CC0 |
82
+ | **NEMAR citations** | 0 |
83
+
84
+ ## Tasks
85
+
86
+ - `nback`
87
+
88
+
89
+ ## Upstream README
90
+
91
+ _Verbatim from the dataset's authors — the canonical description._
92
+
93
+ STRONG dataset
94
+ This is a placeholder dataset.
95
+
96
+
97
+ ## People
98
+
99
+ ### Authors
100
+ - Tony Johnson
101
+ - Stephen Gordon
102
+ - Jon Touryan
103
+ - Kevin King _(senior)_
104
+
105
+ ### Contact
106
+ - Kevin King
107
+
108
+ ## Links
109
+
110
+ - **DOI:** [10.18112/openneuro.ds004849.v1.0.0](https://doi.org/10.18112/openneuro.ds004849.v1.0.0)
111
+ - **OpenNeuro:** [ds004849](https://openneuro.org/datasets/ds004849)
112
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
113
+ - **Docs:** <https://eegdash.org>
114
+ - **Code:** <https://github.com/eegdash/EEGDash>
115
+
116
+ ## Provenance
117
+
118
+ - **Backend:** `s3` — `s3://openneuro.org/ds004849`
119
+ - **Exact size:** 83,056,636 bytes (79.2 MB)
120
+ - **Ingested:** 2026-04-06
121
+ - **Stats computed:** 2026-04-04
122
+
123
+ ---
124
+
125
+ _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/ds004849). 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": "ds004849",
3
+ "title": "STRONG",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds004849",
6
+ "doi": "10.18112/openneuro.ds004849.v1.0.0",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds004849"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }