EEGUnity is a Python package designed for processing and analyzing large-scale EEG data
efficiently. This guide will walk you through the Usage on Windows, macOS, and Linux.
For more details on the motivation, concepts, and vision behind this project, please refer to the paper EEGUnity: Open-Source Tool in Facilitating Unified EEG Datasets Towards Large-Scale EEG Model
(Notes: This repository is planned for release on PyPI and the Conda community once a stable version is achieved.)
- Python 3.x
- Git
- See requirements.txt
First, clone the repository using Git:
git clone https://github.com/Baizhige/EEGUnity/.git
To use EEGUnity in your Python project, you will need to copy the eegunity
folder to your project directory:
-
Copy the
eegunity
folder from the cloned repository to your Python project's folder:- Copy
EEGUnity\eegunity
into your project's directory.
- Copy
EEGUnity/eegunity
into your project's directory.
- Copy
-
Your project structure should resemble the following:
my_project/
│
├── eegunity/
│ └── __init__.py
└── your_script.py
-
Import the package in your Python project like this:
from eegunity.unifieddataset import UnifiedDataset
- How to Format Channel Name and Inspect Channel Data: Click here to view the tutorial
- How to Process Data and Export as h5Dataset: Click here to view the tutorial
- How to Read h5Dataset: Click here to view the tutorial
You can view the project manual through the following link: Click here to view the manual