/DeepEEG

Deep Learning with Tensor Flow for EEG MNE Epoch Objects

Primary LanguageJupyter NotebookMIT LicenseMIT

DeepEEG

MNE/Keras/Tensorflow library for classification of EEG data

DeepEEG Image

DeepEEG is a Keras/Tensorflow deep learning library that processes EEG trials or raw files from the MNE toolbox as input and predicts binary trial category as output (could scale to multiclass?).

Colab Notebook Example: https://colab.research.google.com/github/kylemath/DeepEEG/blob/master/notebooks/DeepEEG.ipynb

Getting Started Locally:

DeepEEG is tested on macOS 10.14 with Python3. Prepare your environment the first time:

# using conda
conda create -n deepeeg python=3
source activate deepeeg
# using virtualenv
# python3 -m venv deepeeg
# source deepeeg/bin/activate
git clone https://github.com/kylemath/DeepEEG/
cd DeepEEG
./install.sh
git clone https://github.com/kylemath/eeg-notebooks

You are now ready to run DeepEEG.

This loads in some example data from eeg-notebooks

from utils import *
data_dir = 'visual/cueing'
subs = [101,102]
nsesh = 2
event_id = {'LeftCue': 1,'RightCue': 2}

Load muse data, preprocess into trials,prepare for model, create model, and train and test model

#Load Data
raw = LoadMuseData(subs,nsesh,data_dir)
#Pre-Process EEG Data
epochs = PreProcess(raw,event_id)
#Engineer Features for Model
feats = FeatureEngineer(epochs)
#Create Model
model,_ = CreateModel(feats)
#Train with validation, then Test
TrainTestVal(model,feats)

Tests

You can run the unittests with the following command:

python -m unittest tests

Strategy

  • Load in Brain Products or Interaxon Muse files with mne as mne.raw,
  • PreProcess(mne.raw) - normal ERP preprocessing to get trials by time by electrode mne.epochs
  • FeatureEngineer(mne.epochs) - Either time domain or frequency domain feature extraction in DeepEEG.Feats class
  • CreateModel(DeepEEG.Feats) - Customizes DeepEEG.Model for input data, pick from NN, CNN, LSTM, or AutoEncoders, splits data
  • TrainTestVal(DeepEEG.Feats,DeepEEG.Model) - Train the model, validate it during training, and test it once complete, Plot loss during learning and at test

Dataset example

API

Preprocessing

LearningModels

  • First try basic Neural Network (NN)
  • Then try Convolution Neural Net (CNN)
  • New is a 3D convolutional NN (CNN3D) in the frequency domain
  • Then try Long-Short Term Memory Recurrant Neural Net (LSTM)
  • Can also try using (AUTO) or (AUTODeep) to clean eeg data, or create features for other models

DataModels

  • Try subject specific models
  • Then pool data over all subjects
  • Then try multilevel models (in the works)

Benchmarks

Code References

Resources