├── README.md ├── codeForData ├── ReadME └── braindecode-master │ ├── .idea │ ├── .gitignore │ ├── braindecode-master.iml │ ├── misc.xml │ └── modules.xml │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.rst │ ├── braindecode │ ├── __init__.py │ ├── datasets │ │ ├── __init__.py │ │ ├── bbci.py │ │ ├── bcic_iv_2a.py │ │ ├── lazy_dataset.py │ │ ├── multiple.py │ │ └── sensor_positions.py │ ├── datautil │ │ ├── __init__.py │ │ ├── iterators.py │ │ ├── lazy_iterators.py │ │ ├── signal_target.py │ │ ├── signalproc.py │ │ ├── splitters.py │ │ ├── trial_segment.py │ │ └── util.py │ ├── experiments │ │ ├── __init__.py │ │ ├── experiment.py │ │ ├── loggers.py │ │ ├── monitors.py │ │ └── stopcriteria.py │ ├── mne_ext │ │ ├── __init__.py │ │ └── signalproc.py │ ├── models │ │ ├── __init__.py │ │ ├── base.py │ │ ├── deep4.py │ │ ├── eegnet.py │ │ ├── hybrid.py │ │ ├── shallow_fbcsp.py │ │ └── util.py │ ├── torch_ext │ │ ├── __init__.py │ │ ├── constraints.py │ │ ├── functions.py │ │ ├── init.py │ │ ├── losses.py │ │ ├── modules.py │ │ ├── optimizers.py │ │ ├── schedulers.py │ │ └── util.py │ ├── util.py │ ├── version.py │ └── visualization │ │ ├── __init__.py │ │ ├── input_windows.py │ │ ├── perturbation.py │ │ ├── plot.py │ │ └── sinfit.py │ ├── data │ ├── BCICIV_2a_gdf │ └── BCI_IV_2b │ ├── docs │ ├── Makefile │ ├── conf.py │ ├── index.rst │ ├── notebooks │ │ ├── BBCI_Data.ipynb │ │ ├── BBCI_Data_Start_Stop.ipynb │ │ ├── BBCI_Data_Trialwise.ipynb │ │ ├── Cropped_Decoding.ipynb │ │ ├── Cropped_Manual_Training_Loop.ipynb │ │ ├── Cropped_Trialwise_Explanation_Figures.ipynb │ │ ├── Trialwise_Decoding.ipynb │ │ ├── Trialwise_Manual_Training_Loop.ipynb │ │ ├── cropped_explanation.png │ │ ├── trialwise_explanation.png │ │ └── visualization │ │ │ └── Perturbation.ipynb │ ├── requirements.txt │ └── source │ │ ├── braindecode.datasets.rst │ │ ├── braindecode.datautil.rst │ │ ├── braindecode.experiments.rst │ │ ├── braindecode.mne_ext.rst │ │ ├── braindecode.models.rst │ │ ├── braindecode.rst │ │ ├── braindecode.torch_ext.rst │ │ ├── braindecode.visualization.rst │ │ └── modules.rst │ ├── examples │ ├── .idea │ │ ├── .gitignore │ │ ├── examples.iml │ │ ├── misc.xml │ │ └── modules.xml │ ├── bcic_iv_2a.py │ └── bcic_iv_2b.py │ ├── setup.py │ └── test │ ├── acceptance_tests │ └── from_notebooks │ │ ├── test_cropped_decoding.py │ │ ├── test_experiment_class.py │ │ └── test_trialwise_decoding.py │ └── unit_tests │ └── datautil │ └── test_trial_segment.py └── mainCode ├── BCI_DA.py ├── BCI_DA.sh ├── cal_copyFile.py ├── copyFile.py ├── dataFile.py ├── dataPrepare.py ├── dataProcessing.py ├── loadData.py ├── net.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/README.md -------------------------------------------------------------------------------- /codeForData/ReadME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/ReadME -------------------------------------------------------------------------------- /codeForData/braindecode-master/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/.idea/.gitignore -------------------------------------------------------------------------------- /codeForData/braindecode-master/.idea/braindecode-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/.idea/braindecode-master.iml -------------------------------------------------------------------------------- /codeForData/braindecode-master/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/.idea/misc.xml -------------------------------------------------------------------------------- /codeForData/braindecode-master/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/.idea/modules.xml -------------------------------------------------------------------------------- /codeForData/braindecode-master/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/LICENSE.txt -------------------------------------------------------------------------------- /codeForData/braindecode-master/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/MANIFEST.in -------------------------------------------------------------------------------- /codeForData/braindecode-master/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/README.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/__init__.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Loader code for some datasets. 3 | """ 4 | -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datasets/bbci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datasets/bbci.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datasets/bcic_iv_2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datasets/bcic_iv_2a.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datasets/lazy_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datasets/lazy_dataset.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datasets/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datasets/multiple.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datasets/sensor_positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datasets/sensor_positions.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Utilities for data manipulation. 3 | """ 4 | -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datautil/iterators.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/lazy_iterators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datautil/lazy_iterators.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/signal_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datautil/signal_target.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/signalproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datautil/signalproc.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/splitters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datautil/splitters.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/trial_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datautil/trial_segment.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/datautil/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/datautil/util.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/experiments/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/experiments/__init__.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/experiments/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/experiments/experiment.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/experiments/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/experiments/loggers.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/experiments/monitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/experiments/monitors.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/experiments/stopcriteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/experiments/stopcriteria.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/mne_ext/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Extensions for the MNE library. 3 | """ 4 | -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/mne_ext/signalproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/mne_ext/signalproc.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/models/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Some predefined network architectures for EEG decoding. 3 | """ 4 | -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/models/base.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/models/deep4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/models/deep4.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/models/eegnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/models/eegnet.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/models/hybrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/models/hybrid.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/models/shallow_fbcsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/models/shallow_fbcsp.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/models/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/models/util.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/__init__.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/constraints.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/functions.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/init.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/losses.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/modules.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/optimizers.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/schedulers.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/torch_ext/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/torch_ext/util.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/util.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.4.85" 2 | -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/visualization/__init__.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/visualization/input_windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/visualization/input_windows.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/visualization/perturbation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/visualization/perturbation.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/visualization/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/visualization/plot.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/braindecode/visualization/sinfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/braindecode/visualization/sinfit.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/data/BCICIV_2a_gdf: -------------------------------------------------------------------------------- 1 | /media/keyzhao/NewDisk/BCI/Data/BCICIV_2a_gdf -------------------------------------------------------------------------------- /codeForData/braindecode-master/data/BCI_IV_2b: -------------------------------------------------------------------------------- 1 | /media/keyzhao/NewDisk/BCI/Data/BCI_IV_2b -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/Makefile -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/conf.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/index.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/BBCI_Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/BBCI_Data.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/BBCI_Data_Start_Stop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/BBCI_Data_Start_Stop.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/BBCI_Data_Trialwise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/BBCI_Data_Trialwise.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/Cropped_Decoding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/Cropped_Decoding.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/Cropped_Manual_Training_Loop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/Cropped_Manual_Training_Loop.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/Cropped_Trialwise_Explanation_Figures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/Cropped_Trialwise_Explanation_Figures.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/Trialwise_Decoding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/Trialwise_Decoding.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/Trialwise_Manual_Training_Loop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/Trialwise_Manual_Training_Loop.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/cropped_explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/cropped_explanation.png -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/trialwise_explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/trialwise_explanation.png -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/notebooks/visualization/Perturbation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/notebooks/visualization/Perturbation.ipynb -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/requirements.txt: -------------------------------------------------------------------------------- 1 | nbsphinx 2 | mock -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.datasets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.datasets.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.datautil.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.datautil.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.experiments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.experiments.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.mne_ext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.mne_ext.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.models.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.torch_ext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.torch_ext.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/braindecode.visualization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/braindecode.visualization.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/docs/source/modules.rst -------------------------------------------------------------------------------- /codeForData/braindecode-master/examples/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/examples/.idea/.gitignore -------------------------------------------------------------------------------- /codeForData/braindecode-master/examples/.idea/examples.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/examples/.idea/examples.iml -------------------------------------------------------------------------------- /codeForData/braindecode-master/examples/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/examples/.idea/misc.xml -------------------------------------------------------------------------------- /codeForData/braindecode-master/examples/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/examples/.idea/modules.xml -------------------------------------------------------------------------------- /codeForData/braindecode-master/examples/bcic_iv_2a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/examples/bcic_iv_2a.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/examples/bcic_iv_2b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/examples/bcic_iv_2b.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/setup.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/test/acceptance_tests/from_notebooks/test_cropped_decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/test/acceptance_tests/from_notebooks/test_cropped_decoding.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/test/acceptance_tests/from_notebooks/test_experiment_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/test/acceptance_tests/from_notebooks/test_experiment_class.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/test/acceptance_tests/from_notebooks/test_trialwise_decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/test/acceptance_tests/from_notebooks/test_trialwise_decoding.py -------------------------------------------------------------------------------- /codeForData/braindecode-master/test/unit_tests/datautil/test_trial_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/codeForData/braindecode-master/test/unit_tests/datautil/test_trial_segment.py -------------------------------------------------------------------------------- /mainCode/BCI_DA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/BCI_DA.py -------------------------------------------------------------------------------- /mainCode/BCI_DA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/BCI_DA.sh -------------------------------------------------------------------------------- /mainCode/cal_copyFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/cal_copyFile.py -------------------------------------------------------------------------------- /mainCode/copyFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/copyFile.py -------------------------------------------------------------------------------- /mainCode/dataFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/dataFile.py -------------------------------------------------------------------------------- /mainCode/dataPrepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/dataPrepare.py -------------------------------------------------------------------------------- /mainCode/dataProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/dataProcessing.py -------------------------------------------------------------------------------- /mainCode/loadData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/loadData.py -------------------------------------------------------------------------------- /mainCode/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/net.py -------------------------------------------------------------------------------- /mainCode/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhengqq/DRDA_EEG/HEAD/mainCode/utils.py --------------------------------------------------------------------------------