├── README.md ├── data ├── a-computer.npz ├── a-photo.npz ├── citeseer.npz ├── cora.npz └── pubmed.npz ├── data_preprocess.py ├── dataloader.py ├── image-1.png ├── image-2.png ├── image.png ├── models.py ├── requirements.txt ├── train.conf.yaml ├── train_and_eval.py ├── train_student.py ├── train_teacher.py ├── utils.py └── vq.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/README.md -------------------------------------------------------------------------------- /data/a-computer.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/data/a-computer.npz -------------------------------------------------------------------------------- /data/a-photo.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/data/a-photo.npz -------------------------------------------------------------------------------- /data/citeseer.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/data/citeseer.npz -------------------------------------------------------------------------------- /data/cora.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/data/cora.npz -------------------------------------------------------------------------------- /data/pubmed.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/data/pubmed.npz -------------------------------------------------------------------------------- /data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/data_preprocess.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/dataloader.py -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/image-1.png -------------------------------------------------------------------------------- /image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/image-2.png -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/image.png -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/train.conf.yaml -------------------------------------------------------------------------------- /train_and_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/train_and_eval.py -------------------------------------------------------------------------------- /train_student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/train_student.py -------------------------------------------------------------------------------- /train_teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/train_teacher.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/utils.py -------------------------------------------------------------------------------- /vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YangLing0818/VQGraph/HEAD/vq.py --------------------------------------------------------------------------------