├── .gitignore ├── ERP.py ├── README.md ├── model.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .idea/ 3 | .git/ -------------------------------------------------------------------------------- /ERP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sucv/EEGNet_Pytorch_Implementation/HEAD/ERP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sucv/EEGNet_Pytorch_Implementation/HEAD/README.md -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sucv/EEGNet_Pytorch_Implementation/HEAD/model.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sucv/EEGNet_Pytorch_Implementation/HEAD/utils.py --------------------------------------------------------------------------------