├── README.md ├── code ├── dataloader.py ├── embinitialization.py ├── eval_bio.py ├── eval_chem.py ├── eval_dblp.py ├── loader.py ├── loader_chem.py ├── main.py ├── metapre.py ├── model_bio.py ├── model_chem.py ├── model_dblp.py ├── result_analysis.py ├── splitters.py └── util.py ├── data ├── bio │ └── test.txt └── dblp │ └── test.txt ├── requirements.txt └── res ├── bio ├── co_adaptation_5_300_gin_50_emb.pth ├── co_adaptation_5_300_gin_50_gnn.pth └── co_adaptation_5_300_gin_50_pool.pth └── dblp ├── co_adaptation_5_300_s50q30_gin_20_emb.pth ├── co_adaptation_5_300_s50q30_gin_20_gnn.pth └── co_adaptation_5_300_s50q30_gin_20_pool.pth /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/README.md -------------------------------------------------------------------------------- /code/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/dataloader.py -------------------------------------------------------------------------------- /code/embinitialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/embinitialization.py -------------------------------------------------------------------------------- /code/eval_bio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/eval_bio.py -------------------------------------------------------------------------------- /code/eval_chem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/eval_chem.py -------------------------------------------------------------------------------- /code/eval_dblp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/eval_dblp.py -------------------------------------------------------------------------------- /code/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/loader.py -------------------------------------------------------------------------------- /code/loader_chem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/loader_chem.py -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/main.py -------------------------------------------------------------------------------- /code/metapre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/metapre.py -------------------------------------------------------------------------------- /code/model_bio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/model_bio.py -------------------------------------------------------------------------------- /code/model_chem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/model_chem.py -------------------------------------------------------------------------------- /code/model_dblp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/model_dblp.py -------------------------------------------------------------------------------- /code/result_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/result_analysis.py -------------------------------------------------------------------------------- /code/splitters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/splitters.py -------------------------------------------------------------------------------- /code/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/code/util.py -------------------------------------------------------------------------------- /data/bio/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/dblp/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/requirements.txt -------------------------------------------------------------------------------- /res/bio/co_adaptation_5_300_gin_50_emb.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/res/bio/co_adaptation_5_300_gin_50_emb.pth -------------------------------------------------------------------------------- /res/bio/co_adaptation_5_300_gin_50_gnn.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/res/bio/co_adaptation_5_300_gin_50_gnn.pth -------------------------------------------------------------------------------- /res/bio/co_adaptation_5_300_gin_50_pool.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/res/bio/co_adaptation_5_300_gin_50_pool.pth -------------------------------------------------------------------------------- /res/dblp/co_adaptation_5_300_s50q30_gin_20_emb.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/res/dblp/co_adaptation_5_300_s50q30_gin_20_emb.pth -------------------------------------------------------------------------------- /res/dblp/co_adaptation_5_300_s50q30_gin_20_gnn.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/res/dblp/co_adaptation_5_300_s50q30_gin_20_gnn.pth -------------------------------------------------------------------------------- /res/dblp/co_adaptation_5_300_s50q30_gin_20_pool.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rootlu/L2P-GNN/HEAD/res/dblp/co_adaptation_5_300_s50q30_gin_20_pool.pth --------------------------------------------------------------------------------