Metadata stub for ds003688
Browse files- README.md +79 -0
- eegdash.json +17 -0
README.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "Open multimodal iEEG-fMRI dataset from naturalistic stimulation with a short audiovisual film"
|
| 3 |
+
license: cc0-1.0
|
| 4 |
+
tags:
|
| 5 |
+
- ieeg
|
| 6 |
+
- neuroscience
|
| 7 |
+
- eegdash
|
| 8 |
+
- brain-computer-interface
|
| 9 |
+
- pytorch
|
| 10 |
+
- multisensory
|
| 11 |
+
- perception
|
| 12 |
+
- epilepsy
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
+
task_categories:
|
| 16 |
+
- other
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Open multimodal iEEG-fMRI dataset from naturalistic stimulation with a short audiovisual film
|
| 20 |
+
|
| 21 |
+
**Dataset ID:** `ds003688`
|
| 22 |
+
|
| 23 |
+
_Berezutskaya2021_
|
| 24 |
+
|
| 25 |
+
> **At a glance:** IEEG · Multisensory perception · epilepsy · 51 subjects · 107 recordings · CC0
|
| 26 |
+
|
| 27 |
+
## Load this dataset
|
| 28 |
+
|
| 29 |
+
This repo is a **pointer**. The raw EEG data lives at its canonical source
|
| 30 |
+
(OpenNeuro / NEMAR); [EEGDash](https://github.com/eegdash/EEGDash) streams it
|
| 31 |
+
on demand and returns a PyTorch / braindecode dataset.
|
| 32 |
+
|
| 33 |
+
```python
|
| 34 |
+
# pip install eegdash
|
| 35 |
+
from eegdash import EEGDashDataset
|
| 36 |
+
|
| 37 |
+
ds = EEGDashDataset(dataset="ds003688", cache_dir="./cache")
|
| 38 |
+
print(len(ds), "recordings")
|
| 39 |
+
```
|
| 40 |
+
|
| 41 |
+
If the dataset has been mirrored to the HF Hub in braindecode's Zarr layout,
|
| 42 |
+
you can also pull it directly:
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from braindecode.datasets import BaseConcatDataset
|
| 46 |
+
ds = BaseConcatDataset.pull_from_hub("EEGDash/ds003688")
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
|
| 50 |
+
## Dataset metadata
|
| 51 |
+
|
| 52 |
+
| | |
|
| 53 |
+
|---|---|
|
| 54 |
+
| **Subjects** | 51 |
|
| 55 |
+
| **Recordings** | 107 |
|
| 56 |
+
| **Tasks (count)** | 2 |
|
| 57 |
+
| **Channels** | 74 (×6), 109 (×5), 62 (×5), 125 (×4), 85 (×4), 107 (×4), 88 (×4), 72 (×4), 67 (×3), 95 (×3), 115 (×3), 71 (×3), 111 (×3), 81 (×3), 118 (×3), 76 (×3), 84 (×3), 102 (×2), 87 (×2), 126 (×2), 80 (×2), 75 (×2), 86 (×2), 122 (×2), 116 (×2), 121 (×2), 112 (×2), 100 (×2), 54 (×2), 177 (×2), 64 (×2), 128 (×2), 89 (×2), 113 (×2), 110 (×2), 60 (×2), 97 (×1), 69 (×1), 65 (×1), 94 (×1), 91 (×1), 92 (×1) |
|
| 58 |
+
| **Sampling rate (Hz)** | 512 (×71), 2048 (×32), 2000 (×4) |
|
| 59 |
+
| **Total duration (h)** | 9.2 |
|
| 60 |
+
| **Size on disk** | 15.2 GB |
|
| 61 |
+
| **Recording type** | IEEG |
|
| 62 |
+
| **Experimental modality** | Multisensory |
|
| 63 |
+
| **Paradigm type** | Perception |
|
| 64 |
+
| **Population** | Epilepsy |
|
| 65 |
+
| **Source** | openneuro |
|
| 66 |
+
| **License** | CC0 |
|
| 67 |
+
| **NEMAR citations** | 9.0 |
|
| 68 |
+
|
| 69 |
+
## Links
|
| 70 |
+
|
| 71 |
+
- **DOI:** [10.18112/openneuro.ds003688.v1.0.7](https://doi.org/10.18112/openneuro.ds003688.v1.0.7)
|
| 72 |
+
- **OpenNeuro:** [ds003688](https://openneuro.org/datasets/ds003688)
|
| 73 |
+
- **Browse 700+ datasets:** [EEGDash catalog](https://huggingface.co/spaces/EEGDash/catalog)
|
| 74 |
+
- **Docs:** <https://eegdash.org>
|
| 75 |
+
- **Code:** <https://github.com/eegdash/EEGDash>
|
| 76 |
+
|
| 77 |
+
---
|
| 78 |
+
|
| 79 |
+
_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/ds003688). 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": "ds003688",
|
| 3 |
+
"title": "Open multimodal iEEG-fMRI dataset from naturalistic stimulation with a short audiovisual film",
|
| 4 |
+
"source": "openneuro",
|
| 5 |
+
"source_url": "https://openneuro.org/datasets/ds003688",
|
| 6 |
+
"doi": "10.18112/openneuro.ds003688.v1.0.7",
|
| 7 |
+
"license": "CC0",
|
| 8 |
+
"loader": {
|
| 9 |
+
"library": "eegdash",
|
| 10 |
+
"class": "EEGDashDataset",
|
| 11 |
+
"kwargs": {
|
| 12 |
+
"dataset": "ds003688"
|
| 13 |
+
}
|
| 14 |
+
},
|
| 15 |
+
"catalog": "https://huggingface.co/spaces/EEGDash/catalog",
|
| 16 |
+
"generated_by": "huggingface-space/scripts/push_metadata_stubs.py"
|
| 17 |
+
}
|