A powerful Python toolbox for correcting EEG artifacts in simultaneous EEG-fMRI recordings using Averaged Artifact Subtraction (AAS).
- Import EEG data from various formats including BIDS and EDF
- Advanced artifact detection and correction using AAS
- Comprehensive evaluation framework
- Flexible processing pipeline
- Built on top of MNE-Python
Full documentation is available at https://facetpy.readthedocs.io/
We recommend using Poetry 1.4+ for installation:
# Install Poetry if needed
conda install -c conda-forge poetry=1.4
# Install project dependencies
poetry install
# Activate virtual environment
poetry shell
To build and edit the documentation:
Install Sphinx dependencies:
poetry install --with docs
Navigate to docs directory:
cd docs
Build documentation:
# Build HTML docs make html # Auto-rebuild on changes make livehtml
The compiled documentation will be available in docs/build/html/
.