CORE: Cyclic Orthotope Relation Embedding for Knowledge Graph Completion
Summary
This paper introduces CORE, a new knowledge graph completion model that uses cyclic orthotope relation embeddings on a torus manifold to address boundary constraints in region-based models. Experiments show competitive performance in link prediction tasks.
View Cached Full Text
Cached at: 05/13/26, 06:32 AM
# CORE: Cyclic Orthotope Relation Embedding for Knowledge Graph Completion
Source: [https://arxiv.org/html/2605.11159](https://arxiv.org/html/2605.11159)
###### Abstract
Knowledge graph completion \(KGC\) aims to automatically infer missing facts in multi\-relational data by mapping entities and relations into continuous representation spaces\. Recent region\-based embedding models have shown great promise in capturing complex logical patterns by representing relations as geometric regions\. However, these models inevitably suffer from absolute boundary constraints during optimization\. Conversely, without such constraints, relation regions expand indefinitely\. To address the limitation, we proposeCORE\(Cyclic Orthotope Relation Embedding\), a novel KGC model that embeds entities and relations onto a boundary\-less torus manifold\.CORE represents relations as cyclic orthotopes on the torus manifold, allowing regions to seamlessly wrap around spatial boundaries to ensure smooth gradient conduction\. Furthermore, an adaptive width regularization is introduced to prevent unconditional region expansion\. Theoretical analysis proves that CORE can capture various complex relation patterns such as subsumption and intersection\. Extensive experiments on four benchmark datasets demonstrate that CORE achieves highly competitive performance, significantly improving link prediction accuracy in dense semantic environments\.
## IIntroduction
With the rapid development of information technology, the volume of data generated by human society is growing exponentially\. Extracting valuable structural knowledge from massive, heterogeneous, and unstructured data has become a core challenge in the field of artificial intelligence\. Knowledge Graphs \(KGs\) have emerged as an effective solution to this demand\. Fundamentally, a knowledge graph is a semantic network that reveals the relations between entities\. It employs a graph structure to store real\-world facts, where nodes represent real\-world entities and edges represent relations between them\. The fundamental format of KGs are factual triples, denoted as\(h,r,t\)\(h,r,t\), indicating that a head entityhhis connected to a tail entityttvia a relationrr\. Owing to their structured nature, large\-scale KGs such as Freebase\[[1](https://arxiv.org/html/2605.11159#bib.bib1)\], DBpedia\[[2](https://arxiv.org/html/2605.11159#bib.bib2)\], YAGO\[[3](https://arxiv.org/html/2605.11159#bib.bib3)\]and Wikidata\[[4](https://arxiv.org/html/2605.11159#bib.bib4)\]have been widely deployed in downstream applications, including intelligent question answering\[[5](https://arxiv.org/html/2605.11159#bib.bib5)\]and recommendation systems\[[6](https://arxiv.org/html/2605.11159#bib.bib6)\]\.
Despite their massive scale, knowledge graphs are often incomplete\. Since KGs are primarily constructed through automated or semi\-automated extraction algorithms from unstructured text or encyclopedias, they suffer from algorithmic inaccuracies and the inherent latency of knowledge\. This incompleteness severely restricts the reasoning capabilities and generalization potential of KGs in downstream tasks\. Consequently, Knowledge Graph Completion \(KGC\), also known as link prediction, has become a critical research area\. The primary objective of KGC is to automatically infer missing fact such as predicting the tail entity in\(h,r,?\)\(h,r,?\)or the relation in\(h,?,t\)\(h,?,t\)based on existing triples within the graph\.
To tackle the KGC task, Knowledge Graph Embedding \(KGE\) has become the mainstream paradigm\. Traditional translational distance models, such as TransE\[[8](https://arxiv.org/html/2605.11159#bib.bib8)\]and RotatE\[[9](https://arxiv.org/html/2605.11159#bib.bib9)\], project entities and relations into continuous vector spaces, defining relations as translations or rotations\. To enhance expressive power, region\-based embedding models have been proposed\. Models like BoxE\[[10](https://arxiv.org/html/2605.11159#bib.bib10)\]embed entities as points but model relations as geometric regions\. A triple is considered valid if the entities fall within the corresponding relation’s spatial region, allowing the model to naturally capture complex mapping properties and hierarchical structures\.
However, existing region\-based embedding models all face the same challenge\. They inevitably suffer from absolute boundary constraints within the representation space\. During training and optimization processes, if absolute spatial boundaries are not enforced, relational regions tend to expand indefinitely to accommodate more entities, while negative samples may diverge without boundaries\. Conversely, imposing forced spatial mapping or hard boundary truncation to constrain the embedding space may induce severe gradient saturation at the edges of relational regions\. This hard truncation approach mathematically distorts the geometric structure of relations and excludes boundary entities that logically belong to them\.Consequently, the model’s ability to precisely characterize relation regions is compromised, heavily limiting the overall completion performance\.
To overcome the boundary limitations of traditional region embeddings, we proposeCORE\(Cyclic Orthotope Relation Embedding\), a novel KGC model based on spatial representation\. CORE extends region embeddings into the torus manifold, a compact Abelian Lie group\. The model represents entities as dynamic points and relations as boundary\-less cyclic orthotopes\. Specifically, a factual triple is considered true if both the head and tail entities fall precisely within their corresponding cyclic orthotopes\. By leveraging the equivalence class mapping rules of the quotient space, CORE allows relation regions to seamlessly cross spatial boundaries while maintaining continuity\. This topological advantage effectively resolves the local gradient saturation at region edges, capturing boundary entities that would otherwise be discarded in traditional models\. Furthermore, to prevent the relation regions from falling into an inflation shortcut within the boundary\-less manifold, we introduce an adaptive width regularization mechanism to maintain high precision\.
The main contributions of this paper are summarized as follows:
- •We introduce region embeddings into a boundary\-less torus manifold to address the boundary constraints prevalent in previous methods\. Specifically, we represent entities as dynamic points and relations as cyclic orthotopes\. Furthermore, we apply an adaptive width regularization strategy to prevent unconditional region inflation\.
- •Our model captures various complex relation patterns through geometric interactions between cyclic orthotope regions\. We theoretically demonstrate the model’s capability to express patterns including symmetry, anti\-symmetry, inversion, subsumption, intersection, and mutual exclusion\.
- •We evaluate the performance of our model on the link prediction task using the FB15k, FB15k\-237, WN18, and WN18RR benchmark datasets\. Experimental results show that CORE achieves competitive performance against various baseline models\.
## IIRelated Work
### II\-ARepresentation Space\-based Models
Traditional KGC models predominantly learn embeddings by mapping entities and relations into specific mathematical spaces to capture relational patterns and structural attributes\.
Models in Common Vector Spaces\.The most widely adopted approach involves embedding knowledge graphs into real or complex vector spaces\. TransE\[[8](https://arxiv.org/html/2605.11159#bib.bib8)\]is a pioneering model that represents relations as simple translations between entity vectors\. To address its limitations in modeling complex relations, subsequent variants like TransH\[[11](https://arxiv.org/html/2605.11159#bib.bib11)\]and TransR\[[12](https://arxiv.org/html/2605.11159#bib.bib12)\]introduced relation\-specific hyperplanes and separate relation spaces\. Alternatively, semantic matching models such as DistMult\[[13](https://arxiv.org/html/2605.11159#bib.bib13)\]utilize bilinear operations to capture semantic interactions\. To properly model asymmetric relations, ComplEx\[[14](https://arxiv.org/html/2605.11159#bib.bib14)\]extends the embeddings into the complex vector space, while RotatE\[[9](https://arxiv.org/html/2605.11159#bib.bib9)\]elegantly defines relations as rotations in the complex plane\. SimplE\[[32](https://arxiv.org/html/2605.11159#bib.bib32)\]models asymmetric relations by learning two independent representations for each entity and two diagonal matrices for each relation\. DualE\[[33](https://arxiv.org/html/2605.11159#bib.bib33)\]embeds entities and relations into the dual quaternion space, a hypercomplex extension of the complex number system\. HAKE\[[35](https://arxiv.org/html/2605.11159#bib.bib35)\]maps entities into the polar coordinate system such that it can distinguish the hierarchical levels of the entities\.
Models in other Spaces\.Beyond standard vector spaces, researchers have explored specialized geometric and algebraic structures to better reflect the underlying topology of knowledge graphs\. For instance, TorusE\[[15](https://arxiv.org/html/2605.11159#bib.bib15)\]and KGLG\[[16](https://arxiv.org/html/2605.11159#bib.bib16)\]map entities onto a torus \(a compact Lie group\) to naturally resolve the divergence issues of embeddings\. To capture the inherent hierarchical and tree\-like structures of KGs, hyperbolic geometry models such as MuRP\[[17](https://arxiv.org/html/2605.11159#bib.bib17)\]and ATTH\[[18](https://arxiv.org/html/2605.11159#bib.bib18)\]leverage negative curvature spaces\. Additionally, spherical geometries, as seen in TransC\[[19](https://arxiv.org/html/2605.11159#bib.bib19)\], have been utilized to encapsulate concepts and instances within closed manifolds\.
Region\-based Embedding Models\.As a highly expressive subset of representation space models, region\-based embeddings shift the paradigm by modeling entities as points and relations as complex geometric regions\. A triple is scored based on the distance from the entity points to the relation regions\. BoxE\[[10](https://arxiv.org/html/2605.11159#bib.bib10)\]pioneers this by modeling relations as hyper\-rectangles in Euclidean space, giving entities dynamic contextual representations based on their interacting counterparts\. To capture more complex compositional rules, ExpressivE\[[20](https://arxiv.org/html/2605.11159#bib.bib20)\]expands this concept by defining relations as hyper\-parallelograms in a virtual triple space\. Similarly, Octagon\[[21](https://arxiv.org/html/2605.11159#bib.bib21)\]improves geometric intuitiveness by utilizing axis\-aligned octagons to enforce boundary constraints\. While these region\-based models suffer from absolute boundary constraints\. Our proposed model, CORE, belongs to this category but critically diverges by mapping cyclic orthotope regions onto a boundary\-less torus manifold, thereby eliminating the gradient saturation issues associated with absolute boundaries\.
### II\-BNeural Network\-based Models
To overcome the limited expressiveness of shallow representation spaces in modeling highly non\-linear interactions, neural networks have been widely applied to KGC\. ConvE\[[22](https://arxiv.org/html/2605.11159#bib.bib22)\]introduces 2D convolutional layers over reshaped embeddings to extract global semantic features efficiently with fewer parameters\. Furthermore, Graph Neural Networks \(GNNs\) have been adopted to aggregate structural neighborhood information\. For example, R\-GCN\[[23](https://arxiv.org/html/2605.11159#bib.bib23)\]introduces relation\-specific transformations for message passing, while KBGAT\[[24](https://arxiv.org/html/2605.11159#bib.bib24)\]incorporates multi\-head attention mechanisms to weigh the importance of different neighboring nodes\. Although highly expressive, neural network models often face challenges related to high computational complexity, risk of overfitting, and lack of interpretability\.
### II\-CPre\-trained Language Model\-based Models
With the rapid advancement of Large Language Models \(LLMs\), incorporating textual context and external knowledge into KGC has yielded significant performance gains\. Models like KG\-BERT\[[25](https://arxiv.org/html/2605.11159#bib.bib25)\]treat triples as text sequences, framing link prediction as a sequence classification task encoded by PLMs\. Extensions like SimKGC\[[26](https://arxiv.org/html/2605.11159#bib.bib26)\]introduce contrastive learning to enhance the model’s discriminative reasoning abilities\. Other approaches, such as KGT5\[[27](https://arxiv.org/html/2605.11159#bib.bib27)\]and KICGPT\[[28](https://arxiv.org/html/2605.11159#bib.bib28)\], utilize generative architectures and in\-context learning to bridge structural knowledge with natural language\. While these methods demonstrate exceptional performance by leveraging vast external corpora, their heavy reliance on massive parameters makes them computationally expensive and occasionally susceptible to model hallucinations\.
## IIIMethod
### III\-ANotations
Let a knowledge graph be defined as a directed graph𝒢=\{ℰ,ℛ,𝒯\}\\mathcal\{G\}=\\\{\\mathcal\{E\},\\mathcal\{R\},\\mathcal\{T\}\\\}, whereℰ\\mathcal\{E\}is the set of entities,ℛ\\mathcal\{R\}is the set of relations, and𝒯⊆ℰ×ℛ×ℰ\\mathcal\{T\}\\subseteq\\mathcal\{E\}\\times\\mathcal\{R\}\\times\\mathcal\{E\}is the set of facts\. A factual triple is denoted asr\(eh,et\)r\(e\_\{h\},e\_\{t\}\), whereeh,et∈ℰe\_\{h\},e\_\{t\}\\in\\mathcal\{E\}act as the head and tail entities, andr∈ℛr\\in\\mathcal\{R\}is the relation between them\.
The target embedding space of CORE is add\-dimensional torus𝕋d≅\[0,1\)d\\mathbb\{T\}^\{d\}\\cong\[0,1\)^\{d\}, with\[0,1\)\[0,1\)serving as its fundamental domain\. We use𝐞hr\(eh,et\)\\mathbf\{e\}\_\{h\}^\{r\(e\_\{h\},e\_\{t\}\)\}to denote the specific dynamic representation of the head entity in the context of the tripler\(eh,et\)r\(e\_\{h\},e\_\{t\}\)\.∥⋅∥x\\\|\\cdot\\\|\_\{x\}denotes theLxL\_\{x\}\-norm, while⊙\\odotand⊘\\oslashrepresent element\-wise multiplication and division, respectively\.
### III\-BPreliminaries: Torus
To support boundary\-less spatial mapping and continuous gradient descent, CORE selects the compact Abelian Lie group as its underlying mathematical space\. Specifically, entities and relations are embedded into annn\-dimensional torus space𝕋n\\mathbb\{T\}^\{n\}\. Mathematically, the torus𝕋n\\mathbb\{T\}^\{n\}is defined as the quotient space of the real coordinate spaceℝn\\mathbb\{R\}^\{n\}under the integer latticeℤn\\mathbb\{Z\}^\{n\}:
𝕋n≅ℝn/∼=\{\[𝐱\]∣𝐱∈ℝn\},\\mathbb\{T\}^\{n\}\\cong\\mathbb\{R\}^\{n\}/\\sim=\\\{\[\\mathbf\{x\}\]\\mid\\mathbf\{x\}\\in\\mathbb\{R\}^\{n\}\\\},\(1\)where\[𝐱\]\[\\mathbf\{x\}\]represents an equivalence class\. In practical computations, any diverging coordinate𝐱∈ℝn\\mathbf\{x\}\\in\\mathbb\{R\}^\{n\}can be uniquely mapped to standard coordinates within\[0,1\)n\[0,1\)^\{n\}via a non\-negative modulo operation \(𝐱mod1\\mathbf\{x\}\\bmod 1\)\. This periodic wraparound property ensures that when an entity moves and crosses the spatial bounds, it seamlessly re\-enters from the opposite side, providing mathematical support for smooth distance evaluation\.
### III\-CThe CORE Model
#### III\-C1Dynamic Entity Representation
To enable entities to exhibit varying semantic features when interacting with different objects, we introduce a context\-aware dynamic representation mechanism\. Every entityei∈ℰe\_\{i\}\\in\\mathcal\{E\}is parameterized by two vectors: a base position𝐞i∈ℝd\\mathbf\{e\}\_\{i\}\\in\\mathbb\{R\}^\{d\}representing its initial coordinate on the torus, and a transformational bump𝐛i∈ℝd\\mathbf\{b\}\_\{i\}\\in\\mathbb\{R\}^\{d\}denoting its spatial shifting effect on other entities\.
For a given tripler\(eh,et\)r\(e\_\{h\},e\_\{t\}\), the final embeddings of the head and tail entities are influenced by each other’s transformational bumps\. Under the natural projection rule of the torus geometry, the final dynamic embeddings are calculated as:
𝐞hr\(eh,et\)\\displaystyle\\mathbf\{e\}\_\{h\}^\{r\(e\_\{h\},e\_\{t\}\)\}=\(𝐞h\+𝐛t\)mod1,\\displaystyle=\(\\mathbf\{e\}\_\{h\}\+\\mathbf\{b\}\_\{t\}\)\\bmod 1,\(2\)𝐞tr\(eh,et\)\\displaystyle\\mathbf\{e\}\_\{t\}^\{r\(e\_\{h\},e\_\{t\}\)\}=\(𝐞t\+𝐛h\)mod1\.\\displaystyle=\(\\mathbf\{e\}\_\{t\}\+\\mathbf\{b\}\_\{h\}\)\\bmod 1\.\(3\)This mechanism allows a single entity to flexibly distribute across different local regions of the torus topology depending on the relational context\.
#### III\-C2Cyclic Orthotope Relation Representation
To complement the dynamic entity embeddings, CORE models each relationr∈ℛr\\in\\mathcal\{R\}as two independent cyclic orthotopes—on𝕋d\\mathbb\{T\}^\{d\}: the head region𝐫h\\mathbf\{r\}^\{h\}and the tail region𝐫t\\mathbf\{r\}^\{t\}\.
Taking the head region𝐫h\\mathbf\{r\}^\{h\}as an example, its spatial span is determined by two core parameters: the region center𝐜𝐫h∈\[0,1\)d\\mathbf\{c\}\_\{\\mathbf\{r\}^\{h\}\}\\in\[0,1\)^\{d\}, which acts as the semantic anchor, and the region width𝐰𝐫h∈\(0,0\.5\]d\\mathbf\{w\}\_\{\\mathbf\{r\}^\{h\}\}\\in\(0,0\.5\]^\{d\}, which dictates the coverage capacity along each dimension\. The theoretical upper limit of the width is naturally constrained to0\.50\.5because the maximum topological distance in𝕋d\\mathbb\{T\}^\{d\}is0\.50\.5\.
Combining these parameters with the torus distance metric, the set of pointsB𝐫hB\_\{\\mathbf\{r\}^\{h\}\}covered by the cyclic orthotope is formulated as:
B𝐫h=\{𝐱∈𝕋d∣min\(\|𝐱−𝐜𝐫h\|,𝟏−\|𝐱−𝐜𝐫h\|\)≤𝐰𝐫h\}\.B\_\{\\mathbf\{r\}^\{h\}\}=\\left\\\{\\mathbf\{x\}\\in\\mathbb\{T\}^\{d\}\\mid\\min\(\|\\mathbf\{x\}\-\\mathbf\{c\}\_\{\\mathbf\{r\}^\{h\}\}\|,\\mathbf\{1\}\-\|\\mathbf\{x\}\-\\mathbf\{c\}\_\{\\mathbf\{r\}^\{h\}\}\|\)\\leq\\mathbf\{w\}\_\{\\mathbf\{r\}^\{h\}\}\\right\\\}\.\(4\)
Geometrically, a factual tripler\(eh,et\)r\(e\_\{h\},e\_\{t\}\)is considered valid if the final transformed embedding of the head entity𝐞hr\(eh,et\)\\mathbf\{e\}\_\{h\}^\{r\(e\_\{h\},e\_\{t\}\)\}falls precisely within the boundary of the relation’s head region𝐫h\\mathbf\{r\}^\{h\}, with a similar condition applying to the tail entity\. The most significant advantage of modeling relation regions as cyclic orthotopes lies in their natural topological wraparound property\. To clearly illustrate the topological interaction between entities and cyclic orthotopes, Figure[1](https://arxiv.org/html/2605.11159#S3.F1)provides an intuitive example from both a 2D unrolled plane and a 3D manifold perspective\.
\(a\)2D Unrolled Plane
\(b\)3D Torus Manifold Perspective
Figure 1:Illustration of the CORE model\. The cyclic orthotope naturally wraps around the spatial boundaries\.Consider a valid triple that crosses the spatial boundary, where the final embedding of the head entity is denoted as𝐡final\\mathbf\{h\}\_\{final\}\. In traditional region\-based models, when the region width expands and touches the artificially imposed boundaries \(e\.g\., the right edge in Figure[1a](https://arxiv.org/html/2605.11159#S3.F1.sf1)\) due to spatial restrictions, the exceeding portion is forcefully truncated\. This hard truncation severely impairs the model’s expressive capacity and logical integrity\.
In contrast, within the CORE space, when the upper bound of the head region𝐫h\\mathbf\{r\}^\{h\}exceeds the coordinate1\.01\.0, the exceeding portion strictly follows the equivalence class mapping rule and seamlessly re\-enters the space from the lower bound0\.00\.0on the left side\. Consequently, the entity𝐡final\\mathbf\{h\}\_\{final\}, which lands on the extreme left of the space, is perfectly enveloped within the logically continuous head region𝐫h\\mathbf\{r\}^\{h\}under the torus topology—despite being numerically distant from the region’s center on the right\. The model successfully and naturally evaluates this as a valid fact\.
As visualized in the 3D torus manifold in Figure[1b](https://arxiv.org/html/2605.11159#S3.F1.sf2), this boundary\-crossing region is, in its physical essence, an absolutely continuous surface patch\. This seamless nature of the relation region plays a pivotal role in model optimization: it ensures that for any entity located within a cross\-boundary region, the derivatives remain absolutely continuous and smooth as it is optimized toward the region center, effectively eliminating the gradient saturation and vanishing issues prevalent at the edges of Euclidean spaces\.
#### III\-C3Distance Metric and Scoring Function
For any two points𝐱,𝐲\\mathbf\{x\},\\mathbf\{y\}in the torus space, the shortest topological distance on theii\-th dimension is defined asδ\(xi,yi\)=min\(\|xi−yi\|,1−\|xi−yi\|\)\\delta\(x\_\{i\},y\_\{i\}\)=\\min\(\|x\_\{i\}\-y\_\{i\}\|,1\-\|x\_\{i\}\-y\_\{i\}\|\)\.
To quantify the spatial plausibility of an entity embedding𝐱\\mathbf\{x\}falling into a target relation region𝒓\\boldsymbol\{r\}, we design a smooth, piecewise distance function:
dist\(𝐱,𝒓\)=\{δ\(𝐱,𝐜𝒓\)⊘𝐰𝒓,ifδ\(𝐱,𝐜𝒓\)≤𝐰𝒓,\(δ\(𝐱,𝐜𝒓\)−𝐰𝒓\)⊘𝐰𝒓2\+𝟏,otherwise\.\\mathrm\{dist\}\(\\mathbf\{x\},\\boldsymbol\{r\}\)=\\begin\{cases\}\\delta\(\\mathbf\{x\},\\mathbf\{c\}\_\{\\boldsymbol\{r\}\}\)\\oslash\\mathbf\{w\}\_\{\\boldsymbol\{r\}\},&\\text\{if \}\\delta\(\\mathbf\{x\},\\mathbf\{c\}\_\{\\boldsymbol\{r\}\}\)\\leq\\mathbf\{w\}\_\{\\boldsymbol\{r\}\},\\\\\[6\.45831pt\] \(\\delta\(\\mathbf\{x\},\\mathbf\{c\}\_\{\\boldsymbol\{r\}\}\)\-\\mathbf\{w\}\_\{\\boldsymbol\{r\}\}\)\\oslash\\mathbf\{w\}\_\{\\boldsymbol\{r\}\}^\{2\}\+\\mathbf\{1\},&\\text\{otherwise\.\}\\end\{cases\}\(5\)This function provides gentle gradients to allow entities to traverse freely within the region, while applying sharp, quadratic penalties to negative samples outside the region\.
The overall distanced\(r\(eh,et\)\)d\(r\(e\_\{h\},e\_\{t\}\)\)for a triple is the aggregated spatial distance of both the head and tail entities \(utilizing norms such asL1L\_\{1\},L2L\_\{2\}, oreL2eL\_\{2\}\)\. Finally, the scoring function is defined asf\(r\(eh,et\)\)=−d\(r\(eh,et\)\)f\(r\(e\_\{h\},e\_\{t\}\)\)=\-d\(r\(e\_\{h\},e\_\{t\}\)\), where a higher score implies a higher probability of the triple being factual\.
### III\-DModel Optimization and Width Regularization
To train the model effectively, we employ a margin\-based self\-adversarial negative sampling loss function\[[9](https://arxiv.org/html/2605.11159#bib.bib9)\]\. This loss function assigns higher exponential weights to difficult negative samples \(i\.e\., incorrect triples located close to the region centers\)\.
Furthermore, since the fundamental domain of𝕋d\\mathbb\{T\}^\{d\}is bounded within\[0,1\)d\[0,1\)^\{d\}, standard region\-based training often exploits an optimization shortcut: unconditionally inflating the relation widths𝐰𝐫h\\mathbf\{w\}\_\{\\mathbf\{r\}^\{h\}\}and𝐰𝐫t\\mathbf\{w\}\_\{\\mathbf\{r\}^\{t\}\}to cover the entire manifold\. To suppress this risk, we introduce an adaptive width regularization penalty using theL2L\_\{2\}\-norm:
LReg=1\|ℛ\|∑r∈ℛ\(‖𝐰𝐫h‖22\+‖𝐰𝐫t‖22\)\.L\_\{Reg\}=\\frac\{1\}\{\|\\mathcal\{R\}\|\}\\sum\_\{r\\in\\mathcal\{R\}\}\\left\(\\\|\\mathbf\{w\}\_\{\\mathbf\{r\}^\{h\}\}\\\|\_\{2\}^\{2\}\+\\\|\\mathbf\{w\}\_\{\\mathbf\{r\}^\{t\}\}\\\|\_\{2\}^\{2\}\\right\)\.\(6\)The final joint optimization objective is formulated asL=LKGE\+λLRegL=L\_\{KGE\}\+\\lambda L\_\{Reg\}, whereλ≥0\\lambda\\geq 0is a hyperparameter balancing the regularization strength\.
### III\-EModel Capabilities
Based on geometric interactions on the torus space, CORE is theoretically fully expressive and capable of capturing diverse and complex relational patterns:
- •Symmetry:r\(x,y\)⇒r\(y,x\)r\(x,y\)\\Rightarrow r\(y,x\)\. CORE captures symmetry by learning identical parameters for the head and tail regions:𝐜𝐫h=𝐜𝐫t\\mathbf\{c\}\_\{\\mathbf\{r\}^\{h\}\}=\\mathbf\{c\}\_\{\\mathbf\{r\}^\{t\}\}and𝐰𝐫h=𝐰𝐫t\\mathbf\{w\}\_\{\\mathbf\{r\}^\{h\}\}=\\mathbf\{w\}\_\{\\mathbf\{r\}^\{t\}\}\.
- •Anti\-symmetry:r\(x,y\)⇒¬r\(y,x\)r\(x,y\)\\Rightarrow\\neg r\(y,x\)\. CORE models this by ensuring the head and tail regions are strictly disjoint in the topological space:𝐫h∩𝐫t=∅\\mathbf\{r\}^\{h\}\\cap\\mathbf\{r\}^\{t\}=\\emptyset\.
- •Inversion:r1\(x,y\)⇔r2\(y,x\)r\_\{1\}\(x,y\)\\iff r\_\{2\}\(y,x\)\. This is achieved by cross\-sharing region parameters between the two relations:\(𝐫1h=𝐫2t\)∧\(𝐫1t=𝐫2h\)\(\\mathbf\{r\}\_\{1\}^\{h\}=\\mathbf\{r\}\_\{2\}^\{t\}\)\\land\(\\mathbf\{r\}\_\{1\}^\{t\}=\\mathbf\{r\}\_\{2\}^\{h\}\)\.
- •Subsumption:r1\(x,y\)⇒r2\(x,y\)r\_\{1\}\(x,y\)\\Rightarrow r\_\{2\}\(x,y\)\. Modeled by completely enveloping the child relation’s region within the parent relation’s region:\(𝐫1h⊆𝐫2h\)∧\(𝐫1t⊆𝐫2t\)\(\\mathbf\{r\}\_\{1\}^\{h\}\\subseteq\\mathbf\{r\}\_\{2\}^\{h\}\)\\land\(\\mathbf\{r\}\_\{1\}^\{t\}\\subseteq\\mathbf\{r\}\_\{2\}^\{t\}\)\.
- •Intersection:r1\(x,y\)∧r2\(x,y\)⇒r3\(x,y\)r\_\{1\}\(x,y\)\\land r\_\{2\}\(x,y\)\\Rightarrow r\_\{3\}\(x,y\)\. CORE captures logical derivation by ensuring the geometric overlap of prior relations is contained within the target relation:\(\(𝐫1h∩𝐫2h\)⊆𝐫3h\)∧\(\(𝐫1t∩𝐫2t\)⊆𝐫3t\)\(\(\\mathbf\{r\}\_\{1\}^\{h\}\\cap\\mathbf\{r\}\_\{2\}^\{h\}\)\\subseteq\\mathbf\{r\}\_\{3\}^\{h\}\)\\land\(\(\\mathbf\{r\}\_\{1\}^\{t\}\\cap\\mathbf\{r\}\_\{2\}^\{t\}\)\\subseteq\\mathbf\{r\}\_\{3\}^\{t\}\)\.
- •Mutual Exclusion:r1\(x,y\)∧r2\(x,y\)⇒⟂r\_\{1\}\(x,y\)\\land r\_\{2\}\(x,y\)\\Rightarrow\\perp\. Modeled by guaranteeing that either the head or tail regions of the two relations have zero overlap:\(𝐫1h∩𝐫2h=∅\)∨\(𝐫1t∩𝐫2t=∅\)\(\\mathbf\{r\}\_\{1\}^\{h\}\\cap\\mathbf\{r\}\_\{2\}^\{h\}=\\emptyset\)\\lor\(\\mathbf\{r\}\_\{1\}^\{t\}\\cap\\mathbf\{r\}\_\{2\}^\{t\}=\\emptyset\)\.
## IVExperiments
To evaluate the performance of the proposed CORE model on the Knowledge Graph Completion \(KGC\) task, we conduct extensive link prediction experiments on multiple benchmark datasets\.
### IV\-AExperimental Setup
#### IV\-A1Datasets
We evaluate our model on four widely used public KGC benchmarks: FB15k\[[8](https://arxiv.org/html/2605.11159#bib.bib8)\], FB15k\-237\[FB15K\-237\], WN18\[[8](https://arxiv.org/html/2605.11159#bib.bib8)\], and WN18RR\[[22](https://arxiv.org/html/2605.11159#bib.bib22)\]\. The detailed statistics of these datasets are summarized in Table[I](https://arxiv.org/html/2605.11159#S4.T1)\.
TABLE I:Statistical details of the benchmark datasets
#### IV\-A2Evaluation Metrics
The core objective of link prediction is to infer the missing head entity\(?,r,t\)\(?,r,t\)or tail entity\(h,r,?\)\(h,r,?\)\. Following standard evaluation protocols in this domain, we report results under the ”Filtered” setting, meaning that all genuine triples present in the training, validation, and test sets are removed from the candidate list prior to ranking to avoid penalizing correct predictions\. We evaluate the predictive performance using Mean Reciprocal Rank \(MRR\) and Hits@KK\(K∈\{1,3,10\}K\\in\\\{1,3,10\\\}\)\.
MRR computes the average of the reciprocal ranks of the correct entities\. A higher MRR indicates that the model ranks the correct entities closer to the top\. Let\|𝒮\|\|\\mathcal\{S\}\|be the total number of test queries andranki\\mathrm\{rank\}\_\{i\}be the rank of the correct target entity for theii\-th query:
MRR=1\|𝒮\|∑i=1\|𝒮\|1ranki\.\\mathrm\{MRR\}=\\frac\{1\}\{\|\\mathcal\{S\}\|\}\\sum\_\{i=1\}^\{\|\\mathcal\{S\}\|\}\\frac\{1\}\{\\mathrm\{rank\}\_\{i\}\}\.\(7\)
Hits@KKmeasures the proportion of correct entities ranked in the topKKpositions\.𝕀\(⋅\)\\mathbb\{I\}\(\\cdot\)is an indicator function that returns 1 if the condition is met and 0 otherwise:
Hits@K=1\|𝒮\|∑i=1\|𝒮\|𝕀\(ranki≤K\)\.\\mathrm\{Hits\}@K=\\frac\{1\}\{\|\\mathcal\{S\}\|\}\\sum\_\{i=1\}^\{\|\\mathcal\{S\}\|\}\\mathbb\{I\}\(\\mathrm\{rank\}\_\{i\}\\leq K\)\.\(8\)
#### IV\-A3Baselines
To verify the effectiveness of our approach, we compare CORE against several robust baselines, categorized by their representation mechanisms: 1\)Translational Distance Models: TransE\[[8](https://arxiv.org/html/2605.11159#bib.bib8)\], TransR\[[12](https://arxiv.org/html/2605.11159#bib.bib12)\], RotatE\[[9](https://arxiv.org/html/2605.11159#bib.bib9)\], DualE\[[33](https://arxiv.org/html/2605.11159#bib.bib33)\], HAKE\[[35](https://arxiv.org/html/2605.11159#bib.bib35)\]\. 2\)Semantic Matching \(Tensor\) Models: DistMult\[[13](https://arxiv.org/html/2605.11159#bib.bib13)\], ComplEx\[[14](https://arxiv.org/html/2605.11159#bib.bib14)\], SimplE\[[32](https://arxiv.org/html/2605.11159#bib.bib32)\]\. 3\)Torus\-based Models: TorusE\[[15](https://arxiv.org/html/2605.11159#bib.bib15)\], KGLG\[[16](https://arxiv.org/html/2605.11159#bib.bib16)\]\. 4\)Neural Network Models: R\-GCN\[[23](https://arxiv.org/html/2605.11159#bib.bib23)\], ConvE\[[22](https://arxiv.org/html/2605.11159#bib.bib22)\]\. 5\)Region\-based Models: BoxE\[[10](https://arxiv.org/html/2605.11159#bib.bib10)\], ExpressivE\[[20](https://arxiv.org/html/2605.11159#bib.bib20)\], Octagon\[[21](https://arxiv.org/html/2605.11159#bib.bib21)\]\.
#### IV\-A4Hyperparameters
Based on grid search, the optimal configurations for CORE are determined as follows: we utilize the Adam optimizer, embedding dimensiond=500d=500, batch size=512=512, negative samples per positive sample=1024=1024, self\-adversarial sampling temperatureα=0\.5\\alpha=0\.5, and fixed marginγ=9\.0\\gamma=9\.0\. The distance function relies ondeL2d\_\{eL\_\{2\}\}\. For all baseline models, we report the best results obtained from their original papers or reproduce them strictly following their recommended configurations\.
### IV\-BMain Results
Table[II](https://arxiv.org/html/2605.11159#S4.T2)presents the link prediction results on the WN18 and WN18RR datasets, while Table[III](https://arxiv.org/html/2605.11159#S4.T3)displays the results for FB15k and FB15k\-237\. The best results are highlighted in bold, and the second\-best are underlined\.
TABLE II:Link Prediction Results on WN18 and WN18RR DatasetsOn the WN18 dataset, which contains rich semantic relations, CORE exhibits outstanding performance\. Specifically, CORE outperforms all baselines in MRR \(0\.952\), Hits@1 \(0\.950\), and Hits@10 \(0\.967\), while achieving the second\-best result in Hits@3\. Compared to BoxE—a Euclidean region\-based model utilizing hyper\-rectangles, CORE achieves substantial improvements \(e\.g\., \+2\.7% in MRR and \+4\.5% in Hits@1\)\. This validates that eliminating boundary optimization bottlenecks unlocks the immense expressive potential of region embeddings\. Furthermore, compared to TorusE \(a point\-based model on the torus\), CORE’s superior performance confirms that modeling relations as parameterized continuous regions \(cyclic orthotopes\) offers greater semantic capacity\.
The WN18RR dataset removes easily inferable inverse relations and presents a highly sparse, deep tree\-like hierarchical structure \(predominantly hypernym/hyponym relations\)\. This poses a severe challenge to a model’s capacity to encapsulate hierarchies\. On WN18RR, CORE surpasses all baselines in the Hits@1 metric and achieves the second\-best MRR, demonstrating exceptional precision in exact hit predictions\. While ExpressivE shows strong results here, CORE achieves competitive accuracy without ExpressivE’s highly complex computational overhead, rendering it far more parameter\-efficient\.
TABLE III:Link Prediction Results on FB15k and FB15k\-237 DatasetsOn FB15k, characterized by a massive volume of inverse relations and highly dense subgraphs, CORE secures absolute superiority across Hits@1, Hits@3, and Hits@10\. In evaluating overall ranking quality, CORE ties for second place in MRR with DualE\. Notably, when compared to other region\-based paradigms like BoxE, CORE establishes a substantial lead \(e\.g\., \+6\.5% in MRR and \+9\.0% in Hits@3\)\. This indicates that the cyclic relation regions introduced by CORE successfully liberate entity distribution freedom within crowded, common\-sense KGs, yielding significant boosts in hit rates across all error\-tolerance thresholds\.
For FB15k\-237, inverse relations that lead to data leakage are entirely removed\. Consequently, models can no longer rely on simple rule memorization and must execute deeper combinatorial and hierarchical reasoning\. Under these stringent conditions, CORE outperforms all baselines\. Specifically, CORE achieves 0\.351 in MRR, 0\.255 in Hits@1, 0\.387 in Hits@3, and 0\.546 in Hits@10\. This robust performance demonstrates the structural completeness of the CORE architecture\. When direct inverse clues are unavailable, CORE expertly leverages geometric subsumption, intersection, and other topological constraints to accurately isolate correct entities from a vast pool of candidates\.
### IV\-CParameter Sensitivity Analysis
To deeply investigate the sensitivity and effectiveness of the proposed width regularization mechanism, we train the model using different regularization coefficientsλ\\lambdawhile holding all other hyperparameters constant\.
\(a\)WN18
\(b\)WN18RR
\(c\)FB15k
\(d\)FB15k\-237
Figure 2:Parameter sensitivity analysis for the width regularization coefficientλ\\lambda\.The experimental results evaluated via MRR and Hits@K are visualized in Figure[2](https://arxiv.org/html/2605.11159#S4.F2)\. On the WordNet datasets \(sparse graphs\), the performance curves exhibit a textbook inverted U\-shape\. Asλ\\lambdaincreases from 0\.1 to approximately 0\.5, all metrics steadily climb to their global peaks\. However, whenλ\>0\.6\\lambda\>0\.6, performance begins to degrade\. This suggests that sparse structures tolerate width regularization relatively well; they require moderate width constraints to prevent region over\-inflation, but excessive penalties disrupt performance\.
Conversely, on the FB15k series, the model achieves its peak performance at relatively smallλ\\lambdavalues\. As the penalty intensifies, all metrics exhibit a rapid monotonic decline\. This behavior originates from the dense nature of FB15k graphs, which contain massive many\-to\-many interactions\. Under these conditions, a strong width penalty forces relation regions to shrink excessively, forcefully squeezing valid, complex entities out of the target region\. Thus, CORE is highly sensitive to width penalties in dense KG topologies\.
### IV\-DAblation Study
To empirically validate the contribution of the two primary components designed in CORE, we conduct ablation studies targeting: 1\) the torus space property \(t\), where its removal degrades the space back to standard Euclidean space; and 2\) the dynamic context\-aware entity representation mechanism \(b\) equipped with transformational bumps\. The results are summarized in Table[IV](https://arxiv.org/html/2605.11159#S4.T4)\.
TABLE IV:Ablation Study Results on the Four Benchmark Datasets\(a\) WN18 and WN18RR Datasets
\(b\) FB15k and FB15k\-237 Datasets
The data reveals that the complete CORE architecture achieves peak performance across all evaluation metrics on every dataset\. This implies that the synergy between the torus embedding space and the dynamic entity representation mechanism significantly elevates the model’s link prediction capabilities\.
Specifically, embedding within the torus topology exhibits the most profound impact\. When the torus property is removed—degenerating the model back to an ordinary Euclidean space—performance sharply plummets across all datasets\. This is most dramatically observed on FB15k, where the MRR nose\-dives from 0\.790 to 0\.723\.
Moreover, the necessity of the dynamic representation mechanism is evident when handling complex relational reasoning\. When the transformational bump is disabled, performance decay is particularly stark on the highly dense FB15k\-237 dataset \(e\.g\., a 4\.6% drop in MRR\)\. This verifies that equipping the model with relation\-aware dynamic shifts grants local adaptability, seamlessly steering entities into their correct logical target regions\.
In conclusion, neither the global spatial inclusiveness of the torus manifold nor the local semantic specificity of the dynamic entity mechanism can be omitted\. The integration of both design elements fundamentally drives the robust performance of CORE\.
## VConclusion
In this paper, we proposed CORE \(Cyclic Orthotope Relation Embedding\), a novel region\-based embedding approach for knowledge graph completion\. By embedding entities and relations into a torus manifold and innovatively representing relations as cyclic orthotopes, CORE effectively overcomes the gradient vanishing and spatial truncation issues caused by absolute boundaries in traditional Euclidean models\. This boundary\-less topological design guarantees smooth optimization and preserves logical expressiveness when embeddings cross spatial limits, thereby enhancing overall training efficiency and stability\.
Furthermore, we redefined the orthotope distance metric on the torus and designed an adaptive width regularization loss to prevent unconditional region inflation\. Theoretical analysis strictly proves that CORE is fully expressive and capable of modeling a diverse set of complex relational patterns, including subsumption, intersection, and mutual exclusion\. Extensive experiments on multiple benchmark datasets demonstrate that CORE achieves outstanding performance across various evaluation metrics, with ablation studies confirming the critical necessity of both the torus topology and the dynamic entity representation modules\.
Ultimately, the cyclic region embedding paradigm introduced in this work provides a robust and fresh spatial geometric perspective for reasoning over large\-scale, complex knowledge graphs\. Future work will explore the scalability of this boundary\-less framework on even larger datasets containing highly diverse and intricate relational structures\.
## References
- \[1\]K\. Bollacker, C\. Evans, P\. K\. Paritosh, T\. Sturge, and J\. Taylor, “Freebase: a collaboratively created graph database for structuring human knowledge,” in*Proceedings of the ACM SIGMOD International Conference on Management of Data*\. ACM, 2008, pp\. 1247–1250\.
- \[2\]S\. Auer, C\. Bizer, G\. Kobilarov, J\. Lehmann, R\. Cyganiak, and Z\. Ives, “Dbpedia: A nucleus for a web of open data,” in*Proceedings of the International Semantic Web Conference*\. Springer, 2007, pp\. 722–735\.
- \[3\]F\. M\. Suchanek, G\. Kasneci, and G\. Weikum, “Yago: A large ontology from wikipedia and wordnet,”*Journal of Web Semantics*, vol\. 6, no\. 3, pp\. 203–217, 2008\.
- \[4\]D\. Vrandečić and M\. Krötzsch, “Wikidata: a free collaborative knowledgebase,”*Communications of the ACM*, vol\. 57, pp\. 78–85, 2014\.
- \[5\]C\. Zhang, H\. Wang, F\. Jiang, and H\. Yin, “Adapting to context\-aware knowledge in natural conversation for multi\-turn response selection,” in*Proceedings of the Web Conference 2021*, 2021, pp\. 1990–2001\.
- \[6\]F\. Zhang, N\. J\. Yuan, D\. Lian, X\. Xie, and W\. Ma, “Collaborative knowledge base embedding for recommender systems,” in*Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining*\. ACM, 2016, pp\. 353–362\.
- \[7\]M\. Mintz, S\. Bills, R\. Snow, and D\. Jurafsky, “Distant supervision for relation extraction without labeled data,” in*Proceedings of the Joint Conference of the 47th Annual Meeting of the Association for Computational Linguistics and the 4th International Joint Conference on Natural Language Processing of the AFNLP*, vol\. 2\. Association for Computational Linguistics, 2009, pp\. 1003–1011\.
- \[8\]A\. Bordes, N\. Usunier, A\. García\-Durán, J\. Weston, and O\. Yakhnenko, “Translating embeddings for modeling multi\-relational data,” in*Proceedings of the 27th International Conference on Neural Information Processing Systems*, vol\. 26, 2013, pp\. 2787–2795\.
- \[9\]Z\. Sun, Z\. Deng, J\. Nie, and J\. Tang, “RotatE: Knowledge graph embedding by relational rotation in complex space,” in*Proceedings of the International Conference on Learning Representations*\. OpenReview\.net, 2019\.
- \[10\]R\. Abboud, I\. I\. Ceylan, T\. Lukasiewicz, and T\. Salvatori, “BoxE: A box embedding model for knowledge base completion,” in*Proceedings of the 34th International Conference on Neural Information Processing Systems*, 2020, pp\. 4289–4300\.
- \[11\]Z\. Wang, J\. Zhang, J\. Feng, and Z\. Chen, “Knowledge graph embedding by translating on hyperplanes,” in*Proceedings of the Twenty\-Eighth AAAI Conference on Artificial Intelligence*\. AAAI Press, 2014, pp\. 1112–1119\.
- \[12\]Y\. Lin, Z\. Liu, M\. Sun, Y\. Liu, and X\. Zhu, “Learning entity and relation embeddings for knowledge graph completion,” in*Proceedings of the Twenty\-Ninth AAAI Conference on Artificial Intelligence, January 25\-30, 2015, Austin, Texas, USA*\. AAAI Press, 2015, pp\. 2181–2187\.
- \[13\]B\. Yang, W\. Yih, X\. He, J\. Gao, and L\. Deng, “Embedding entities and relations for learning and inference in knowledge bases,” in*Proceedings of the International Conference on Learning Representations*, 2015, p\. 2181–2187\.
- \[14\]T\. Trouillon, J\. Welbl, S\. Riedel, É\. Gaussier, and G\. Bouchard, “Complex embeddings for simple link prediction,” in*International conference on machine learning*\. PMLR, 2016, pp\. 2071–2080\.
- \[15\]T\. Ebisu and R\. Ichise, “Toruse: Knowledge graph embedding on a lie group,” in*Proceedings of the 32nd AAAI Conference on Artificial Intelligence*\. AAAI Press, 2018, pp\. 1819–1826\.
- \[16\]——, “Generalized translation\-based embedding of knowledge graph,”*IEEE Transactions on Knowledge and Data Engineering*, vol\. 32, pp\. 941–951, 2020\.
- \[17\]I\. Balazevic, C\. Allen, and T\. M\. Hospedales, “Multi\-relational poincaré graph embeddings,” in*Proceedings of the 33th International Conference on Neural Information Processing Systems*, 2019, pp\. 4465–4475\.
- \[18\]I\. Chami, A\. Wolf, D\. Juan, F\. Sala, S\. Ravi, and C\. Ré, “Low\-dimensional hyperbolic knowledge graph embeddings,” in*Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics*\. Association for Computational Linguistics, 2020, pp\. 6901–6914\.
- \[19\]X\. Lv, L\. Hou, J\. Li, and Z\. Liu, “Differentiating concepts and instances for knowledge graph embedding,” in*Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing*\. Association for Computational Linguistics, 2018, pp\. 1971–1979\.
- \[20\]A\. Pavlovic and E\. Sallinger, “Expressive: A spatio\-functional embedding for knowledge graph completion,” in*In Proceedings of the International Conference on Learning Representations*\. OpenReview\.net, 2023\.
- \[21\]V\. Charpenay and S\. Schockaert, “Capturing knowledge graphs and rules with octagon embeddings,” in*Proceedings of the 33rd International Joint Conference on Artificial Intelligence*\. International Joint Conferences on Artificial Intelligence Organization, 8 2024, pp\. 3289–3297\.
- \[22\]T\. Dettmers, P\. Minervini, P\. Stenetorp, and S\. Riedel, “Convolutional 2d knowledge graph embeddings,” in*Proceedings of the 32nd AAAI Conference on Artificial Intelligence*, 2018, pp\. 1811–1818\.
- \[23\]M\. Schlichtkrull, T\. N\. Kipf, P\. Bloem, R\. Van Den Berg, I\. Titov, and M\. Welling, “Modeling relational data with graph convolutional networks,” in*European semantic web conference*\. Springer, 2018, pp\. 593–607\.
- \[24\]D\. Nathani, J\. Chauhan, C\. Sharma, and M\. Kaul, “Learning attention\-based embeddings for relation prediction in knowledge graphs,” in*Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics*\. Association for Computational Linguistics, 2019\.
- \[25\]L\. Yao, C\. Mao, and Y\. Luo, “KG\-BERT: BERT for knowledge graph completion,”*CoRR*, vol\. abs/1909\.03193, 2019\.
- \[26\]L\. Wang, W\. Zhao, Z\. Wei, and J\. Liu, “SimKGC: Simple contrastive knowledge graph completion with pre\-trained language models,” in*Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics*, vol\. 1\. Association for Computational Linguistics, 2022, pp\. 4281–4294\.
- \[27\]A\. Saxena, A\. Kochsiek, and R\. Gemulla, “Sequence\-to\-sequence knowledge graph completion and question answering,” in*Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics*, vol\. 1\. Association for Computational Linguistics, 2022, pp\. 2814–2828\.
- \[28\]Y\. Wei, Q\. Huang, Y\. Zhang, and J\. Kwok, “KICGPT: Large language model with knowledge in context for knowledge graph completion,” in*Findings of the 2023 Conference on Empirical Methods in Natural Language Processing*\. Association for Computational Linguistics, 2023, pp\. 8667–8683\.
- \[29\]T\. Dettmers, P\. Minervini, P\. Stenetorp, and S\. Riedel, “Convolutional 2d knowledge graph embeddings,” in*Proceedings of the AAAI conference on artificial intelligence*, vol\. 32, 2018\.
- \[30\]K\. Toutanova and D\. Chen, “Observed versus latent features for knowledge base and text inference,” in*Proceedings of the 3rd workshop on continuous vector space models and their compositionality*, 2015, pp\. 57–66\.
- \[31\]F\. Mahdisoltani, J\. Biega, and F\. M\. Suchanek, “YAGO3: A knowledge base from multilingual wikipedias,” in*Seventh Biennial Conference on Innovative Data Systems Research, CIDR 2015, Asilomar, CA, USA, January 4\-7, 2015, Online Proceedings*\. www\.cidrdb\.org, 2015\.
- \[32\]S\. M\. Kazemi and D\. Poole, “SimplE embedding for link prediction in knowledge graphs,” in*Advances in Neural Information Processing Systems 31: Annual Conference on Neural Information Processing Systems 2018, NeurIPS 2018, December 3\-8, 2018, Montréal, Canada*, 2018, pp\. 4289–4300\.
- \[33\]Z\. Cao, Q\. Xu, Z\. Yang, X\. Cao, and Q\. Huang, “Dual quaternion knowledge graph embeddings,” in*Proceedings of the AAAI conference on artificial intelligence*, 2021, pp\. 6894–6902\.
- \[34\]J\. Devlin, M\.\-W\. Chang, K\. Lee, and K\. Toutanova, “BERT: Pre\-training of deep bidirectional transformers for language understanding,” in*Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 \(Long and Short Papers\)*, 2019, pp\. 4171–4186\.
- \[35\]Z\. Zhang, J\. Cai, Y\. Zhang, and J\. Wang, “Learning hierarchy\-aware knowledge graph embeddings for link prediction,” in*Proceedings of 34th the AAAI conference on Artificial Intelligence*, 2020, pp\. 3065–3072\.Similar Articles
TeRoR: Decoupled Temporal Rotation with Relational Circular Region for Temporal Knowledge Graph Embedding
TeRoR introduces a novel temporal knowledge graph embedding method that decouples entity temporal evolution with independent rotation transformations and uses relational circular regions to model diverse relation mapping properties, achieving competitive performance on four datasets.
RelBall: Relation Ball with Quaternion Rotation for Knowledge Graph Completion
Proposes RelBall, a KGC model that extends Rotate3D with modulus transformation for modeling hierarchies and a tail-centric relation ball to handle one-to-many relations, achieving competitive link prediction performance.
Collaboration of Fusion and Independence: Hypercomplex-driven Robust Multi-Modal Knowledge Graph Completion
This paper proposes M-Hyper, a novel multi-modal knowledge graph completion method that balances fusion and independence of modality representations using hypercomplex (biquaternion) algebra. The approach introduces Fine-grained Entity Representation Factorization and Robust Relation-aware Modality Fusion modules to achieve state-of-the-art performance with improved robustness.
Context-aware Modality-Topology Co-Alignment for Multimodal Attributed Graphs
Proposes CoMAG, a unified backbone for multimodal attributed graphs that learns task-adaptive reliable contexts and performs modality-preserving alignment, achieving state-of-the-art results on graph-level prediction, modality matching, and graph-conditioned generation.
ReaORE: Reasoning-Guided Progressive Open Relation Extraction Empowered by Large Reasoning Models
Proposes ReaORE, a reasoning-guided framework for open relation extraction that progressively filters and predicts relations via coarse-to-fine reasoning, outperforming existing baselines on two datasets.