Datasets:

bruAristimunha commited on
Commit
de64fce
·
verified ·
1 Parent(s): a35c6d0

Metadata stub for ds002885

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: "DBS Phantom Recordings"
3
+ license: cc0-1.0
4
+ tags:
5
+ - meg
6
+ - neuroscience
7
+ - eegdash
8
+ - brain-computer-interface
9
+ - pytorch
10
+ - other
11
+ size_categories:
12
+ - n<1K
13
+ task_categories:
14
+ - other
15
+ ---
16
+
17
+ # DBS Phantom Recordings
18
+
19
+ **Dataset ID:** `ds002885`
20
+
21
+ _Kandemir2020_
22
+
23
+ > **At a glance:** MEG · Other other · other · 2 subjects · 7 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="ds002885", 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/ds002885")
45
+ ```
46
+
47
+
48
+ ## Dataset metadata
49
+
50
+ | | |
51
+ |---|---|
52
+ | **Subjects** | 2 |
53
+ | **Recordings** | 7 |
54
+ | **Tasks (count)** | 4 |
55
+ | **Channels** | 306 (×4), 314 (×3) |
56
+ | **Sampling rate (Hz)** | 19200 (×4), 3000 (×3) |
57
+ | **Total duration (h)** | 0.4 |
58
+ | **Size on disk** | 20.1 GB |
59
+ | **Recording type** | MEG |
60
+ | **Experimental modality** | Other |
61
+ | **Paradigm type** | Other |
62
+ | **Population** | Other |
63
+ | **Source** | openneuro |
64
+ | **License** | CC0 |
65
+ | **NEMAR citations** | 1.0 |
66
+
67
+ ## Links
68
+
69
+ - **DOI:** [10.18112/openneuro.ds002885.v1.0.1](https://doi.org/10.18112/openneuro.ds002885.v1.0.1)
70
+ - **OpenNeuro:** [ds002885](https://openneuro.org/datasets/ds002885)
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/ds002885). 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": "ds002885",
3
+ "title": "DBS Phantom Recordings",
4
+ "source": "openneuro",
5
+ "source_url": "https://openneuro.org/datasets/ds002885",
6
+ "doi": "10.18112/openneuro.ds002885.v1.0.1",
7
+ "license": "CC0",
8
+ "loader": {
9
+ "library": "eegdash",
10
+ "class": "EEGDashDataset",
11
+ "kwargs": {
12
+ "dataset": "ds002885"
13
+ }
14
+ },
15
+ "catalog": "https://huggingface.co/spaces/EEGDash/catalog",
16
+ "generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
17
+ }