├── .gitignore ├── History ├── pretrain_link1.his └── pretrain_link2.his ├── Models └── README.md ├── README.md ├── Utils └── TimeLogger.py ├── data_handler.py ├── imgs ├── ablation.png ├── article cover.png ├── datasets.png ├── framework_final.jpeg ├── framework_final.pdf ├── framework_final.png ├── link1_fullshot_ndcg_curve.png ├── link1_loss_curve.png ├── link1_zeroshot_ndcg_curve.png ├── link2_fullshot_ndcg_curve.png ├── link2_loss_curve.png ├── link2_zeroshot_ndcg_curve.png ├── overall_performance1.png ├── overall_performance2.png ├── routing.png ├── scaling_law.png ├── training_time.png └── tuning_steps.png ├── main.py ├── model.py ├── node_classification ├── Utils │ └── TimeLogger.py ├── data_handler.py ├── main.py ├── model.py └── params.py └── params.py /.gitignore: -------------------------------------------------------------------------------- 1 | extract_code_structure.py 2 | .DS_Store -------------------------------------------------------------------------------- /History/pretrain_link1.his: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/History/pretrain_link1.his -------------------------------------------------------------------------------- /History/pretrain_link2.his: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/History/pretrain_link2.his -------------------------------------------------------------------------------- /Models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/Models/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/README.md -------------------------------------------------------------------------------- /Utils/TimeLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/Utils/TimeLogger.py -------------------------------------------------------------------------------- /data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/data_handler.py -------------------------------------------------------------------------------- /imgs/ablation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/ablation.png -------------------------------------------------------------------------------- /imgs/article cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/article cover.png -------------------------------------------------------------------------------- /imgs/datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/datasets.png -------------------------------------------------------------------------------- /imgs/framework_final.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/framework_final.jpeg -------------------------------------------------------------------------------- /imgs/framework_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/framework_final.pdf -------------------------------------------------------------------------------- /imgs/framework_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/framework_final.png -------------------------------------------------------------------------------- /imgs/link1_fullshot_ndcg_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/link1_fullshot_ndcg_curve.png -------------------------------------------------------------------------------- /imgs/link1_loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/link1_loss_curve.png -------------------------------------------------------------------------------- /imgs/link1_zeroshot_ndcg_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/link1_zeroshot_ndcg_curve.png -------------------------------------------------------------------------------- /imgs/link2_fullshot_ndcg_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/link2_fullshot_ndcg_curve.png -------------------------------------------------------------------------------- /imgs/link2_loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/link2_loss_curve.png -------------------------------------------------------------------------------- /imgs/link2_zeroshot_ndcg_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/link2_zeroshot_ndcg_curve.png -------------------------------------------------------------------------------- /imgs/overall_performance1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/overall_performance1.png -------------------------------------------------------------------------------- /imgs/overall_performance2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/overall_performance2.png -------------------------------------------------------------------------------- /imgs/routing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/routing.png -------------------------------------------------------------------------------- /imgs/scaling_law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/scaling_law.png -------------------------------------------------------------------------------- /imgs/training_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/training_time.png -------------------------------------------------------------------------------- /imgs/tuning_steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/imgs/tuning_steps.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/model.py -------------------------------------------------------------------------------- /node_classification/Utils/TimeLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/node_classification/Utils/TimeLogger.py -------------------------------------------------------------------------------- /node_classification/data_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/node_classification/data_handler.py -------------------------------------------------------------------------------- /node_classification/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/node_classification/main.py -------------------------------------------------------------------------------- /node_classification/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/node_classification/model.py -------------------------------------------------------------------------------- /node_classification/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/node_classification/params.py -------------------------------------------------------------------------------- /params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUDS/AnyGraph/HEAD/params.py --------------------------------------------------------------------------------