├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data └── BNCI2014001 │ ├── X.npy │ └── labels.npy ├── requirements.txt ├── utils ├── __init__.py ├── alg_utils.py ├── aug_utils.py └── data_utils.py ├── within_CR.py └── within_baseline.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/README.md -------------------------------------------------------------------------------- /data/BNCI2014001/X.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/data/BNCI2014001/X.npy -------------------------------------------------------------------------------- /data/BNCI2014001/labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/data/BNCI2014001/labels.npy -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/alg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/utils/alg_utils.py -------------------------------------------------------------------------------- /utils/aug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/utils/aug_utils.py -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /within_CR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/within_CR.py -------------------------------------------------------------------------------- /within_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzwvv/EEGAug/HEAD/within_baseline.py --------------------------------------------------------------------------------