├── .gitignore ├── 1_preprocess.py ├── 2_train.py ├── 3_test.py ├── 4_seiz_test.py ├── LICENSE ├── README.md ├── control ├── __pycache__ │ └── config.cpython-36.pyc ├── config.py └── path_configs.yaml ├── images └── Concept.jpg ├── paper └── Real-Time Seizure Detection using EEG-A Comprehensive Comparison of Recent Approaches under a Realistic Setting.pdf └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /1_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/1_preprocess.py -------------------------------------------------------------------------------- /2_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/2_train.py -------------------------------------------------------------------------------- /3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/3_test.py -------------------------------------------------------------------------------- /4_seiz_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/4_seiz_test.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/README.md -------------------------------------------------------------------------------- /control/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/control/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /control/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/control/config.py -------------------------------------------------------------------------------- /control/path_configs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/control/path_configs.yaml -------------------------------------------------------------------------------- /images/Concept.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/images/Concept.jpg -------------------------------------------------------------------------------- /paper/Real-Time Seizure Detection using EEG-A Comprehensive Comparison of Recent Approaches under a Realistic Setting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/paper/Real-Time Seizure Detection using EEG-A Comprehensive Comparison of Recent Approaches under a Realistic Setting.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AITRICS/EEG_real_time_seizure_detection/HEAD/requirements.txt --------------------------------------------------------------------------------