Neural Regression with Embeddings for Numerical Attribute Prediction in Knowledge Graphs

arXiv cs.LG Papers

Summary

This paper proposes LitEm, a neural regression model that enables transductive knowledge graph embedding models to predict numerical attributes, achieving strong benchmark results and introducing a co-training framework for improved performance.

arXiv:2608.26729v1 Announce Type: new Abstract: In recent years, transductive knowledge graph embedding models have been applied to tasks such as link prediction and query answering. Although knowledge graphs often contain rich numerical attributes, most embedding models neglect them, limiting their ability to represent real-world knowledge graphs with diverse information. In this work, we propose a neural regression model (LitEm) that enables transductive knowledge graph embedding models to predict numerical attributes within knowledge graphs. Experimental results demonstrate that LitEm achieves the best or second-best results on most attributes across FB15K-237, YAGO15K, DB15K, and Mutagenesis. Furthermore, we propose a co-training framework that jointly trains state-of-the-art transductive knowledge graph embedding models with LitEm, which improves link prediction performance mainly for bilinear models and simultaneously enables them to predict numerical attributes. In addition, the literal-awareness evaluation demonstrates that co-training helps models to encode and exploit attribute information in a "literal-aware'' manner, suggesting that the observed gains are not merely due to additional parameters. We publicly release our implementation at https://github.com/dice-group/dice-embeddings.
Original Article
View Cached Full Text

Cached at: 08/28/26, 09:43 AM

# Neural Regression with Embeddings for Numerical Attribute Prediction in Knowledge Graphs
Source: [https://arxiv.org/html/2608.26729](https://arxiv.org/html/2608.26729)
###### Abstract

In recent years, transductive knowledge graph embedding models have been applied to tasks such as link prediction and query answering\. Although knowledge graphs often contain rich numerical attributes, most embedding models neglect them, limiting their ability to represent real\-world knowledge graphs with diverse information\. In this work, we propose a neural regression model \(LitEm\) that enables transductive knowledge graph embedding models to predict numerical attributes within knowledge graphs\. Experimental results demonstrate thatLitEmachieves the best or second\-best results on most attributes across FB15K\-237, YAGO15K, DB15K, and Mutagenesis\. Furthermore, we propose a co\-training framework that jointly trains state\-of\-the\-art transductive knowledge graph embedding models withLitEm, which improves link prediction performance mainly for bilinear models and simultaneously enables them to predict numerical attributes\. In addition, the literal\-awareness evaluation demonstrates that co\-training helps models to encode and exploit attribute information in a “literal\-aware” manner, suggesting that the observed gains are not merely due to additional parameters\. We publicly release our implementation at[https://github\.com/dice\-group/dice\-embeddings](https://github.com/dice-group/dice-embeddings)\.

###### Keywords:

Knowledge Graphs Embeddings Attribute Prediction

## 1Introduction

A Knowledge Graph \(KG\) represents real\-world entities and their relationships in a structured manner, enabling knowledge representation, information retrieval, and decision\-making across domains such as search engines, drug discovery, natural language processing and recommendation systems\[[28](https://arxiv.org/html/2608.26729#bib.bib28)\]\. Publicly available general\-purpose KGs such as DBpedia\[[16](https://arxiv.org/html/2608.26729#bib.bib24)\], Freebase\[[3](https://arxiv.org/html/2608.26729#bib.bib2)\], and YAGO\[[19](https://arxiv.org/html/2608.26729#bib.bib3)\]store large\-scale real\-world knowledge about entities and their relationships\. However, many existing KGs suffer from incompleteness, which limits their ability to support reasoning tasks due to missing facts\[[18](https://arxiv.org/html/2608.26729#bib.bib25)\]\.

Link prediction is widely used to address incompleteness in KGs by inferring missing links between entities\[[4](https://arxiv.org/html/2608.26729#bib.bib13),[22](https://arxiv.org/html/2608.26729#bib.bib14)\]\. Knowledge Graph Embedding \(KGE\) models represent entities and relations in vector spaces and perform link prediction with state\-of\-the\-art performance\. Numerous KGE methods have been proposed in the literature\[[4](https://arxiv.org/html/2608.26729#bib.bib13),[27](https://arxiv.org/html/2608.26729#bib.bib17),[22](https://arxiv.org/html/2608.26729#bib.bib14),[20](https://arxiv.org/html/2608.26729#bib.bib16),[6](https://arxiv.org/html/2608.26729#bib.bib19),[8](https://arxiv.org/html/2608.26729#bib.bib18)\], but they rely solely on relational information between entities and overlook literals \(textual descriptions, date\-time values, numerical values, measurements, images, and other attribute data\) that can enrich entity representations\[[11](https://arxiv.org/html/2608.26729#bib.bib4)\]\. In particular, numerical literals have been widely used to improve link prediction performance\[[21](https://arxiv.org/html/2608.26729#bib.bib11),[25](https://arxiv.org/html/2608.26729#bib.bib9),[15](https://arxiv.org/html/2608.26729#bib.bib8),[13](https://arxiv.org/html/2608.26729#bib.bib20)\]and other tasks such as complex query answering\[[9](https://arxiv.org/html/2608.26729#bib.bib10)\]\. Such methods either modify the scoring function or incorporate literals during training for numerical attribute imputation and link prediction\. Prior work suggests pretrained KGEs already encode much of the information needed to predict numeric attributes, without modifying the embedding structures\[[26](https://arxiv.org/html/2608.26729#bib.bib7)\]\. We build on this with an approach that learns attribute representations from pretrained embeddings and requires no changes to the KGE scoring function, enabling it to both predict and augment numerical attributes for any transductive KGE model\. Our approach, model\-agnostic in design, can be paired with existing KGE models without modifying their scoring functions in transductive settings to simultaneously augment and predict numerical attributes\. In this work, we provide the following contributions:

- •ProposeLitEm, a neural regression model that predicts numerical attributes from pre\-trained embeddings\.
- •Design a framework that co\-trains KGE models withLitEmto jointly predict and augment numerical attributes\.
- •Introduce a gradient\-based dynamic weighting mechanism to balance KGE and literal losses\.
- •Repurpose DB15K and Mutagenesis as benchmarks for numerical literal prediction, with the first reported results on both\.

## 2Background

### 2\.1Knowledge Graphs

A KG is a structured network representing real\-world entities as nodes and their relationships as edges, conveying information in the form of triples\[[12](https://arxiv.org/html/2608.26729#bib.bib12)\]\. In addition to relational triples, KGs also contain triples that associate entities with their attribute values\. While many definitions of KGs exist, we consider a KG defined as𝒢:=\{\(h,r,t\)\}∪\{\(e,a,v\)\}⊆ℰ×ℛ×ℰ∪ℰ×𝒜×𝒱\\mathcal\{G\}:=\\\{\(h,r,t\)\\\}\\cup\\\{\(e,a,v\)\\\}\\subseteq\\mathcal\{E\}\\times\\mathcal\{R\}\\times\\mathcal\{E\}\\;\\cup\\;\\mathcal\{E\}\\times\\mathcal\{A\}\\times\\mathcal\{V\}whereℰ\\mathcal\{E\},ℛ\\mathcal\{R\}, and𝒜\\mathcal\{A\}denote the sets of entities, relations, and attributes, respectively, and𝒱⊂ℝ\\mathcal\{V\}\\subset\\mathbb\{R\}represents a subset of real numbers\[[23](https://arxiv.org/html/2608.26729#bib.bib23),[15](https://arxiv.org/html/2608.26729#bib.bib8),[9](https://arxiv.org/html/2608.26729#bib.bib10)\]\. A relational triple is represented as\(h,r,t\)\(h,r,t\), whereh,t∈ℰh,t\\in\\mathcal\{E\}andr∈ℛr\\in\\mathcal\{R\}\. Similarly, an attribute \(numerical\) triple is represented as\(e,a,v\)\(e,a,v\), wheree∈ℰe\\in\\mathcal\{E\},a∈𝒜a\\in\\mathcal\{A\}denotes a numerical attribute, andv∈𝒱v\\in\\mathcal\{V\}\. For example,\(B​e​r​l​i​n,C​a​p​i​t​a​l​O​f,G​e​r​m​a​n​y\)\(Berlin,CapitalOf,Germany\)is a relational triple, while\(B​e​r​l​i​n,h​a​s​P​o​p​u​l​a​t​i​o​n,3,960,000\)\(Berlin,hasPopulation,3\{,\}960\{,\}000\)is an example of an attribute \(literal\) triple\.

### 2\.2Transductive Knowledge Graph Embeddings

KGE models represent entities and relations in vector spaces, facilitating downstream tasks such as link prediction\[[8](https://arxiv.org/html/2608.26729#bib.bib18)\]and neural reasoning\[[9](https://arxiv.org/html/2608.26729#bib.bib10)\]\. KGE models are often formulated using parameterized scoring functions of the formϕΘ:ℰ×ℛ×ℰ→ℝ,\\phi\_\{\\Theta\}:\\mathcal\{E\}\\times\\mathcal\{R\}\\times\\mathcal\{E\}\\to\\mathbb\{R\},where the parametersΘ\\Thetatypically include embeddings for entities𝐄∈𝕍\|ℰ\|×de\\mathbf\{E\}\\in\\mathbb\{V\}^\{\|\\mathcal\{E\}\|\\times d\_\{e\}\}and relations𝐑∈𝕍\|ℛ\|×dr\\mathbf\{R\}\\in\\mathbb\{V\}^\{\|\\mathcal\{R\}\|\\times d\_\{r\}\}, along with other learnable components\[[8](https://arxiv.org/html/2608.26729#bib.bib18)\], where𝕍\\mathbb\{V\}denotesdd\-dimensional vector space andd∈ℕ,d\>0d\\in\\mathbb\{N\},d\>0; here entities and relations share the same embedding dimensionalityd\. Embedding methods vary in how they represent relations: TransE\[[4](https://arxiv.org/html/2608.26729#bib.bib13)\]as additive translations, DistMult\[[27](https://arxiv.org/html/2608.26729#bib.bib17)\]via a multiplicative scoring function, ComplEx\[[22](https://arxiv.org/html/2608.26729#bib.bib14)\]in complex\-valued space to capture asymmetry, RotatE\[[20](https://arxiv.org/html/2608.26729#bib.bib16)\]as rotations in complex space, QMult and OMult\[[6](https://arxiv.org/html/2608.26729#bib.bib19)\]as quaternion and octonion extensions of DistMult and ComplEx, DualE\[[5](https://arxiv.org/html/2608.26729#bib.bib15)\]via dual quaternions, and Keci\[[8](https://arxiv.org/html/2608.26729#bib.bib18)\]in Clifford algebra\.

### 2\.3Literal Embedding Models

Literal embedding models extend KGE approaches by learning embeddings for numerical attributes, capturing real\-valued properties of entities in the representation space\. Most existing approaches, however, do not leverage transductive KGE models to jointly learn attribute representations and predict numerical values\. Leta∈𝒜a\\in\\mathcal\{A\}denote a numerical attribute of an entitye∈ℰe\\in\\mathcal\{E\}, and letv∈𝒱v\\in\\mathcal\{V\}represent its associated numerical value\. A literal embedding model defines a scoring functionϕΘ′′:ℰ×𝒜→ℝ\\phi^\{\\prime\}\_\{\\Theta^\{\\prime\}\}:\\mathcal\{E\}\\times\\mathcal\{A\}\\rightarrow\\mathbb\{R\}, where the parametersΘ′\\Theta^\{\\prime\}typically include attribute embeddings𝐀∈ℝ\|𝒜\|×da\\mathbf\{A\}\\in\\mathbb\{R\}^\{\|\\mathcal\{A\}\|\\times d\_\{a\}\}, anddad\_\{a\}denotes the dimensionality of literal embeddings\. The predicted numerical value is given byv^=ϕΘ′′​\(e,a\)\\hat\{v\}=\\phi^\{\\prime\}\_\{\\Theta^\{\\prime\}\}\(e,a\)\.

## 3Related Work

Prior work on numerical attributes in knowledge graphs can be broadly grouped into attribute prediction and literal\-aware embedding approaches\. For numerical attribute prediction, Tay et al\.\[[21](https://arxiv.org/html/2608.26729#bib.bib11)\]jointly learned relational and attribute networks in a shared embedding space, Kotnis and García\-Durán\[[14](https://arxiv.org/html/2608.26729#bib.bib5)\]proposed regression\- and propagation\-based baselines \(LR, NAP, LR\+\+, NAP\+\+, GLOBAL, LOCAL\), Bayram et al\.\[[1](https://arxiv.org/html/2608.26729#bib.bib6)\]introduced MrAP, which propagates attribute values over multi\-relational neighbourhoods, and Xue et al\.\[[26](https://arxiv.org/html/2608.26729#bib.bib7)\]combined graph\-based methods with a pre\-trained language model for masked numerical value prediction \(KGE\-Reg\)\. Other approaches incorporate literals directly into KGE models: TransEA\[[25](https://arxiv.org/html/2608.26729#bib.bib9)\]jointly optimises relational and attribute embeddings, KBLRN\[[10](https://arxiv.org/html/2608.26729#bib.bib1)\]combines relational, latent, and numerical features in a product\-of\-experts framework, LiteralE\[[15](https://arxiv.org/html/2608.26729#bib.bib8)\]injects literals into entity embeddings through a learnable gate, KGA discretises literals into numerical bins linked to entities, exposing them to standard KGE models\[[23](https://arxiv.org/html/2608.26729#bib.bib23)\], and ReaLitE\[[13](https://arxiv.org/html/2608.26729#bib.bib20)\]enriches relation embeddings with literal information for link prediction\.LitEmdiffers from these approaches in what it modifies\. Where KGE\-Reg predicts masked values over a language model,LitEmregresses directly from frozen entity embeddings through a gated\-residual network, and unlike Tay et al\.’s multi\-task setup it adds no auxiliary objective to the KGE model\. LiteralE also uses a gate, but applies it to entity embeddings during KGE training, whereasLitEmgates the prediction of attributes from embeddings that already exist\.LitEmthen pairs this decoder with model\-agnostic co\-training that updates those embeddings through the literal loss alone, leaving the KGE scoring function unchanged\.

## 4Literal Embedding Model

In this section, we presentLiteralEmbedding \(LitEm\), a neural embedding regression model that learns representations and predicts numerical attributes associated with entities in a knowledge graph\. The model uses the pre\-trained embeddings of entities as input features and performs regression to predict the numerical values of different attributes of entities present in the knowledge graph\. Given an attribute triple\(e,a,v\)∈𝒢\(e,a,v\)\\in\\mathcal\{G\}, wheree∈ℰe\\in\\mathcal\{E\}anda∈𝒜a\\in\\mathcal\{A\}, the model takes the entity\-attribute pair\(e,a\)\(\\textit\{e\},\\textit\{a\}\)as input and is trained to predictv, the associated numerical value using the regression function defined in Equation[1](https://arxiv.org/html/2608.26729#S4.E1)\.

LitEmb​a​s​e​\(e,a\)=𝐖2⋅\(𝐑𝐞𝐋𝐔⁡\(𝐖1⋅\[e,a\]\+𝐛1\)\+\[e,a\]\)\+𝐛2\.\\textsc\{LitEm\}\_\{base\}\(\\textit\{e\},\\textit\{a\}\)=\\mathbf\{W\}\_\{2\}\\cdot\\left\(\\mathbf\{ReLU\}\(\\mathbf\{W\}\_\{1\}\\cdot\[\\textbf\{e\},\\textbf\{a\}\]\+\\mathbf\{b\}\_\{1\}\)\+\[\\textbf\{e\},\\textbf\{a\}\]\\right\)\+\\mathbf\{b\}\_\{2\}\.\(1\)
We refer to Equation[1](https://arxiv.org/html/2608.26729#S4.E1)as the base model, where𝐞∈E\\mathbf\{e\}\\in\\textbf\{E\}and𝐚∈A\\mathbf\{a\}\\in\\textbf\{A\}denote the embeddings of the entityeeand attributeaa, respectively, and share the same embedding dimensionalitydd\. In this formulation, the attribute embedding𝐚\\mathbf\{a\}is a trainable parameter, whereas the entity embeddings𝐞\\mathbf\{e\}, obtained from a pre\-trained KGE model and fixed by default \(optionally can be updated duringLitEmtraining\)\. The model first concatenates the entity and attribute embeddings\[𝐞,𝐚\]\[\\mathbf\{e\},\\mathbf\{a\}\], applies a linear transformation \(𝐖1∈ℝ2​d×2​d\\mathbf\{W\}\_\{1\}\\in\\mathbb\{R\}^\{2d\\times 2d\},𝐛1∈ℝ2​d\\mathbf\{b\}\_\{1\}\\in\\mathbb\{R\}^\{2d\}\) followed by a ReLU activation, and adds the original input via a residual connection\. The resulting representation is then projected to a scalar output through a second linear layer \(𝐖2∈ℝ1×2​d\\mathbf\{W\}\_\{2\}\\in\\mathbb\{R\}^\{1\\times 2d\},𝐛2∈ℝ\\mathbf\{b\}\_\{2\}\\in\\mathbb\{R\}\)\. To selectively incorporate literal information, we further extend the model with a*Gated Residual*mechanism inspired by\[[15](https://arxiv.org/html/2608.26729#bib.bib8)\], allowing the model to control the contribution of the residual connection\. The completeLitEm​\(𝐞,𝐚\)\\textsc\{LitEm\}\(\\mathbf\{e\},\\mathbf\{a\}\)model is defined in Equation[2](https://arxiv.org/html/2608.26729#S4.E2)\.

𝐳\\displaystyle\\mathbf\{z\}=𝐑𝐞𝐋𝐔⁡\(𝐖1⋅\[𝐞,𝐚\]\+𝐛1\),\[𝐮𝐠\]\\displaystyle=\\mathbf\{ReLU\}\(\\mathbf\{W\}\_\{1\}\\cdot\[\\mathbf\{e\},\\mathbf\{a\}\]\+\\mathbf\{b\}\_\{1\}\),\\quad\\begin\{bmatrix\}\\mathbf\{u\}\\\\ \\mathbf\{g\}\\end\{bmatrix\}=𝐖res⋅\[𝐳,\[𝐞,𝐚\]\]\+𝐛res\\displaystyle=\\mathbf\{W\}\_\{\\text\{res\}\}\\cdot\[\\mathbf\{z\},\[\\mathbf\{e\},\\mathbf\{a\}\]\]\+\\mathbf\{b\}\_\{\\text\{res\}\}LitEm​\(𝐞,𝐚\)\\displaystyle\\quad\\textsc\{LitEm\}\(\\mathbf\{e\},\\mathbf\{a\}\)=𝐖2⋅\(𝐮⊙σ⁡\(𝐠\)\)\+𝐛2,\\displaystyle=\\mathbf\{W\}\_\{2\}\\cdot\\left\(\\mathbf\{u\}\\odot\\sigma\(\\mathbf\{g\}\)\\right\)\+\\mathbf\{b\}\_\{2\},\(2\)
The gating mechanism projects the concatenated vector\[𝐳,\[𝐞,𝐚\]\]\[\\mathbf\{z\},\[\\mathbf\{e\},\\mathbf\{a\}\]\]through the parameters𝐖res∈ℝ4​d×4​d\\mathbf\{W\}\_\{\\text\{res\}\}\\in\\mathbb\{R\}^\{4d\\times 4d\}and𝐛res∈ℝ4​d\\mathbf\{b\}\_\{\\text\{res\}\}\\in\\mathbb\{R\}^\{4d\}\( as\[𝐞,𝐚\]\[\\mathbf\{e\},\\mathbf\{a\}\]and𝐳∈ℝ2​d\\mathbf\{z\}\\in\\mathbb\{R\}^\{2d\}\), splits the result into a value𝐮\\mathbf\{u\}and a gate𝐠\\mathbf\{g\}\. The value is then modulated via element\-wise multiplication, denoted by⊙\\odot, whereσ\\sigmadenotes the sigmoid activation function\.

### 4\.1Incorporating Literal Information into KGEs

Algorithm 1Combined Training of Embedding Model withLitEm1:Input:Triples

𝒢=\{\(h,r,t\)\}∪\{\(e,a,v\)\}\\mathcal\{G\}=\\\{\(h,r,t\)\\\}\\cup\\\{\(e,a,v\)\\\},labels

q∈\{0,1\}q\\in\\\{0,1\\\}for relational triples; learning rates

γK​G​E\\gamma\_\{KGE\},

γLitEm\\gamma\_\{\\textsc\{LitEm\}\}, epochs

nn, batch size

bb, modelsKGE,LitEm

2:Initialize:

θ=\{θK​G​E,θLitEm\}\\theta=\\\{\\theta\_\{KGE\},\\theta\_\{\\textsc\{LitEm\}\}\\\}
3:forepoch

=1=1to

nndo

4:formini\-batch

B=\{\(h,r,t\)\}B=\\\{\(h,r,t\)\\\}of size

bbdo

5:

𝐡,𝐫,𝐭←KGEθ​\(h,r,t\)\\mathbf\{h\},\\mathbf\{r\},\\mathbf\{t\}\\leftarrow\\textbf\{KGE\}\_\{\\theta\}\(h,r,t\)
6:

q^←σ⁡\(ϕθ​\(h,r,t\)\)\\hat\{q\}\\leftarrow\\sigma\(\\phi\_\{\\theta\}\(h,r,t\)\)
7:

ℒK​G​E←−1b∑\[qlog\(q^\)\+\(1−q\)log\(1−q^\)\]\\mathcal\{L\}\_\{KGE\}\\leftarrow\-\\frac\{1\}\{b\}\\sum\[q\\log\(\\hat\{q\}\)\+\(1\-q\)\\log\(1\-\\hat\{q\}\)\]
8:Sample :

BaB\_\{a\}←\\leftarrow\{\(e,a,v\)∈𝒢∣h=e\}\\\{\(e,a,v\)\\in\\mathcal\{G\}\\mid h=e\\\}⊳\\trianglerightAttribute triples for batch

9:

y^←LitEmθ​\(e,a\)\\hat\{y\}\\leftarrow\\textbf\{LitEm\}\_\{\\theta\}\(e,a\)
10:

ℒLitEm←1\|Ba\|​∑\|y^−v\|\\mathcal\{L\}\_\{\\textsc\{LitEm\}\}\\leftarrow\\frac\{1\}\{\|B\_\{a\}\|\}\\sum\|\\hat\{y\}\-v\|
11:

λ←min⁡\(∥∇𝐄ℒK​G​E∥2∥∇𝐄ℒLitEm∥2\+ε,wLitEm\)\\lambda\\leftarrow\\min\\left\(\\dfrac\{\\lVert\\nabla\_\{\\mathbf\{E\}\}\\mathcal\{L\}\_\{KGE\}\\rVert\_\{2\}\}\{\\lVert\\nabla\_\{\\mathbf\{E\}\}\\mathcal\{L\}\_\{\\textsc\{LitEm\}\}\\rVert\_\{2\}\+\\varepsilon\},\\,w\_\{\\textsc\{LitEm\}\}\\right\)⊳\\trianglerightdynamic mixing weight;wLitEm=0\.5w\_\{\\textsc\{LitEm\}\}=0\.5,ε=10−12\\varepsilon=10^\{\-12\}

12:

ℒcombined←\(1−λ\)​ℒK​G​E\+λ​ℒLitEm\\mathcal\{L\}\_\{\\text\{combined\}\}\\leftarrow\(1\-\\lambda\)\\mathcal\{L\}\_\{KGE\}\+\\lambda\\mathcal\{L\}\_\{\\textsc\{LitEm\}\}
13:

θK​G​E←θK​G​E−γK​G​E​∇θK​G​Eℒcombined\\theta\_\{KGE\}\\leftarrow\\theta\_\{KGE\}\-\\gamma\_\{KGE\}\\nabla\_\{\\theta\_\{KGE\}\}\\mathcal\{L\}\_\{\\text\{combined\}\}
14:

θLitEm←θLitEm−γLitEm​∇θLitEmℒcombined\\theta\_\{\\textsc\{LitEm\}\}\\leftarrow\\theta\_\{\\textsc\{LitEm\}\}\-\\gamma\_\{\\textsc\{LitEm\}\}\\nabla\_\{\\theta\_\{\\textsc\{LitEm\}\}\}\\mathcal\{L\}\_\{\\text\{combined\}\}
15:endfor

16:endfor

17:return

θ\\theta

Building on theLitEmmodel, we introduce a co\-training framework that jointly trains any transductive KGE model withLitEm\(Algorithm[1](https://arxiv.org/html/2608.26729#alg1)\), injecting attribute information directly into the entity embeddings\. During training, each relational triple\(h,r,t\)\(h,r,t\)is paired with the numerical attributes of its head entities as literal triples\(e,a,v\)\(e,a,v\)\. The KGE model processes the relational triple whileLitEmprocesses the attribute triples\. Entity embeddings stay fixed in the standaloneLitEm, but the combined framework updates them through the literal prediction loss, so both structural and numerical signals shape the shared embeddings\.

Rather than a fixed loss weight, our co\-training approach computes a dynamic scaling factorλ\\lambdafrom the relative gradient norms of the KGE loss and theLitEmloss on the shared entity embeddings\. The adaptiveλ\\lambdagrows when the structural gradient dominates, upweighting the literal loss so its signal keeps pace, and shrinks when the literal gradient is large\. Capping it at0\.50\.5guarantees1−λ≥0\.51\-\\lambda\\geq 0\.5, so the structural objective always retains at least half the weight\.

## 5Evaluation

#### Experimental Setup\.

All experiments were carried out in a Python 3\.10 environment with GPU acceleration, and KGE models are implemented using the DICE\-Embeddings framework\[[7](https://arxiv.org/html/2608.26729#bib.bib27)\]\. For the literal prediction task, we follow\[[14](https://arxiv.org/html/2608.26729#bib.bib5)\]and use TransE embeddings trained on all relational triples from the training, validation, and test set to ensure a fair comparison betweenLitEmand the baselines\. Although KGE\-Regression\[[26](https://arxiv.org/html/2608.26729#bib.bib7)\]reports results from an ensemble of embedding models, we include only its TransE\-based results for consistency\. For link prediction and co\-training, all KGE models use 64\-dimensional real\-valued entity and relation embeddings\. Hyperparameters are selected on the validation split and kept fixed across test evaluations\. StandaloneLitEmis trained with MAE loss and Adam on frozen entity embeddings, using a batch size of 256, with the number of epochs \(160\-\-280\), the learning rate \(0\.0005\-\-0\.01\), and the dropout rate \(0\.1\-\-0\.3\) tuned per dataset\. The KGE and co\-training runs use BCE loss, Adam, and KvsAll scoring, with 300 epochs, a batch size of 1024, and a learning rate of 0\.05 applied uniformly across all models\. Supplementary materials, detailed hyperparameters, and trained models are available online\.111[https://github\.com/dice\-group/literal\-embeddings/](https://github.com/dice-group/literal-embeddings/)

#### Model Complexity\.

Letddbe the embedding dimension and\|𝒜\|\|\\mathcal\{A\}\|the number of numerical attributes\. For the baseLitEmvariant without the residual component, the trainable parameters are\|𝒜\|​d\+4​d2\+4​d\+1\|\\mathcal\{A\}\|d\+4d^\{2\}\+4d\+1, while for the standardLitEmarchitecture they are\|𝒜\|​d\+20​d2\+8​d\+1\|\\mathcal\{A\}\|d\+20d^\{2\}\+8d\+1\. Thus, the parameter complexity is linear in the number of attributes and quadratic in the embedding dimension, while the per\-instance computational cost of the literal head remainsO⁡\(d2\)O\(d^\{2\}\)for both training and inference\. In the combined training setting, the only additional parameters come from the literal embedding model\.

Table 1:Dataset statistics for relational and literal triples including train, test and validation splits\. The\|R\|/\|A\|\|R\|/\|A\|column reports the number of relations for relational datasets and numerical attributes for literal datasets\.
#### Datasets\.

Table[1](https://arxiv.org/html/2608.26729#S5.T1)summarizes the four datasets: FB15K\-237, YAGO15K, DB15K, and Mutagenesis\. FB15K\-237 is a subset of Freebase\[[3](https://arxiv.org/html/2608.26729#bib.bib2)\], while YAGO15K and DB15K are derived from YAGO and DBpedia with entities aligned to FB15K\[[17](https://arxiv.org/html/2608.26729#bib.bib22)\], with numerical literals taken from\[[26](https://arxiv.org/html/2608.26729#bib.bib7)\]\. Mutagenesis\[[24](https://arxiv.org/html/2608.26729#bib.bib21)\]is an RDF KG for class expression learning and numerical attribute prediction\. Since numerical attributes vary widely in scale, we apply z\-normalization following\[[14](https://arxiv.org/html/2608.26729#bib.bib5)\]for standalone literal prediction and min\-max normalization for combined training\.

### 5\.1Results

Table 2:Literal prediction performance ofLitEmbaseandLitEmagainst various approaches, evaluated using Mean Absolute Error \(MAE\) over 5 runs on FB15K\-237 and YAGO15K\. Lower MAE is better; best and second\-best means are bolded and underlined, respectively\. KGA, NAP\+\+ and MrAP results are taken from\[[23](https://arxiv.org/html/2608.26729#bib.bib23)\]; the performance of LR on YAGO15K is not reported in\[[14](https://arxiv.org/html/2608.26729#bib.bib5)\]\.Table 3:Literal prediction performance of different embedding models viaLitEm\(averaged over 5 runs\) on the FB15K\-237 and YAGO15K datasets, evaluated using Mean Absolute Error \(MAE\)Table[2](https://arxiv.org/html/2608.26729#S5.T2)comparesLitEmwith baseline and state\-of\-the\-art approaches on FB15K\-237 and YAGO15K using Mean Absolute Error \(MAE\)\. On FB15K\-237,LitEmoutperforms the embedding\-based regression baseline KGE\-Reg on all attributes and LR on most attributes\. On YAGO15K,LitEmandLitEmbaseachieve the strongest performance across all attributes, with consistent gains on both temporal and spatial attributes\. The base model remains competitive on several attributes, indicating that the entity\-attribute interaction provides a useful signal, which the gated residual mechanism further refines\. MrAP outperformsLitEmon spatial attributes in FB15K\-237, likely because neighbourhood propagation exploits geographic locality among connected entities, whereas on YAGO15KLitEmdecodes spatial signals from the embeddings well enough to outperform MrAP on both latitude and longitude\. Counting both variants,LitEmorLitEmbaseranks best or second\-best on 8 of the 11 FB15K\-237 attributes and on all 7 YAGO15K attributes\. The weaker performance on attributes such asloc\.date\_foundedandloc\.areacan be attributed toLitEm’s shared multi\-attribute regression setting, which makes extreme values in low\-density tails harder to estimate\.

Similarly, Table[3](https://arxiv.org/html/2608.26729#S5.T3)reveals a consistent pattern on FB15K\-237 and YAGO15K: translational models such as TransE and RotatE achieve lower literal prediction loss than models with multiplicative scoring functions\. TransE obtains the best MAE for most attributes on both datasets, while RotatE performs similarly on most attributes\. This likely reflects that translational geometries place semantically related entities closer together in embedding space, making their numerical attributes easier to recover via regression\. In contrast, models with more complex scoring functions may require scoring\-function\-aware literal decoders to better exploit the attribute signals captured in their embeddings\.

Table 4:Literal prediction performance of baseline approaches andLitEm\(averaged over 5 runs\) on the DB15K and Mutagenesis datasets, evaluated using Mean Absolute Error \(MAE\)Table[4](https://arxiv.org/html/2608.26729#S5.T4)reports the performance ofLitEmand baseline approaches on DB15K and Mutagenesis datasets\. Since DB15K and Mutagenesis are introduced in this work as new benchmarks for numeric attribute prediction, no prior approaches report results on them, so we adopt per\-attribute linear regression as a standard baseline and additionally implement MrAP\.LitEmvariants outperform the linear regression baseline across all attributes in both datasets and outperform MrAP on the majority of attributes, with particularly notable gains onlongitude\(11\.776 vs\. 16\.992\),height\(0\.346 vs\. 1\.403\), andmutagenesis\#charge\(0\.022 vs\. 0\.397\)\. Counting both variants,LitEmorLitEmbaseranks best or second\-best on all 9 DB15K and all 4 Mutagenesis attributes\.

Table 5:Link prediction performance of embedding models with 64\-dimensional real\-valued vectors on the test sets of FB15k\-237, YAGO15K and DB15K datasets for standard and combined training\. The models are trained for 300 epochs with a batch size of 1024 and a learning rate of 0\.05, and values in bold mark the best per\-metric value within each model\-dataset combination\.\+\+\\,LitEmdenotes performance with combined training and\+\+\\,ReaLitE denotes performance of the ReaLitE model\[[13](https://arxiv.org/html/2608.26729#bib.bib20)\]\.Table[5](https://arxiv.org/html/2608.26729#S5.T5)reports link prediction performance for KGE models trained with and without co\-training withLitEm, and ReaLitE\[[13](https://arxiv.org/html/2608.26729#bib.bib20)\]on FB15K\-237, YAGO15K, and DB15K\. As ReaLitE does not report results for all model\-dataset pairs used in this study, following the paper’s recommendation of linear fusion for link prediction tasks, we ran multiple literal aggregation variants \(learnable, min, and mode\) and report the best scores\. Across all experiments, the underlying KGE models use the same embedding dimensionality for entities and relations; both ReaLitE andLitEmonly introduce additional literal\-related parameters and use the same training configurations\. Unlike ReaLitE’s per\-model\-dataset hyperparameter optimisation, we evaluate every model under identical conditions without additional tuning\. The results show thatLitEmimproves link prediction most consistently for bilinear models, with clear gains for Keci, DistMult, QMult, and OMult across datasets\. For TransE and RotatE, co\-training yields a small performance reduction, which we trace to gradient conflict and scoring\-function constraints\. Absolute performance remains modest across the 24 co\-trained model\-dataset settings in Table[5](https://arxiv.org/html/2608.26729#S5.T5): MRR ranges from 0\.179 to 0\.382 and Hits@1 from 0\.115 to 0\.299, and 18 of the 24 settings stay below an MRR of 0\.300\. ReaLitE is more variable\. It is competitive in selected cases, such as DualE on YAGO15K and QMult on DB15K, but also underperforms on some model\-dataset pairs\. Although ReaLitE outperformsLitEmin some individual model\-dataset cases,LitEmstill consistently improves over the corresponding base KGE variant for the bilinear models, indicating a more stable benefit from literal co\-training\. As mentioned in the original work\[[13](https://arxiv.org/html/2608.26729#bib.bib20)\], ReaLitE’s gains are dataset\- and relation\-dependent and not guaranteed across all configurations\. Overall, even when co\-training withLitEmdoes not improve link prediction, the literal\-aware evaluations show that it makes KGE models meaningfully encode and exploit literal information\.

We further compared the literal prediction performance of the base models and their literal\-augmented versions and report the results in the supplementary material\. The results show that co\-training improves literal prediction performance for most attributes, while reducing performance for some\. Although KGE models with multiplicative scoring functions underperform translation\-based models in literal prediction withLitEm, combined training still improves their literal prediction performance\. On YAGO15K, combined training reduces MAE ford​i​e​d​O​n​D​a​t​ediedOnDatein 8 of 8 models and for latitude in 5 of 8\. On FB15K\-237 the picture is mixed:d​a​t​e​\_​o​f​\_​b​i​r​t​hdate\\\_of\\\_birthimproves in 5 of 8 models, whereasr​e​l​e​a​s​e​\_​d​a​t​erelease\\\_date, latitude, and longitude worsen in most or all of them\. Note that the literal prediction performance discussed here for the literal augmented models refers to their performance via combined training, not post\-literal\-augmentation regression\.

#### Literal\-Awareness Evaluation\.

We use the methodology proposed by Blum et al\.\[[2](https://arxiv.org/html/2608.26729#bib.bib26)\]to evaluate whether co\-training KGE models withLitEmmakes their embeddings truly “literal\-aware”\. The evaluation augments FB15K\-237 with synthetic numerical attributes and attribute triples\. For a subset of entities, values sampled from a uniform distribution determine a synthetic relation,\(e,rsyn,chigh\)\(e,r\_\{\\text\{syn\}\},c\_\{\\text\{high\}\}\)if the value exceeds0\.50\.5and\(e,rsyn,clow\)\(e,r\_\{\\text\{syn\}\},c\_\{\\text\{low\}\}\)otherwise\. Models are trained on the augmented dataset and evaluated on whether they score\(e,rsyn,chigh\)\(e,r\_\{\\text\{syn\}\},c\_\{\\text\{high\}\}\)above\(e,rsyn,clow\)\(e,r\_\{\\text\{syn\}\},c\_\{\\text\{low\}\}\)consistently with each entity’s value\. To test whether models use the numerical information itself, we repeat the evaluation with the values randomized but the graph structure unchanged, so a model relying on literal values should degrade under randomization, while one that performs similarly cannot distinguish meaningful from random values\.

Table[6](https://arxiv.org/html/2608.26729#S5.T6)reports the accuracy of the models in classifying the synthetic relational triples under both settings\. Models co\-trained withLitEmachieve higher accuracy on the original numerical values than on the randomized ones, while models augmented with LiteralE or ReaLitE perform equivalently in both settings, unable to distinguish actual from random values\. This follows from how the approaches incorporate literal values:LitEmaugments entity embeddings via numerical reasoning, whereas LiteralE and ReaLitE incorporate literal values directly into the embeddings through a parametric transformation\. Their link\-prediction gains from literal augmentation may therefore stem from the additional model parameters rather than genuine reasoning over numerical values\. For evaluation settings and dataset construction, see the original work\[[2](https://arxiv.org/html/2608.26729#bib.bib26)\]\.

Table 6:Accuracy of models on classification of relational triples based on the augmented original and randomized values of the entities on the synthetic FB15K\-237 dataset

## 6Discussion

#### Literal Prediction and Augmentation\.

For literal prediction, training separate regression models per attribute performs worse than a single shared attribute\-conditioned model, indicating that cross\-attribute sharing provides useful regularization\. At the same time, adding further layers yields only marginal gains, suggesting that regression complexity alone is not the bottleneck\. A more fundamental constraint is that the regression model can only exploit information already encoded in the embeddings\. Since KGE models are optimized for link prediction, entity embeddings primarily capture relational structure rather than semantic descriptions of entities, which limits literal prediction regardless of decoder capacity\. This also motivates augmenting entity embeddings with attribute information directly\. Our approach performs comparatively better with translation\-based models such as TransE and RotatE, whose linearly constrained embedding geometries likely preserve neighbourhood information in a form our decoder can more readily exploit\. It struggles with bilinear models such as DistMult and ComplEx, whose higher\-order multiplicative interactions may not expose literal information in a linearly separable manner\. A linear probe supports this: per\-attribute ridge regressions on the frozen 64\-dimensional FB15K\-237 embeddings reach a meanR2R^\{2\}of 0\.28 for TransE against 0\.18 for ComplEx and DistMult\. As future work, we plan to investigate scoring\-function\-aware literal decoders that adapt to the underlying KGE geometry\.

The link prediction gains under co\-training show that incorporating numerical literals enriches entity embeddings with both relational and attribute information\. These gains are concentrated in bilinear \(multiplicative\) models, which impose few constraints on entity placement and can therefore accommodate the literal signal without disrupting the structural objective\. Aggregated over 4 bilinear models, 3 datasets, and 5 random seeds, this improvement is statistically significant\. A one\-sided Wilcoxon signed\-rank test on the ranking metrics \(Hits@\{1,3,10\}, MRR\) confirms that co\-training improves over KGE\-only link prediction \(p<0\.001p<0\.001\)\.

Translational models show little co\-training benefit, which we attribute primarily to their scoring\-function constraints\. These models enforce strict geometric relations \(TransE requires𝐡\+𝐫≈𝐭\\mathbf\{h\}\+\\mathbf\{r\}\\approx\\mathbf\{t\}, RotatE requires𝐡∘𝐫≈𝐭\\mathbf\{h\}\\circ\\mathbf\{r\}\\approx\\mathbf\{t\}in complex space\), tightly coupling entity placement to relation structure and leaving the literal gradient little freedom to reposition embeddings without violating the structural objective\. Measuring the cosine similarity between the KGE and literal gradients on shared embeddings in FB15k\-237, we find that TransE produces conflicting gradient directions in 33% of training steps, nearly double the 18% of DistMult and Keci\. The gradient\-balancing mechanism counteracts this conflict, keeping performance close to the base KGE models\. A secondary factor may contribute\. Since TransE and RotatE already outperform bilinear models in literal prediction without co\-training \(Table[3](https://arxiv.org/html/2608.26729#S5.T3)\), their geometry may already encode attribute\-correlated structure, leaving less marginal signal for co\-training to add\.

#### Probing Model Memorization\.

In existing literal prediction datasets, entitieseemay appear in both training and test splits even though entity–attribute pairs\(e,a\)\(e,a\)do not, letting a model memorize attribute values via entity embeddings rather than generalize\. To test this, we build𝒢′\\mathcal\{G\}^\{\\prime\}with a revised split over attribute triples only, leaving relation triples untouched\. All attribute triples from the training, validation, and test sets are merged, and entities are assigned to train or test at a 70/30 ratio with a fixed random seed \(42\), enforcingℰtrain′∩ℰtest′=∅\\mathcal\{E\}^\{\\prime\}\_\{\\text\{train\}\}\\cap\\mathcal\{E\}^\{\\prime\}\_\{\\text\{test\}\}=\\emptyset\. This yields 16,248/7,012 attribute triples for FB15K\-237\-disjoint and 16,454/7,078 for YAGO15K\-disjoint\. Embeddings remain transductive over the full graph, so the split tests generalization to entities never used as supervised literal targets during training\. It is not an inductive setting:LitEmrequires a trained embedding for every entity whose attributes it predicts\.LitEmperforms comparably on this disjoint attribute split relative to the standard split, and better on some attributes, indicating it learns a transferable mapping from embedding space to values rather than memorizing per\-entity targets\.

#### Performance under Reduced Datasets\.

We evaluateLitEmon literal prediction under 80%, 60%, and 40% subsamples of the training set of attribute triples \(stratified by attribute\), keeping the test set and pre\-trained KGE embeddings fixed\.LitEmdegrades gracefully, with most attributes within a few per centΔ\\DeltaMAE at 80% and close to full\-data accuracy at 60%\. Visible degradation appears only at 40%, concentrated in date\- and coordinate\-valued attributes, thoughloc\.areaandloc\.date\_foundedchange little at any ratio\. The supplementary material reports the full per\-attribute results\.

#### Limitation and Future Work\.

In this work, we focused only on predicting and augmenting numerical attributes in knowledge graphs\. A limitation of the current approach is that it does not consider other types of literals, such as named individuals, boolean values, or textual descriptions of entities\. Our experiments are also limited in scale\. They use embeddings of at most 64 dimensions \(32 for the literal\-awareness evaluation\) on knowledge graphs of 12,000–15,000 entities, under a single fixed hyperparameter setting per experiment type\. Whether the reported patterns hold at higher dimensionality, on larger graphs, or under model\-specific tuning therefore remains untested\. Extending the approach to handle these types of literals is an important direction for future work\. Another promising direction is multi\-hop query answering with literals\. Integrating our approach under the LitCQD framework would enable state\-of\-the\-art KGE models to answer multi\-hop queries involving literals in a model\-agnostic manner\. Our approach also updates only the entity embeddings, so updating relation embeddings during joint training through the literal loss is another promising direction\.

## 7Conclusion

In this work, we introduced a neural embedding regression model, dubbedLitEm, to predict numerical attributes of entities in knowledge graphs by leveraging pre\-trained embeddings\. Experiments across datasets show thatLitEmis competitive with state\-of\-the\-art numerical attribute prediction methods:LitEmorLitEmbaseachieves the best or second\-best MAE on 8 of 11 FB15K\-237 attributes and on all 7 YAGO15K attributes\. We also repurpose the existing KGs DB15K and Mutagenesis as benchmarks for numerical attribute prediction, reporting the first results on both, whereLitEmorLitEmbaseranks best or second\-best on all 9 DB15K and all 4 Mutagenesis attributes\. We also designed a co\-training framework that enables embedding methods to incorporate and predict numerical attributes in KGs simultaneously\. Experiments across datasets suggest that our approach improves link prediction for embedding models with multiplicative scoring functions while also making them literal\-aware\.

#### Acknowledgements

This work has been supported by the Ministry of Culture and Science of North Rhine\-Westphalia \(MKW NRW\) within the project SAIL under the grant no NW21\-059D, by the project “WHALE” \(LFN 1\-04\) funded under the Lamarr Fellow Network programme by the Ministry of Culture and Science of North Rhine\-Westphalia \(MKW NRW\), and by the German Federal Ministry of Research, Technology and Space \(BMFTR\) within the project KI\-Akademie OWL under the grant no 16IS24057B\.

#### Disclosure of Interests\.

The authors have no competing interests to declare that are relevant to the content of this article\.

## References

- \[1\]E\. Bayram, A\. García\-Durán, and R\. West\(2021\)Node attribute completion in knowledge graphs with multi\-relational propagation\.InICASSP 2021\-2021 IEEE International Conference on Acoustics, Speech and Signal Processing \(ICASSP\),pp\. 3590–3594\.External Links:[Document](https://dx.doi.org/10.1109/ICASSP39728.2021.9414016)Cited by:[§3](https://arxiv.org/html/2608.26729#S3.p1.1)\.
- \[2\]M\. Blum, B\. Ell, H\. Ill, and P\. Cimiano\(2024\)Numerical literals in link prediction: a critical examination of models and datasets\.InInternational Semantic Web Conference,pp\. 23–46\.External Links:[Document](https://dx.doi.org/10.1007/978-3-031-77844-5%5F2)Cited by:[§5\.1](https://arxiv.org/html/2608.26729#S5.SS1.SSSx1.p1.1),[§5\.1](https://arxiv.org/html/2608.26729#S5.SS1.SSSx1.p2.1)\.
- \[3\]K\. Bollacker, C\. Evans, P\. Paritosh, T\. Sturge, and J\. Taylor\(2008\)Freebase: a collaboratively created graph database for structuring human knowledge\.InProceedings of the 2008 ACM SIGMOD international conference on Management of data,pp\. 1247–1250\.External Links:[Document](https://dx.doi.org/10.1145/1376616.1376746)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p1.1),[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx3.p1.1)\.
- \[4\]A\. Bordes, N\. Usunier, A\. Garcia\-Duran, J\. Weston, and O\. Yakhnenko\(2013\)Translating embeddings for modeling multi\-relational data\.Advances in neural information processing systems26\.Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[5\]Z\. Cao, Q\. Xu, Z\. Yang, X\. Cao, and Q\. Huang\(2021\)Dual quaternion knowledge graph embeddings\.InProceedings of the AAAI conference on artificial intelligence,Vol\.35,pp\. 6894–6902\.External Links:[Document](https://dx.doi.org/10.1609/aaai.v35i8.16850)Cited by:[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[6\]C\. Demir, D\. Moussallem, S\. Heindorf, and A\. N\. Ngomo\(2021\)Convolutional hypercomplex embeddings for link prediction\.InAsian Conference on Machine Learning,pp\. 656–671\.Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[7\]C\. Demir and A\. N\. Ngomo\(2022\)Hardware\-agnostic computation for large\-scale knowledge graph embeddings\.Software Impacts\.External Links:[Document](https://dx.doi.org/10.1016/j.simpa.2022.100377)Cited by:[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx1.p1.1)\.
- \[8\]C\. Demir and A\. Ngonga Ngomo\(2023\)Clifford embeddings–a generalized approach for embedding in normed algebras\.InJoint European Conference on Machine Learning and Knowledge Discovery in Databases,pp\. 567–582\.External Links:[Document](https://dx.doi.org/10.1007/978-3-031-43418-1%5F34)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[9\]C\. Demir, M\. Wiebesiek, R\. Lu, A\. Ngonga Ngomo, and S\. Heindorf\(2023\)LitCQD: multi\-hop reasoning in incomplete knowledge graphs with numeric literals\.InJoint European Conference on Machine Learning and Knowledge Discovery in Databases,pp\. 617–633\.External Links:[Document](https://dx.doi.org/10.1007/978-3-031-43418-1%5F37)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.1](https://arxiv.org/html/2608.26729#S2.SS1.p1.1),[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[10\]A\. García\-Durán and M\. Niepert\(2018\)KBlrn: end\-to\-end learning of knowledge base representations with latent, relational, and numerical features\.InProceedings of the Thirty\-Fourth Conference on Uncertainty in Artificial Intelligence, UAI,pp\. 372–381\.Cited by:[§3](https://arxiv.org/html/2608.26729#S3.p1.1)\.
- \[11\]G\. A\. Gesese, R\. Biswas, M\. Alam, and H\. Sack\(2021\)A survey on knowledge graph embeddings with literals: which model links better literal\-ly?\.Semantic Web12\(4\),pp\. 617–647\.External Links:[Document](https://dx.doi.org/10.3233/SW-200404)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1)\.
- \[12\]A\. Hogan, E\. Blomqvist, M\. Cochez, C\. d’Amato, G\. D\. Melo, C\. Gutierrez, S\. Kirrane, J\. E\. L\. Gayo, R\. Navigli, S\. Neumaier,et al\.\(2021\)Knowledge graphs\.ACM Computing Surveys \(Csur\)54\(4\),pp\. 1–37\.External Links:[Document](https://dx.doi.org/10.1145/3447772)Cited by:[§2\.1](https://arxiv.org/html/2608.26729#S2.SS1.p1.1)\.
- \[13\]A\. Klironomos, B\. Zhou, Z\. Zheng, G\. Mohamed, H\. Paulheim, and E\. Kharlamov\(2025\)ReaLitE: enrichment of relation embeddings in knowledge graphs using numeric literals\.InThe Semantic Web \(ESWC\),External Links:[Document](https://dx.doi.org/10.1007/978-3-031-94575-5%5F3)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§3](https://arxiv.org/html/2608.26729#S3.p1.1),[§5\.1](https://arxiv.org/html/2608.26729#S5.SS1.p4.1),[Table 5](https://arxiv.org/html/2608.26729#S5.T5)\.
- \[14\]B\. Kotnis and A\. García\-Durán\(2019\)Learning numerical attributes in knowledge bases\.InAutomated Knowledge Base Construction \(AKBC\),External Links:[Link](https://openreview.net/forum?id=BJlh0x9ppQ),[Document](https://dx.doi.org/10.24432/C5Z59Q)Cited by:[§3](https://arxiv.org/html/2608.26729#S3.p1.1),[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx1.p1.1),[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx3.p1.1),[Table 2](https://arxiv.org/html/2608.26729#S5.T2)\.
- \[15\]A\. Kristiadi, M\. A\. Khan, D\. Lukovnikov, J\. Lehmann, and A\. Fischer\(2019\)Incorporating literals into knowledge graph embeddings\.InThe Semantic Web–ISWC 2019: 18th International Semantic Web Conference, Auckland, New Zealand, October 26–30, 2019, Proceedings, Part I 18,pp\. 347–363\.External Links:[Document](https://dx.doi.org/10.1007/978-3-030-30793-6%5F20)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.1](https://arxiv.org/html/2608.26729#S2.SS1.p1.1),[§3](https://arxiv.org/html/2608.26729#S3.p1.1),[§4](https://arxiv.org/html/2608.26729#S4.p3.1)\.
- \[16\]J\. Lehmann, R\. Isele, M\. Jakob, A\. Jentzsch, D\. Kontokostas, P\. N\. Mendes, S\. Hellmann, M\. Morsey, P\. Van Kleef, S\. Auer,et al\.\(2015\)Dbpedia–a large\-scale, multilingual knowledge base extracted from wikipedia\.Semantic web6\(2\),pp\. 167–195\.External Links:[Document](https://dx.doi.org/10.3233/SW-140134)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p1.1)\.
- \[17\]Y\. Liu, H\. Li, A\. Garcia\-Duran, M\. Niepert, D\. Onoro\-Rubio, and D\. S\. Rosenblum\(2019\)MMKG: multi\-modal knowledge graphs\.InThe semantic web: 16th international conference, ESWC 2019, portorož, Slovenia, June 2–6, 2019, proceedings 16,pp\. 459–474\.External Links:[Document](https://dx.doi.org/10.1007/978-3-030-21348-0%5F30)Cited by:[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx3.p1.1)\.
- \[18\]B\. Min, R\. Grishman, L\. Wan, C\. Wang, and D\. Gondek\(2013\)Distant supervision for relation extraction with an incomplete knowledge base\.InProceedings of the 2013 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies,pp\. 777–782\.Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p1.1)\.
- \[19\]F\. M\. Suchanek, G\. Kasneci, and G\. Weikum\(2007\)Yago: a core of semantic knowledge\.InProceedings of the 16th international conference on World Wide Web,pp\. 697–706\.External Links:[Document](https://dx.doi.org/10.1145/1242572.1242667)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p1.1)\.
- \[20\]Z\. Sun, Z\. Deng, J\. Nie, and J\. Tang\(2019\)Rotate: knowledge graph embedding by relational rotation in complex space\.InInternational Conference on Learning Representations,Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[21\]Y\. Tay, L\. A\. Tuan, M\. C\. Phan, and S\. C\. Hui\(2017\)Multi\-task neural network for non\-discrete attribute prediction in knowledge graphs\.InProceedings of the 2017 ACM on Conference on Information and Knowledge Management,pp\. 1029–1038\.External Links:[Document](https://dx.doi.org/10.1145/3132847.3132937)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§3](https://arxiv.org/html/2608.26729#S3.p1.1)\.
- \[22\]T\. Trouillon, J\. Welbl, S\. Riedel, É\. Gaussier, and G\. Bouchard\(2016\)Complex embeddings for simple link prediction\.InInternational conference on machine learning,pp\. 2071–2080\.Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[23\]J\. Wang, F\. Ilievski, P\. Szekely, and K\. Yao\(2022\)Augmenting knowledge graphs for better link prediction\.InInternational Joint Conference on Artificial Intelligence \(IJCAI\-ECAI\),External Links:[Document](https://dx.doi.org/10.24963/ijcai.2022/316)Cited by:[§2\.1](https://arxiv.org/html/2608.26729#S2.SS1.p1.1),[§3](https://arxiv.org/html/2608.26729#S3.p1.1),[Table 2](https://arxiv.org/html/2608.26729#S5.T2)\.
- \[24\]P\. Westphal, L\. Bühmann, S\. Bin, H\. Jabeen, and J\. Lehmann\(2019\)SML\-bench–a benchmarking framework for structured machine learning\.Semantic Web10\(2\),pp\. 231–245\.External Links:[Document](https://dx.doi.org/10.3233/SW-180308)Cited by:[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx3.p1.1)\.
- \[25\]Y\. Wu and Z\. Wang\(2018\)Knowledge graph embedding with numeric attributes of entities\.InProceedings of The Third Workshop on Representation Learning for NLP,pp\. 132–136\.External Links:[Document](https://dx.doi.org/10.18653/v1/W18-3017)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§3](https://arxiv.org/html/2608.26729#S3.p1.1)\.
- \[26\]B\. Xue, Y\. Li, and L\. Zou\(2022\)Introducing semantic information for numerical attribute prediction over knowledge graphs\.InInternational Semantic Web Conference,pp\. 3–21\.External Links:[Document](https://dx.doi.org/10.1007/978-3-031-19433-7%5F1)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§3](https://arxiv.org/html/2608.26729#S3.p1.1),[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx1.p1.1),[§5](https://arxiv.org/html/2608.26729#S5.SS0.SSSx3.p1.1)\.
- \[27\]B\. Yang, W\. Yih, X\. He, J\. Gao, and L\. Deng\(2015\)Embedding entities and relations for learning and inference in knowledge bases\.InInternational Conference on Learning Representations,Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p2.1),[§2\.2](https://arxiv.org/html/2608.26729#S2.SS2.p1.1)\.
- \[28\]X\. Zou\(2020\)A survey on application of knowledge graph\.InJournal of Physics: Conference Series,Vol\.1487,pp\. 012016\.External Links:[Document](https://dx.doi.org/10.1088/1742-6596/1487/1/012016)Cited by:[§1](https://arxiv.org/html/2608.26729#S1.p1.1)\.

Similar Articles

DEL: Digit Entropy Loss for Numerical Learning of Large Language Models

arXiv cs.CL

This paper introduces Digit Entropy Loss (DEL), a novel loss function for numerical learning in large language models that reformulates entropy optimization to improve digit-level prediction accuracy and handle floating-point numbers, consistently outperforming existing methods on mathematical reasoning benchmarks.