├── .gitignore ├── LICENSE.md ├── README.md ├── config_demo.yaml ├── config_seml.yaml ├── data ├── cora_full.npz ├── get_reddit.md └── pubmed.npz ├── demo.ipynb ├── pprgo ├── __init__.py ├── dataset.py ├── ppr.py ├── pprgo.py ├── predict.py ├── pytorch_utils.py ├── sparsegraph.py ├── train.py └── utils.py ├── run_seml.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /config_demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/config_demo.yaml -------------------------------------------------------------------------------- /config_seml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/config_seml.yaml -------------------------------------------------------------------------------- /data/cora_full.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/data/cora_full.npz -------------------------------------------------------------------------------- /data/get_reddit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/data/get_reddit.md -------------------------------------------------------------------------------- /data/pubmed.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/data/pubmed.npz -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/demo.ipynb -------------------------------------------------------------------------------- /pprgo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pprgo/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/dataset.py -------------------------------------------------------------------------------- /pprgo/ppr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/ppr.py -------------------------------------------------------------------------------- /pprgo/pprgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/pprgo.py -------------------------------------------------------------------------------- /pprgo/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/predict.py -------------------------------------------------------------------------------- /pprgo/pytorch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/pytorch_utils.py -------------------------------------------------------------------------------- /pprgo/sparsegraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/sparsegraph.py -------------------------------------------------------------------------------- /pprgo/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/train.py -------------------------------------------------------------------------------- /pprgo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/pprgo/utils.py -------------------------------------------------------------------------------- /run_seml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/run_seml.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUM-DAML/pprgo_pytorch/HEAD/setup.py --------------------------------------------------------------------------------