├── .gitignore ├── EEG-Inception ├── EEG_Inception.py ├── Net_train.py ├── Readme.md └── cross_val_net.py ├── EEGNet ├── EEGNet_paper.pth ├── EEGNet_version_01.py ├── Readme.md ├── Test_model.py └── Test_net.py ├── ML-MI ├── BCICIV_calib_ds1b.mat ├── EEG_MI_ML.ipynb ├── Readme.md └── refresh_classification.ipynb ├── New train folder ├── EEGNet.py ├── Readme.md ├── confusion_matrix1.png ├── metrics.py ├── read_data.ipynb ├── train.py └── training_metrics_subject_1.png ├── README.md ├── mne包教程.pdf └── 脑机接口导论笔记.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/.gitignore -------------------------------------------------------------------------------- /EEG-Inception/EEG_Inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEG-Inception/EEG_Inception.py -------------------------------------------------------------------------------- /EEG-Inception/Net_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEG-Inception/Net_train.py -------------------------------------------------------------------------------- /EEG-Inception/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEG-Inception/Readme.md -------------------------------------------------------------------------------- /EEG-Inception/cross_val_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEG-Inception/cross_val_net.py -------------------------------------------------------------------------------- /EEGNet/EEGNet_paper.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEGNet/EEGNet_paper.pth -------------------------------------------------------------------------------- /EEGNet/EEGNet_version_01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEGNet/EEGNet_version_01.py -------------------------------------------------------------------------------- /EEGNet/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEGNet/Readme.md -------------------------------------------------------------------------------- /EEGNet/Test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEGNet/Test_model.py -------------------------------------------------------------------------------- /EEGNet/Test_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/EEGNet/Test_net.py -------------------------------------------------------------------------------- /ML-MI/BCICIV_calib_ds1b.mat: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ML-MI/EEG_MI_ML.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/ML-MI/EEG_MI_ML.ipynb -------------------------------------------------------------------------------- /ML-MI/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/ML-MI/Readme.md -------------------------------------------------------------------------------- /ML-MI/refresh_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/ML-MI/refresh_classification.ipynb -------------------------------------------------------------------------------- /New train folder/EEGNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/New train folder/EEGNet.py -------------------------------------------------------------------------------- /New train folder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/New train folder/Readme.md -------------------------------------------------------------------------------- /New train folder/confusion_matrix1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/New train folder/confusion_matrix1.png -------------------------------------------------------------------------------- /New train folder/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/New train folder/metrics.py -------------------------------------------------------------------------------- /New train folder/read_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/New train folder/read_data.ipynb -------------------------------------------------------------------------------- /New train folder/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/New train folder/train.py -------------------------------------------------------------------------------- /New train folder/training_metrics_subject_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/New train folder/training_metrics_subject_1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/README.md -------------------------------------------------------------------------------- /mne包教程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/mne包教程.pdf -------------------------------------------------------------------------------- /脑机接口导论笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XCZchaos/python-implementation-of-motion-imagination-classification/HEAD/脑机接口导论笔记.md --------------------------------------------------------------------------------