Papers
Topics
Authors
Recent
Search
2000 character limit reached

Adaptive Riemannian Graph Neural Networks

Updated 7 July 2026
  • Adaptive Riemannian Graph Neural Networks (ARGNN) are graph architectures that place node and edge representations on learnable Riemannian manifolds to capture intrinsic geometric properties.
  • They use manifold operations such as Exp, Log, and parallel transport to enable adaptive metric learning, curvature-based attention, and improved message passing.
  • ARGNN methods address challenges like over-squashing and heterogeneity by integrating continuous metric fields and dynamic scale selection into graph neural network design.

Adaptive Riemannian Graph Neural Networks (ARGNNs) are graph neural architectures in which node or edge representations reside on one or more learnable Riemannian manifolds, and in which message passing, attention, normalization, and optimization are executed through manifold operations such as Log\operatorname{Log}, Exp\operatorname{Exp}, parallel transport, and Fréchet means. Across the recent literature, the term encompasses several closely related programs: intrinsic-geometry-first graph modeling under the Riemannian Foundation Model agenda, continuous node-wise metric-tensor learning, mixed-curvature product or expert architectures, adaptive scale selection through Riemannian graph-of-graphs constructions, and continual or spiking variants that adapt geometry across graphs, layers, or tasks (Yu et al., 23 Mar 2026, Wang et al., 4 Aug 2025).

1. Conceptual foundations

The modern ARGNN perspective is grounded in the claim that, for graphs, “Riemannian geometry speaks louder than words.” In that view, graph serialization for language-model-style processing fragments global topology and cannot reliably capture high-order structural dependencies, while classical GNNs remain constrained by fixed Euclidean inductive biases, local message passing, and poor memory retention under multi-domain pretraining. Riemannian geometry is proposed instead as a universal structural substrate: manifolds model structural diversity, curvature encodes structural complexity, moving frames align local coordinates across domains, and vector bundles integrate graph structure as a Riemannian base with attributes as Euclidean fibers (Yu et al., 23 Mar 2026).

Within this program, ARGNN does not merely switch from Euclidean space to a non-Euclidean embedding space. It treats intrinsic geometry—flatness, symmetry, connectivity, and anisotropy—as the primary object of learning, with geometric invariants expected to emerge endogenously from the learned manifold. This is the basis for the description of ARGNN as a “Riemannian engine” whose representations, attention, and optimization live on learned manifolds rather than on a fixed ambient space (Yu et al., 23 Mar 2026).

A complementary line of work frames the same problem through geometric heterogeneity inside a single graph. Real graphs may contain tree-like hierarchies and dense communities simultaneously, so a single fixed-curvature manifold or a discrete product of constant-curvature factors can be too coarse. In response, ARGNN has also been formalized as learning a continuous, anisotropic Riemannian metric tensor field over the graph, so that each node determines its own local geometry (Wang et al., 4 Aug 2025).

This conceptual shift also intersects with the theory of over-squashing. In Riemannian GNNs of variable curvature, the decay of sensitivity across graph bottlenecks can be separated into a topological term and a curvature-dependent geometric multiplier. Negative curvature can increase that multiplier, suggesting a mechanism by which adaptive geometry may alleviate over-squashing in tree-like regions, while positive curvature can instead decrease sensitivity (Balla, 2023).

2. Geometric and mathematical structure

The common mathematical backbone is a Riemannian manifold (M,g)(M,g) with metric tensor gg. In the intrinsic formulation, geodesic distance is defined by

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,

where Γ(x,y)\Gamma(x,y) is the set of smooth curves from xx to yy. The exponential map Expx(v)\operatorname{Exp}_x(v) and logarithmic map Logx(y)\operatorname{Log}_x(y) bridge manifold space and tangent space, enabling tangent-space computation followed by manifold-valued updates. Parallel transport Exp\operatorname{Exp}0, defined through the Levi-Civita connection, gives the canonical way to move vectors or gradients between tangent spaces before aggregation (Yu et al., 23 Mar 2026).

Optimization is similarly geometric. The Riemannian gradient satisfies

Exp\operatorname{Exp}1

and in coordinates with metric tensor Exp\operatorname{Exp}2,

Exp\operatorname{Exp}3

Riemannian SGD and Riemannian Adam take tangent-space steps and retract or exponentiate back to the manifold, while momentum terms can be transported between tangent spaces by parallel transport (Yu et al., 23 Mar 2026).

A major branch of ARGNN adopts constant-curvature spaces. In the unified hyperspherical–hyperbolic formalism,

Exp\operatorname{Exp}4

with corresponding closed-form exponential and logarithmic maps

Exp\operatorname{Exp}5

where Exp\operatorname{Exp}6. This unifies hyperspherical and Lorentz-hyperbolic geometry inside one algebraic scheme (Sun et al., 2022).

A second branch moves from manifold selection to metric-field learning. There the ambient feature space remains Exp\operatorname{Exp}7, but each node Exp\operatorname{Exp}8 carries its own symmetric positive definite metric tensor, specialized to a learnable diagonal form

Exp\operatorname{Exp}9

with

(M,g)(M,g)0

The node-local inner product is (M,g)(M,g)1, and the locally geodesic distance between neighboring embeddings is

(M,g)(M,g)2

This formulation replaces global curvature choice with node-wise anisotropic scaling and yields (M,g)(M,g)3 learnable metric degrees of freedom per node under the diagonal constraint (Wang et al., 4 Aug 2025).

Curvature itself may also be learned explicitly. One proposal parameterizes curvature as

(M,g)(M,g)4

allowing positive, negative, or near-zero curvature while regularizing smoothness across neighborhoods (Yu et al., 23 Mar 2026).

3. Architectural patterns

A canonical ARGNN layer begins by placing embeddings on manifolds through either a learned chart (M,g)(M,g)5 or a tangent-space projection at a learned base point (M,g)(M,g)6, such as

(M,g)(M,g)7

Base points function as moving frames: local orthonormal coordinates aligned with the evolving metric, intended to support cross-domain alignment and comparison (Yu et al., 23 Mar 2026).

Message passing then takes place intrinsically. One blueprint aggregates neighbor information in tangent spaces after transport:

(M,g)(M,g)8

with attention weights derived from geodesic distances,

(M,g)(M,g)9

Pooling may be defined by Fréchet means, and normalization may be done in gg0 before mapping back by gg1 (Yu et al., 23 Mar 2026).

The continuous-metric formulation replaces explicit manifold-valued transport with receiver-specific local geometry. It defines a direction vector

gg2

a geometric modulation coefficient

gg3

and a geometry-aware attention score

gg4

Messages are then

gg5

followed by the update

gg6

No parallel transport is required because the model uses local metrics at receivers and sender norms for normalization (Wang et al., 4 Aug 2025).

Another architectural family addresses scale adaptivity jointly with geometry. R-GFM constructs a Graph-of-Graphs (GoG) in which each node corresponds to a gg7-hop ego-subgraph, gg8, around the same center node. Hop-wise embeddings are stacked into gg9, and a similarity matrix

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,0

defines sparse GoG edges through budgeted similarity sampling. A router then assigns each GoG to a subset of Riemannian experts with different constant curvatures, using dynamic Top-dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,1 routing and confidence-aware sparsification (Liu et al., 11 May 2026).

Closely related but more symmetry-focused is the manifold diffusion perspective. Manifold GCN defines a graph Laplacian

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,2

and an explicit Euler diffusion step

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,3

together with a tangent multilayer perceptron (tMLP) that mixes channels in tangent spaces before reprojecting to the manifold. Both layers are permutation equivariant and isometry equivariant (Hanik et al., 2024).

4. Objectives, regularization, and optimization

ARGNN training objectives usually combine standard supervised losses with geometry-aware terms. In the intrinsic manifold setting, supervised cross-entropy or regression can be computed in tangent space or via manifold linear maps. Contrastive learning is often geodesic:

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,4

and triplet constraints use the same metric to enforce relative separation. Fréchet regularization is added to stabilize cluster structure, pooling, and hierarchy (Yu et al., 23 Mar 2026).

Regularization of the geometry itself is central. In continuous ARGNN, the discrete Ricci approximation

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,5

induces a Ricci flow-inspired penalty

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,6

while edgewise smoothness is enforced through

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,7

The total objective is

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,8

These terms are explicitly motivated as curvature flattening and metric-field continuity (Wang et al., 4 Aug 2025).

Other regularizers target curvature smoothness, metric eigenvalue ranges, anisotropy penalties, or boundary safety. For hyperbolic balls, one proposal uses

dM(x,y)=infγΓ(x,y)01γ˙(t),γ˙(t)gγ(t)dt,d_{M}(x,y) = \inf_{\gamma \in \Gamma(x,y)} \int_{0}^{1} \sqrt{\langle \dot{\gamma}(t), \dot{\gamma}(t)\rangle_{g_{\gamma(t)}}}\,dt,9

with Γ(x,y)\Gamma(x,y)0, together with gradient clipping in tangent space (Yu et al., 23 Mar 2026).

Optimization schemes vary by parameter type. Euclidean parameters are typically updated with Adam, while geometry-aware parameters use RiemannianAdam, Riemannian SGD, or RAMSGrad. R-GFM explicitly uses Adam for Euclidean parts and RiemannianAdam for curvature-aware parameters, with stabilize=100 (Liu et al., 11 May 2026). Earlier hyperbolic GNN work used RAMSGrad for hyperbolic parameters and AMSGrad for Euclidean parameters, establishing the now-standard separation between Euclidean and Riemannian optimization paths (Liu et al., 2019).

Self-supervised and continual variants extend this training picture. RieGrace uses Label-free Lorentz Distillation with intra-distillation and inter-distillation, mediated by a Generalized Lorentz Projection and Lorentz Layer that preserve manifold constraints across changing curvatures and dimensions (Sun et al., 2022).

5. Representative systems and empirical record

The current ARGNN literature is not a single architecture but a family of realizations that differ in what is adapted: local metric, curvature sign, manifold expert, scale, motif structure, temporal dynamics, or energy profile.

System Adaptive mechanism Reported setting/result
ARGNN (Wang et al., 4 Aug 2025) Node-wise diagonal SPD metric tensor field; Ricci flow-inspired regularization Cora F1 Γ(x,y)\Gamma(x,y)1; Cora AUROC Γ(x,y)\Gamma(x,y)2
R-GFM (Liu et al., 11 May 2026) Multi-scale GoG; dynamic Riemannian expert routing Up to a Γ(x,y)\Gamma(x,y)3 relative improvement on downstream tasks; Cora AUC-ROC Γ(x,y)\Gamma(x,y)4
RieGrace (Sun et al., 2022) CurvNet + AdaRGCN + label-free Lorentz Distillation Cora PM/FM Γ(x,y)\Gamma(x,y)5
CUSP (Grover et al., 1 Feb 2025) Mixed-curvature spectral filtering; Cusp Laplacian; hierarchical attention Up to Γ(x,y)\Gamma(x,y)6 improvement in node classification and up to Γ(x,y)\Gamma(x,y)7 in link prediction
MSG (Sun et al., 2024) Manifold spiking neuron; differentiation via manifold Physics node classification Γ(x,y)\Gamma(x,y)8; Physics energy Γ(x,y)\Gamma(x,y)9 mJ
GSG (Zhang et al., 9 Aug 2025) Mixed-curvature product space; curvature-aware attention and gating Physics node classification xx0; Physics LP xx1

R-GFM is the clearest foundation-model-scale realization of adaptive scale and geometry. It reports that fixed-hop GFMs suffer scale mismatch, constructs multi-scale GoGs, and shows state-of-the-art downstream performance across ten benchmarks and four domains. Its link prediction AUC-ROC scores include xx2 on Cora, xx3 on PubMed, xx4 on Photos, and xx5 on Texas, while robustness experiments report xx6 accuracy under edge drop xx7 and xx8 under node masking xx9 (Liu et al., 11 May 2026).

The continuous metric-field ARGNN reports strong performance on both homophilic and heterophilic datasets, including Texas yy0, Cornell yy1, and Wisconsin yy2 for node classification, alongside link prediction gains such as Actor yy3 and CiteSeer yy4. Its ablations attribute notable drops to removing Ricci regularization or metric smoothness, especially on heterophilic graphs (Wang et al., 4 Aug 2025).

Several specialized variants extend the adaptive program. Manifold GCN applies diffusion and tangent MLP layers to manifold-valued node features and reports yy5 accuracy on Alzheimer’s classification with sphere-valued normals and only yy6 parameters, compared with yy7 for a Euclidean GCN and yy8 for MeshCNN (Hanik et al., 2024). MotifRGC couples a diverse-curvature product manifold with a stable gyrovector kernel layer and motif-aware generative-contrastive learning, reporting link-prediction AUC values as high as yy9 on Cora and Expx(v)\operatorname{Exp}_x(v)0 on PubMed, while also noting that removing the kernel layer can produce NaNs on Citeseer link prediction (Sun et al., 2024).

Spiking variants introduce a separate axis of adaptation. MSG frames manifold updates as geodesic state evolution driven by spiking currents and replaces BPTT with differentiation via manifold, reporting at least Expx(v)\operatorname{Exp}_x(v)1 energy savings over ANN-R baselines across datasets (Sun et al., 2024). GSG adds mixed-curvature product spaces with instance-wise manifold gating and curvature-aware attention, giving, for example, Computers node classification Expx(v)\operatorname{Exp}_x(v)2 and link prediction Expx(v)\operatorname{Exp}_x(v)3 (Zhang et al., 9 Aug 2025).

6. Theory, interpretability, and unresolved issues

The theoretical literature around ARGNN has grown unusually quickly. For the continuous metric-field model, the convergence theorem states that under bounded features, Lipschitz task loss, SPD and bounded metrics, and connected graph assumptions,

Expx(v)\operatorname{Exp}_x(v)4

and a separate universality theorem shows that Euclidean GNNs, constant-curvature models, and product-manifold GNNs arise as constrained cases of the adaptive diagonal metric field (Wang et al., 4 Aug 2025).

R-GFM contributes complementary guarantees at the foundation-model level. Its Theorem 3.2 states that fused multi-hop noise satisfies Expx(v)\operatorname{Exp}_x(v)5 relative to fixed-hop noise. Theorem 3.3 states that the expected squared embedding error of the sparse similarity-based GoG is strictly lower than both the no-edge and fully connected constructions. Theorem 3.4 gives an excess-risk upper bound

Expx(v)\operatorname{Exp}_x(v)6

with dynamic expert selection satisfying Expx(v)\operatorname{Exp}_x(v)7, and Theorem 3.5 states that the best achievable target bound of R-GFM is strictly smaller than that of MDGFM under mild target shift assumptions (Liu et al., 11 May 2026).

Over-squashing analysis provides a geometric interpretation of long-range information flow:

Expx(v)\operatorname{Exp}_x(v)8

Here Expx(v)\operatorname{Exp}_x(v)9 captures graph topology, while Logx(y)\operatorname{Log}_x(y)0 captures curvature through the differentials of Logx(y)\operatorname{Log}_x(y)1 and Logx(y)\operatorname{Log}_x(y)2. Negative curvature can make Logx(y)\operatorname{Log}_x(y)3, while positive curvature can make it smaller than Logx(y)\operatorname{Log}_x(y)4 (Balla, 2023).

Interpretability claims in ARGNN are usually geometric rather than token-based. Curvature fields act as intrinsic indicators of structure; geodesic attention makes relational focus explicit; Fréchet centers expose “structural hubs”; and large holonomy, interpreted as path-dependent transport, is proposed as a flag for inconsistency, whereas stable curvature fields indicate consistent structural logic (Yu et al., 23 Mar 2026). In the continuous metric-field model, learned geometries are additionally reported to show flatter regions for separable clusters and higher curvature near decision boundaries, while Neighbor-Relative Metric Dispersion correlates with heterophily (Wang et al., 4 Aug 2025).

The limitations are equally consistent across papers. Reported failure modes include numerical instability near hyperbolic boundaries, curvature overfitting, ambiguous manifold selection in sparse neighborhoods, and the expense of exact parallel transport on general manifolds (Yu et al., 23 Mar 2026). The diagonal metric assumption misses rotated anisotropy and off-diagonal coupling (Wang et al., 4 Aug 2025). CV-based expert-count selection in R-GFM is explicitly described as effective but heuristic (Liu et al., 11 May 2026). Continual contrastive distillation in RieGrace has Logx(y)\operatorname{Log}_x(y)5 complexity (Sun et al., 2022). CUSP inherits the overhead of Ollivier–Ricci estimation and Sinkhorn-based curvature-aware preprocessing (Grover et al., 1 Feb 2025). MSG is presently focused on undirected, homophilous graphs (Sun et al., 2024).

The forward agenda is already visible. One branch seeks universal structural understanding through intrinsic geometry and a vector-bundle interface between graph structure and Euclidean semantic fibers, positioning ARGNN as the internal Riemannian engine of broader Graph Foundation Models and Riemannian Foundation Models (Yu et al., 23 Mar 2026). Another branch pushes toward time-varying metrics, edge-dependent metrics, non-diagonal SPD parameterizations, multi-relational geometric fields, and joint geometry–rewiring schemes (Wang et al., 4 Aug 2025, Balla, 2023). A plausible implication is that future ARGNN systems will be judged less by whether they choose hyperbolic or spherical space, and more by how effectively they learn, regularize, and exploit intrinsic geometry as a transferable computational object.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Adaptive Riemannian Graph Neural Networks (ARGNN).