├── .gitignore ├── DEAP ├── DE_visualization.py ├── cnnSubIndependent.py ├── get_1D_DE.py ├── modelBandMix.py ├── modelSingle.py ├── modelTotalSubIndependent.py ├── modelTotal_V.py ├── modules.py └── stackSubject.py ├── DREAMER ├── get_DE_feature.py └── modelTotalDreamer.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/.gitignore -------------------------------------------------------------------------------- /DEAP/DE_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/DE_visualization.py -------------------------------------------------------------------------------- /DEAP/cnnSubIndependent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/cnnSubIndependent.py -------------------------------------------------------------------------------- /DEAP/get_1D_DE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/get_1D_DE.py -------------------------------------------------------------------------------- /DEAP/modelBandMix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/modelBandMix.py -------------------------------------------------------------------------------- /DEAP/modelSingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/modelSingle.py -------------------------------------------------------------------------------- /DEAP/modelTotalSubIndependent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/modelTotalSubIndependent.py -------------------------------------------------------------------------------- /DEAP/modelTotal_V.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/modelTotal_V.py -------------------------------------------------------------------------------- /DEAP/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/modules.py -------------------------------------------------------------------------------- /DEAP/stackSubject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DEAP/stackSubject.py -------------------------------------------------------------------------------- /DREAMER/get_DE_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DREAMER/get_DE_feature.py -------------------------------------------------------------------------------- /DREAMER/modelTotalDreamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qeebeast7/SFCSAN/HEAD/DREAMER/modelTotalDreamer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------