├── .gitignore ├── Input Data Representation.ipynb ├── LICENSE ├── MT_CNN.pdf ├── README.md ├── Training.ipynb ├── eegemotion ├── __init__.py ├── data_load.py ├── main.py ├── model.py ├── train.py └── utils.py ├── graphics ├── ablation_studies_tnr.png ├── brainmaps.png └── model_structure_hor_tnr.png ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/.gitignore -------------------------------------------------------------------------------- /Input Data Representation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/Input Data Representation.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/LICENSE -------------------------------------------------------------------------------- /MT_CNN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/MT_CNN.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/README.md -------------------------------------------------------------------------------- /Training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/Training.ipynb -------------------------------------------------------------------------------- /eegemotion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eegemotion/data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/eegemotion/data_load.py -------------------------------------------------------------------------------- /eegemotion/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/eegemotion/main.py -------------------------------------------------------------------------------- /eegemotion/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/eegemotion/model.py -------------------------------------------------------------------------------- /eegemotion/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/eegemotion/train.py -------------------------------------------------------------------------------- /eegemotion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/eegemotion/utils.py -------------------------------------------------------------------------------- /graphics/ablation_studies_tnr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/graphics/ablation_studies_tnr.png -------------------------------------------------------------------------------- /graphics/brainmaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/graphics/brainmaps.png -------------------------------------------------------------------------------- /graphics/model_structure_hor_tnr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/graphics/model_structure_hor_tnr.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphin-in-a-coma/multi-task-cnn-eeg-emotion/HEAD/setup.py --------------------------------------------------------------------------------