A Pytorch implementation of "Multi-Relational Graph Neural Architecture Search with Fine-grained Message Passing" in ICDM'22.
To tackle the limitations of single-relational setting and coarse-grained search space design in existing graph NAS, in this paper, we propose a novel framework of multirelational graph neural architecture search, dubbed MR-GNAS, to automatically develop innovative and excellent multi-relational GNN architectures.
Here provide some examples of how to run the code (with link prediction task, same with node classification task), and the best hyper-parameters can be found in our work.
python mr_lp_search.py
python mr_lp_train.py --genotype "[Genotype(alpha_cell=[('pre_sub', 1, 0), ('f_sparse_comp', 2, 1), ('f_sparse_comp', 3, 2), ('a_max', 4, 2), ('a_max', 5, 3), ('f_sparse_last', 6, 5), ('f_sparse_last', 7, 5)], concat_node=[4, 5, 6, 7], score_func='sf_DisMult')]"
Please feel free to connect [email protected] for any questions and issues of this work.
You are welcome to kindly cite our paper:
@inproceedings{mrgnas_zheng2022mrgnas,
title={Multi-Relational Graph Neural Architecture Search with Fine-grained Message Passing},
author={Zheng, Xin and Zhang, Miao and Chen, Chunyang and Li, Chaojie and Zhou, Chuan, and Pan, Shirui},
booktitle={IEEE International Conference on Data Mining (ICDM)},
year={2022}
}