Datasets:

bruAristimunha commited on
Commit
87beafa
·
verified ·
1 Parent(s): 415dc83

Metadata stub for nm000253

Browse files
Files changed (2) hide show
  1. README.md +81 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "Wang et al. 2024 — Brain Treebank: Large-scale intracranial recordings from naturalistic language stimuli"
3
+ license: cc-by-4.0
4
+ tags:
5
+ - ieeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ size_categories:
11
+ - n<1K
12
+ task_categories:
13
+ - other
14
+ ---
15
+
16
+ # Wang et al. 2024 — Brain Treebank: Large-scale intracranial recordings from naturalistic language stimuli
17
+
18
+ **Dataset ID:** `nm000253`
19
+
20
+ _Wang2024_et_al_Brain_
21
+
22
+ **Canonical aliases:** `BrainTreeBank`
23
+
24
+ > **At a glance:** IEEG · 10 subjects · 26 recordings · CC BY 4.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="nm000253", 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 BrainTreeBank
44
+ ds = BrainTreeBank(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/nm000253")
53
+ ```
54
+
55
+
56
+ ## Dataset metadata
57
+
58
+ | | |
59
+ |---|---|
60
+ | **Subjects** | 10 |
61
+ | **Recordings** | 26 |
62
+ | **Tasks (count)** | 1 |
63
+ | **Channels** | 164 (×8), 156 (×3), 166 (×3), 190 (×3), 136 (×3), 248 (×2), 218 (×2), 108 (×1), 158 (×1) |
64
+ | **Sampling rate (Hz)** | 2048 (×26) |
65
+ | **Total duration (h)** | 1.8 |
66
+ | **Size on disk** | 257.3 GB |
67
+ | **Recording type** | IEEG |
68
+ | **Source** | nemar |
69
+ | **License** | CC BY 4.0 |
70
+
71
+ ## Links
72
+
73
+ - **DOI:** [10.48550/arXiv.2411.08343](https://doi.org/10.48550/arXiv.2411.08343)
74
+ - **NEMAR:** [nm000253](https://nemar.org/dataexplorer/detail?dataset_id=nm000253)
75
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
76
+ - **Docs:** <https://eegdash.org>
77
+ - **Code:** <https://github.com/eegdash/EEGDash>
78
+
79
+ ---
80
+
81
+ _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/nm000253). 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": "nm000253",
3
+ "title": "Wang et al. 2024 — Brain Treebank: Large-scale intracranial recordings from naturalistic language stimuli",
4
+ "source": "nemar",
5
+ "source_url": "https://openneuro.org/datasets/nm000253",
6
+ "doi": "10.48550/arXiv.2411.08343",
7
+ "license": "CC BY 4.0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "nm000253"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }