├── LICENSE ├── README.md ├── __init__.py ├── batch.py ├── best_models └── .gitkeep ├── dataloader.py ├── dataset.py ├── gnn_features.py ├── images └── 1.jpg ├── model.py ├── saved_models └── .gitkeep ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/__init__.py -------------------------------------------------------------------------------- /batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/batch.py -------------------------------------------------------------------------------- /best_models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/dataloader.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/dataset.py -------------------------------------------------------------------------------- /gnn_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/gnn_features.py -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/images/1.jpg -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/model.py -------------------------------------------------------------------------------- /saved_models/.gitkeep: -------------------------------------------------------------------------------- 1 | This folder stores the trained model 2 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xianyuco/SS-GNN/HEAD/utils.py --------------------------------------------------------------------------------