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
0
Edit dataset card