├── Makefile ├── README.md ├── dataset └── citation │ ├── ind.citeseer.allx │ ├── ind.citeseer.ally │ ├── ind.citeseer.graph │ ├── ind.citeseer.test.index │ ├── ind.citeseer.tx │ ├── ind.citeseer.ty │ ├── ind.citeseer.x │ ├── ind.citeseer.y │ ├── ind.cora.allx │ ├── ind.cora.ally │ ├── ind.cora.graph │ ├── ind.cora.test.index │ ├── ind.cora.tx │ ├── ind.cora.ty │ ├── ind.cora.x │ ├── ind.cora.y │ ├── ind.pubmed.allx │ ├── ind.pubmed.ally │ ├── ind.pubmed.graph │ ├── ind.pubmed.test.index │ ├── ind.pubmed.tx │ ├── ind.pubmed.ty │ ├── ind.pubmed.x │ └── ind.pubmed.y ├── model.py ├── model_mag.py ├── precompute ├── graph.h ├── propagation.cpp └── utils.h ├── requirements.txt ├── run_model.py ├── scripts ├── download.py ├── run_amazon2m.sh ├── run_aminer.sh ├── run_citeseer.sh ├── run_cora.sh ├── run_mag.sh ├── run_pubmed.sh └── run_reddit.sh └── utils ├── __init__.py ├── data_loader.py ├── dataio.py ├── make_dataset.py └── preprocess.py /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/README.md -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.allx -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.ally -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.graph -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.test.index -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.tx -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.ty -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.x -------------------------------------------------------------------------------- /dataset/citation/ind.citeseer.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.citeseer.y -------------------------------------------------------------------------------- /dataset/citation/ind.cora.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.allx -------------------------------------------------------------------------------- /dataset/citation/ind.cora.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.ally -------------------------------------------------------------------------------- /dataset/citation/ind.cora.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.graph -------------------------------------------------------------------------------- /dataset/citation/ind.cora.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.test.index -------------------------------------------------------------------------------- /dataset/citation/ind.cora.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.tx -------------------------------------------------------------------------------- /dataset/citation/ind.cora.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.ty -------------------------------------------------------------------------------- /dataset/citation/ind.cora.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.x -------------------------------------------------------------------------------- /dataset/citation/ind.cora.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.cora.y -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.allx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.allx -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.ally: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.ally -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.graph -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.test.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.test.index -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.tx -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.ty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.ty -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.x -------------------------------------------------------------------------------- /dataset/citation/ind.pubmed.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/dataset/citation/ind.pubmed.y -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/model.py -------------------------------------------------------------------------------- /model_mag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/model_mag.py -------------------------------------------------------------------------------- /precompute/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/precompute/graph.h -------------------------------------------------------------------------------- /precompute/propagation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/precompute/propagation.cpp -------------------------------------------------------------------------------- /precompute/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/precompute/utils.h -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/run_model.py -------------------------------------------------------------------------------- /scripts/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/download.py -------------------------------------------------------------------------------- /scripts/run_amazon2m.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/run_amazon2m.sh -------------------------------------------------------------------------------- /scripts/run_aminer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/run_aminer.sh -------------------------------------------------------------------------------- /scripts/run_citeseer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/run_citeseer.sh -------------------------------------------------------------------------------- /scripts/run_cora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/run_cora.sh -------------------------------------------------------------------------------- /scripts/run_mag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/run_mag.sh -------------------------------------------------------------------------------- /scripts/run_pubmed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/run_pubmed.sh -------------------------------------------------------------------------------- /scripts/run_reddit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/scripts/run_reddit.sh -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/utils/data_loader.py -------------------------------------------------------------------------------- /utils/dataio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/utils/dataio.py -------------------------------------------------------------------------------- /utils/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/utils/make_dataset.py -------------------------------------------------------------------------------- /utils/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/THUDM/GRAND-plus/HEAD/utils/preprocess.py --------------------------------------------------------------------------------