Datasets:

bruAristimunha commited on
Commit
2ec0bfa
·
verified ·
1 Parent(s): 0186cbc

Metadata stub for ds005274

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: "UV_EEG"
3
+ license: cc0-1.0
4
+ tags:
5
+ - eeg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - unknown
11
+ size_categories:
12
+ - n<1K
13
+ task_categories:
14
+ - other
15
+ ---
16
+
17
+ # UV_EEG
18
+
19
+ **Dataset ID:** `ds005274`
20
+
21
+ _Ito2024_
22
+
23
+ > **At a glance:** EEG · Unknown unknown · healthy · 22 subjects · 22 recordings · CC0
24
+
25
+ ## Load this dataset
26
+
27
+ This repo is a **pointer**. The raw EEG data lives at its canonical source
28
+ (OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
29
+ on demand and returns a PyTorch / braindecode dataset.
30
+
31
+ ```python
32
+ # pip install eegdash
33
+ from eegdash import EEGDashDataset
34
+
35
+ ds = EEGDashDataset(dataset="ds005274", cache_dir="./cache")
36
+ print(len(ds), "recordings")
37
+ ```
38
+
39
+ If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
40
+ you can also pull it directly:
41
+
42
+ ```python
43
+ from braindecode.datasets import BaseConcatDataset
44
+ ds = BaseConcatDataset.pull_from_hub("EEGDash/ds005274")
45
+ ```
46
+
47
+
48
+ ## Dataset metadata
49
+
50
+ | | |
51
+ |---|---|
52
+ | **Subjects** | 22 |
53
+ | **Recordings** | 22 |
54
+ | **Tasks (count)** | 1 |
55
+ | **Channels** | 6 (×22) |
56
+ | **Sampling rate (Hz)** | 500 (×22) |
57
+ | **Total duration (h)** | 1.7 |
58
+ | **Size on disk** | 71.9 MB |
59
+ | **Recording type** | EEG |
60
+ | **Experimental modality** | Unknown |
61
+ | **Paradigm type** | Unknown |
62
+ | **Population** | Healthy |
63
+ | **Source** | openneuro |
64
+ | **License** | CC0 |
65
+ | **NEMAR citations** | 0.0 |
66
+
67
+ ## Links
68
+
69
+ - **DOI:** [10.18112/openneuro.ds005274.v1.0.0](https://doi.org/10.18112/openneuro.ds005274.v1.0.0)
70
+ - **OpenNeuro:** [ds005274](https://openneuro.org/datasets/ds005274)
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/ds005274). 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": "ds005274",
3
+ "title": "UV_EEG",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds005274",
6
+ "doi": "10.18112/openneuro.ds005274.v1.0.0",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds005274"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }