Papers › Kernelized Edge Attention: Addressing Semantic Attention Blurring in Temporal Graph...

Kernelized Edge Attention: Addressing Semantic Attention Blurring in Temporal Graph Neural Networks

31 Jan 2026arXiv:2602.00596added by Syntology

Govind Waghmare, Srini Rohan Gujulla Leel, Nikhil Tumbde, Sumedh B G, Sonia Gupta, Srikanta Bedathur

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Temporal Graph Neural Networks (TGNNs) aim to capture the evolving structure and timing of interactions in dynamic graphs. Although many models incorporate time through encodings or architectural design, they often compute attention over entangled node and edge representations, failing to reflect their distinct temporal behaviors. Node embeddings evolve slowly as they aggregate long-term structural context, while edge features reflect transient, timestamped interactions (e.g. messages, trades, or transactions). This mismatch results in semantic attention blurring, where attention weights cannot distinguish between slowly drifting node states and rapidly changing, information-rich edge interactions. As a result, models struggle to capture fine-grained temporal dependencies and provide limited transparency into how temporal relevance is computed. This paper introduces KEAT (Kernelized Edge Attention for Temporal Graphs), a novel attention formulation that modulates edge features using a family of continuous-time kernels, including Laplacian, RBF, and learnable MLP variant. KEAT preserves the distinct roles of nodes and edges, and integrates seamlessly with both Transformer-style (e.g., DyGFormer) and message-passing (e.g., TGN) architectures. It achieves up to 18% MRR improvement over the recent DyGFormer and 7% over TGN on link prediction tasks, enabling more accurate, interpretable and temporally aware message passing in TGNNs.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2602.00596")

Code

Syntology Ran 7 of 21 code samples harvested from 3 repositories linked to this paper; 14 have no recorded run. Of those that ran: 7 ran with no contract checked.

By repository: found in paper text by Syntology: 21 samples from 3 repositories, 7 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

yule-BUAA/DyGLib found in paper text by SyntologyMIT report
shenyangHuang/TGB found in paper text by SyntologyMIT report
pyg-team/pytorch found in paper text by Syntologynot reachable when probed 2026-09-16 — repositories for recent papers often appear after camera-ready report
storyandwine/GEARSage-DGraphFin found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

21 samples harvested; 7 ran; 0 honoured the contract we drafted; 14 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

7ran
14unverified

Licence: 9 of the 21 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 3 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

EdgePredictor_per_node shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology ran MIT (permissive) · 3a203beb102a8b30 · report
FeatEncode shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology ran · metamorphic tier: deterministic MIT (permissive) · 39c0adbee26233ea · report
FeedForward shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology ran · metamorphic tier: deterministic fingerprinted MIT (permissive) · f512e4efa2c5957a · report
PositionalEncoding1D shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology ran · metamorphic tier: deterministic fingerprinted MIT (permissive) · 415730aff961e7cd · report
Summer shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology ran · metamorphic tier: deterministic fingerprinted MIT (permissive) · 4976a15c63f01726 · report
TimeEncode shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology ran · metamorphic tier: deterministic fingerprinted MIT (permissive) · ddd8a5727b202d18 · report
_MultiheadAttention shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology ran · metamorphic tier: deterministic MIT (permissive) · 3817d890b2e0ce53 · report
MultiHeadAttention yule-BUAA/DyGLib/models/modules.py found in paper text by Syntology unverified MIT (permissive) · d6264ffe9f545d50 · report
Patch_Encoding shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology unverified MIT (permissive) · 850d001f29ffa49f · report
STHN_Interface shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology unverified MIT (permissive) · 64f196855787fc5c · report
TransformerBlock shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology unverified MIT (permissive) · c0c8de46adf7473e · report
_ScaledDotProductAttention shenyangHuang/TGB/modules/sthn.py found in paper text by Syntology unverified MIT (permissive) · d253e560e9ac34a1 · report
add_degree_feature storyandwine/GEARSage-DGraphFin/feat_func.py found in paper text by Syntology unverified no licence file found · pointer only · 0f8414b56c3a3051 · report
add_feature_flag storyandwine/GEARSage-DGraphFin/feat_func.py found in paper text by Syntology unverified no licence file found · pointer only · 357d9970dfef8177 · report
add_label_feature storyandwine/GEARSage-DGraphFin/feat_func.py found in paper text by Syntology unverified no licence file found · pointer only · 259ffd86dd711857 · report
creat_activation_layer storyandwine/GEARSage-DGraphFin/models/model.py found in paper text by Syntology unverified no licence file found · pointer only · 743cb7598629fe21 · report
degree_feat storyandwine/GEARSage-DGraphFin/utils/dgraphfin.py found in paper text by Syntology unverified no licence file found · pointer only · 5445a93ec745cd56 · report
edge_timestamp_feat storyandwine/GEARSage-DGraphFin/utils/dgraphfin.py found in paper text by Syntology unverified no licence file found · pointer only · b270f7d1c1270190 · report
edge_type_feat storyandwine/GEARSage-DGraphFin/utils/dgraphfin.py found in paper text by Syntology unverified no licence file found · pointer only · 40804320d6cd06ef · report
prepare_folder storyandwine/GEARSage-DGraphFin/utils/utils.py found in paper text by Syntology unverified no licence file found · pointer only · df243d1bf9d82190 · report
prepare_tune_folder storyandwine/GEARSage-DGraphFin/utils/utils.py found in paper text by Syntology unverified no licence file found · pointer only · 429b326513a25e02 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2602.00596, was issued in February 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections