├── GPPT.py ├── README.md ├── get_args.py ├── load_graph.py ├── model.py ├── negative_sampler.py ├── run_all.py ├── train_sampling_unsupervised.py ├── uns_train_copy.py └── utils.py /GPPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/GPPT.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/README.md -------------------------------------------------------------------------------- /get_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/get_args.py -------------------------------------------------------------------------------- /load_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/load_graph.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/model.py -------------------------------------------------------------------------------- /negative_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/negative_sampler.py -------------------------------------------------------------------------------- /run_all.py: -------------------------------------------------------------------------------- 1 | import os 2 | os.system("python ./GPPT.py") 3 | 4 | -------------------------------------------------------------------------------- /train_sampling_unsupervised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/train_sampling_unsupervised.py -------------------------------------------------------------------------------- /uns_train_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/uns_train_copy.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingChen-Sun/GPPT/HEAD/utils.py --------------------------------------------------------------------------------