Datasets:

bruAristimunha commited on
Commit
a9cf2bf
·
verified ·
1 Parent(s): 0d5a890

Metadata stub for ds003505

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: "VEPCON: Source imaging of high-density visual evoked potentials with multi-scale brain parcellations and connectomes"
3
+ license: cc0-1.0
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ size_categories:
11
+ - n<1K
12
+ task_categories:
13
+ - other
14
+ ---
15
+
16
+ # VEPCON: Source imaging of high-density visual evoked potentials with multi-scale brain parcellations and connectomes
17
+
18
+ **Dataset ID:** `ds003505`
19
+
20
+ _Pascucci2021_
21
+
22
+ **Canonical aliases:** `VEPCON`
23
+
24
+ > **At a glance:** EEG · 19 subjects · 37 recordings · CC0
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="ds003505", 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 VEPCON
44
+ ds = VEPCON(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/ds003505")
53
+ ```
54
+
55
+
56
+ ## Dataset metadata
57
+
58
+ | | |
59
+ |---|---|
60
+ | **Subjects** | 19 |
61
+ | **Recordings** | 37 |
62
+ | **Tasks (count)** | 2 |
63
+ | **Channels** | 128 (×37) |
64
+ | **Sampling rate (Hz)** | 2048 (×37) |
65
+ | **Size on disk** | 29.0 GB |
66
+ | **Recording type** | EEG |
67
+ | **Source** | openneuro |
68
+ | **License** | CC0 |
69
+ | **NEMAR citations** | 5.0 |
70
+
71
+ ## Links
72
+
73
+ - **DOI:** [10.18112/openneuro.ds003505.v1.1.1](https://doi.org/10.18112/openneuro.ds003505.v1.1.1)
74
+ - **OpenNeuro:** [ds003505](https://openneuro.org/datasets/ds003505)
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/ds003505). 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": "ds003505",
3
+ "title": "VEPCON: Source imaging of high-density visual evoked potentials with multi-scale brain parcellations and connectomes",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds003505",
6
+ "doi": "10.18112/openneuro.ds003505.v1.1.1",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds003505"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }