Datasets:

bruAristimunha commited on
Commit
74b2ad6
·
verified ·
1 Parent(s): 86ebb83

Metadata stub for nm000345

Browse files
Files changed (2) hide show
  1. README.md +77 -0
  2. eegdash.json +17 -0
README.md ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: "CastillosBurstVEP40"
3
+ license: cc-by-4.0
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - visual
11
+ - attention
12
+ size_categories:
13
+ - n<1K
14
+ task_categories:
15
+ - other
16
+ ---
17
+
18
+ # CastillosBurstVEP40
19
+
20
+ **Dataset ID:** `nm000345`
21
+
22
+ _Castillos2023_CastillosBurstVEP40_
23
+
24
+ > **At a glance:** EEG · Visual attention · healthy · 12 subjects · 12 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="nm000345", cache_dir="./cache")
37
+ print(len(ds), "recordings")
38
+ ```
39
+
40
+ If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
41
+ you can also pull it directly:
42
+
43
+ ```python
44
+ from braindecode.datasets import BaseConcatDataset
45
+ ds = BaseConcatDataset.pull_from_hub("EEGDash/nm000345")
46
+ ```
47
+
48
+
49
+ ## Dataset metadata
50
+
51
+ | | |
52
+ |---|---|
53
+ | **Subjects** | 12 |
54
+ | **Recordings** | 12 |
55
+ | **Tasks (count)** | 1 |
56
+ | **Channels** | 32 (×12) |
57
+ | **Sampling rate (Hz)** | 500 (×12) |
58
+ | **Total duration (h)** | 0.8 |
59
+ | **Size on disk** | 144.2 MB |
60
+ | **Recording type** | EEG |
61
+ | **Experimental modality** | Visual |
62
+ | **Paradigm type** | Attention |
63
+ | **Population** | Healthy |
64
+ | **Source** | nemar |
65
+ | **License** | CC-BY-4.0 |
66
+
67
+ ## Links
68
+
69
+ - **DOI:** [10.1016/j.neuroimage.2023.120446](https://doi.org/10.1016/j.neuroimage.2023.120446)
70
+ - **NEMAR:** [nm000345](https://nemar.org/dataexplorer/detail?dataset_id=nm000345)
71
+ - **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
72
+ - **Docs:** <https://eegdash.org>
73
+ - **Code:** <https://github.com/eegdash/EEGDash>
74
+
75
+ ---
76
+
77
+ _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/nm000345). 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": "nm000345",
3
+ "title": "CastillosBurstVEP40",
4
+ "source": "nemar",
5
+ "source_url": "https://openneuro.org/datasets/nm000345",
6
+ "doi": "10.1016/j.neuroimage.2023.120446",
7
+ "license": "CC-BY-4.0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "nm000345"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }