Datasets:

bruAristimunha commited on
Commit
145a75e
·
verified ·
1 Parent(s): ad7080c

Metadata stub for ds005491

Browse files
Files changed (2) hide show
  1. README.md +87 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "Categorized Free Recall with Open-Loop Stimulation at Encoding"
3
+ license: cc0-1.0
4
+ tags:
5
+ - ieeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - visual
11
+ - clinical-intervention
12
+ size_categories:
13
+ - n<1K
14
+ task_categories:
15
+ - other
16
+ ---
17
+
18
+ # Categorized Free Recall with Open-Loop Stimulation at Encoding
19
+
20
+ **Dataset ID:** `ds005491`
21
+
22
+ _Herrema2024_Categorized_
23
+
24
+ **Canonical aliases:** `catFR_open_loop` · `RAM_catFR` · `catFR_stim`
25
+
26
+ > **At a glance:** IEEG · Visual clinical/intervention · unknown · 19 subjects · 51 recordings · CC0
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="ds005491", 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 catFR_open_loop
46
+ ds = catFR_open_loop(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/ds005491")
55
+ ```
56
+
57
+
58
+ ## Dataset metadata
59
+
60
+ | | |
61
+ |---|---|
62
+ | **Subjects** | 19 |
63
+ | **Recordings** | 51 |
64
+ | **Tasks (count)** | 1 |
65
+ | **Channels** | 64 (×5), 126 (×5), 88 (×4), 85 (×3), 93 (×3), 113 (×2), 163 (×2), 104 (×2), 155 (×2), 133 (×2), 116 (×2), 119 (×1), 72 (×1), 68 (×1), 92 (×1), 96 (×1), 127 (×1), 177 (×1), 146 (×1), 78 (×1), 128 (×1), 124 (×1), 110 (×1), 70 (×1), 80 (×1), 14 (×1), 115 (×1), 130 (×1), 112 (×1), 16 (×1) |
66
+ | **Sampling rate (Hz)** | 500 (×39), 1600 (×6), 999 (×4), 1000 (×2) |
67
+ | **Total duration (h)** | 46.7 |
68
+ | **Size on disk** | 22.5 GB |
69
+ | **Recording type** | IEEG |
70
+ | **Experimental modality** | Visual |
71
+ | **Paradigm type** | Clinical/Intervention |
72
+ | **Population** | Unknown |
73
+ | **Source** | openneuro |
74
+ | **License** | CC0 |
75
+ | **NEMAR citations** | 0.0 |
76
+
77
+ ## Links
78
+
79
+ - **DOI:** [10.18112/openneuro.ds005491.v1.0.0](https://doi.org/10.18112/openneuro.ds005491.v1.0.0)
80
+ - **OpenNeuro:** [ds005491](https://openneuro.org/datasets/ds005491)
81
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
82
+ - **Docs:** <https://eegdash.org>
83
+ - **Code:** <https://github.com/eegdash/EEGDash>
84
+
85
+ ---
86
+
87
+ _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/ds005491). 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": "ds005491",
3
+ "title": "Categorized Free Recall with Open-Loop Stimulation at Encoding",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds005491",
6
+ "doi": "10.18112/openneuro.ds005491.v1.0.0",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds005491"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }