├── CBCR License ├── README.md ├── Task.py ├── data_processed └── placeholder.txt ├── extract_results.py ├── images ├── Fig1.png └── Fig2.png ├── main_ATTEN.py ├── main_FATIG.py ├── main_MWL.py ├── models ├── EEGDeformer.py ├── EEGNet.py ├── EEGViT.py ├── LGGNet.py ├── TSception.py ├── conformer.py ├── model_handler.py ├── model_size_and_macs.py └── placeholder.txt ├── prepare_dataset ├── Attention.py ├── prepare_data.py └── preprocessing.py ├── requirements.txt └── utils.py /CBCR License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/CBCR License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/README.md -------------------------------------------------------------------------------- /Task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/Task.py -------------------------------------------------------------------------------- /data_processed/placeholder.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /extract_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/extract_results.py -------------------------------------------------------------------------------- /images/Fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/images/Fig1.png -------------------------------------------------------------------------------- /images/Fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/images/Fig2.png -------------------------------------------------------------------------------- /main_ATTEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/main_ATTEN.py -------------------------------------------------------------------------------- /main_FATIG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/main_FATIG.py -------------------------------------------------------------------------------- /main_MWL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/main_MWL.py -------------------------------------------------------------------------------- /models/EEGDeformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/EEGDeformer.py -------------------------------------------------------------------------------- /models/EEGNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/EEGNet.py -------------------------------------------------------------------------------- /models/EEGViT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/EEGViT.py -------------------------------------------------------------------------------- /models/LGGNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/LGGNet.py -------------------------------------------------------------------------------- /models/TSception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/TSception.py -------------------------------------------------------------------------------- /models/conformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/conformer.py -------------------------------------------------------------------------------- /models/model_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/model_handler.py -------------------------------------------------------------------------------- /models/model_size_and_macs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/models/model_size_and_macs.py -------------------------------------------------------------------------------- /models/placeholder.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prepare_dataset/Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/prepare_dataset/Attention.py -------------------------------------------------------------------------------- /prepare_dataset/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/prepare_dataset/prepare_data.py -------------------------------------------------------------------------------- /prepare_dataset/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/prepare_dataset/preprocessing.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-ding-cs/EEG-Deformer/HEAD/utils.py --------------------------------------------------------------------------------