File size: 1,476 Bytes
080a529 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
---
tags:
- braindecode
- eeg
- neuroscience
- brain-computer-interface
license: unknown
---
# EEG Dataset
This dataset was created using [braindecode](https://braindecode.org), a library for deep learning with EEG/MEG/ECoG signals.
## Dataset Information
- **Number of recordings**: 1
- **Number of channels**: 26
- **Sampling frequency**: 250.0 Hz
- **Data type**: Windowed (from Epochs object)
- **Number of windows**: 48
- **Total size**: 0.04 MB
- **Storage format**: zarr
## Usage
To load this dataset:
```python
from braindecode.datasets import BaseConcatDataset
# Load dataset from Hugging Face Hub
dataset = BaseConcatDataset.from_pretrained("username/dataset-name")
# Access data
X, y, metainfo = dataset[0]
# X: EEG data (n_channels, n_times)
# y: label/target
# metainfo: window indices
```
## Using with PyTorch DataLoader
```python
from torch.utils.data import DataLoader
# Create DataLoader for training
train_loader = DataLoader(
dataset,
batch_size=32,
shuffle=True,
num_workers=4
)
# Training loop
for X, y, _ in train_loader:
# X shape: [batch_size, n_channels, n_times]
# y shape: [batch_size]
# Process your batch...
```
## Dataset Format
This dataset is stored in **Zarr** format, optimized for:
- Fast random access during training (critical for PyTorch DataLoader)
- Efficient compression with blosc
- Cloud-native storage compatibility
For more information about braindecode, visit: https://braindecode.org
|