The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider
removing the
loading script
and relying on
automated data support
(you can use
convert_to_parquet
from the datasets
library). If this is not possible, please
open a discussion
for direct help.
This is a dataset for EEG signal denoising.
This dataset contains three different sub-datasets are EEGdenoiseNet EMG, EEGdenoiseNet EOG, and semi- simulated EOG dataset 2016. The files are structured as follows
eeg_denoise_dataset/
βββ README.md
βββ EEGDenoiseNet_EMG.tar.gz
βββ SS2016_EOG.tar.gz
βββ eeg_denoise_dataset.py
βββ EEGDenoiseNet_EOG.tar.gz
The *.tar.gz
holds different types of training data and test data
*.tar.gz/
βββ trian
βββ test
The file format in the zip file is as follows.
Usage.
- Method 1
Download the repository files to your local your_path
directory, and use the load_dataset
method to retrieve the corresponding training or testing dataset.
x from datasets import load_dataset
my_dataset_trian = load_dataset("{your_path}/eeg_denoise_dataset", "EEGDenoiseNet_EOG", split="train")
my_dataset_test = load_dataset("{your_path}/eeg_denoise_dataset", "EEGDenoiseNet_EOG", split="test")
- Method 2
If you just want to download one of the datasets and load it. You can download the compressed dataset you want to load into your local your_path
and decompress it.
Once unzipped, you can load the dataset from that path. An example of loading the EEGDenoiseNet_EMG
dataset is shown below.
from datasets import Dataset
my_dataset_trian = Dataset.load_from_disk("{your_path}/EEGDenoiseNet_EMG/train")
my_dataset_test = Dataset.load_from_disk("{your_path}/EEGDenoiseNet_EMG/test")
- Downloads last month
- 41