MUSE: Multi-Knowledge Passing on the Edges, Boosting Knowledge Graph Completion
Pengjie Liu
TL;DR
Knowledge Graph Completion struggles with incomplete triples and long-tail nodes. MUSE introduces a triadic embedding approach with Prior Knowledge Learning (BERT fine-tuning on entity descriptions), Context Message Passing (edge-focused, attention-guided message flow), and Relational Path Aggregation (path-level attention), unified via a Multi-Knowledge Fusion mechanism. It achieves state-of-the-art results across FB15k-237, WN18, WN18RR, and NELL995, with notable gains under LIS conditions, and ablation confirms the value of each module and the fine-tuned semantic signals. The work advances KG completion by effectively injecting external semantic knowledge into graph-based reasoning and provides reproducible code for broader adoption.
Abstract
Knowledge Graph Completion (KGC) aims to predict the missing information in the (head entity)-[relation]-(tail entity) triplet. Deep Neural Networks have achieved significant progress in the relation prediction task. However, most existing KGC methods focus on single features (e.g., entity IDs) and sub-graph aggregation, which cannot fully explore all the features in the Knowledge Graph (KG), and neglect the external semantic knowledge injection. To address these problems, we propose MUSE, a knowledge-aware reasoning model to learn a tailored embedding space in three dimensions for missing relation prediction through a multi-knowledge representation learning mechanism. Our MUSE consists of three parallel components: 1) Prior Knowledge Learning for enhancing the triplets' semantic representation by fine-tuning BERT; 2) Context Message Passing for enhancing the context messages of KG; 3) Relational Path Aggregation for enhancing the path representation from the head entity to the tail entity. Our experimental results show that MUSE significantly outperforms other baselines on four public datasets, such as over 5.50% improvement in H@1 and 4.20% improvement in MRR on the NELL995 dataset. The code and all datasets will be released via https://github.com/NxxTGT/MUSE.
