├── .gitignore ├── EEGLearn ├── Accuracy_cnn.csv ├── __init__.py ├── model.py ├── train.py └── utils.py ├── LICENSE ├── README.md ├── SampleData ├── FeatureMat_timeWin.mat ├── Neuroscan_locs_orig.mat ├── README.txt └── trials_subNums.mat └── images ├── 32_32.png ├── AEP.png └── diagram.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/.gitignore -------------------------------------------------------------------------------- /EEGLearn/Accuracy_cnn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/EEGLearn/Accuracy_cnn.csv -------------------------------------------------------------------------------- /EEGLearn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EEGLearn/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/EEGLearn/model.py -------------------------------------------------------------------------------- /EEGLearn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/EEGLearn/train.py -------------------------------------------------------------------------------- /EEGLearn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/EEGLearn/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/README.md -------------------------------------------------------------------------------- /SampleData/FeatureMat_timeWin.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/SampleData/FeatureMat_timeWin.mat -------------------------------------------------------------------------------- /SampleData/Neuroscan_locs_orig.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/SampleData/Neuroscan_locs_orig.mat -------------------------------------------------------------------------------- /SampleData/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/SampleData/README.txt -------------------------------------------------------------------------------- /SampleData/trials_subNums.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/SampleData/trials_subNums.mat -------------------------------------------------------------------------------- /images/32_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/images/32_32.png -------------------------------------------------------------------------------- /images/AEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/images/AEP.png -------------------------------------------------------------------------------- /images/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangWangsky/tf_EEGLearn/HEAD/images/diagram.png --------------------------------------------------------------------------------