├── .gitignore ├── LICENSE ├── README.md ├── adjs ├── raw_adj.npy └── raw_eeg_adj.csv ├── args └── ggn_best.json ├── best_models └── ggn_best.pth ├── eeg_main.py ├── eeg_util.py ├── models ├── baseline_models.py ├── encoder_decoder.py ├── ggn.py └── graph_conv_layer.py ├── requirements.txt ├── shuffled_index.npy ├── testing.sh └── training.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/README.md -------------------------------------------------------------------------------- /adjs/raw_adj.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/adjs/raw_adj.npy -------------------------------------------------------------------------------- /adjs/raw_eeg_adj.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/adjs/raw_eeg_adj.csv -------------------------------------------------------------------------------- /args/ggn_best.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/args/ggn_best.json -------------------------------------------------------------------------------- /best_models/ggn_best.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/best_models/ggn_best.pth -------------------------------------------------------------------------------- /eeg_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/eeg_main.py -------------------------------------------------------------------------------- /eeg_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/eeg_util.py -------------------------------------------------------------------------------- /models/baseline_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/models/baseline_models.py -------------------------------------------------------------------------------- /models/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/models/encoder_decoder.py -------------------------------------------------------------------------------- /models/ggn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/models/ggn.py -------------------------------------------------------------------------------- /models/graph_conv_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/models/graph_conv_layer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/requirements.txt -------------------------------------------------------------------------------- /shuffled_index.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/shuffled_index.npy -------------------------------------------------------------------------------- /testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/testing.sh -------------------------------------------------------------------------------- /training.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ICLab4DL/GGN/HEAD/training.sh --------------------------------------------------------------------------------