Fully-inductive Node Classification on Arbitrary Graphs
Jianan Zhao, Zhaocheng Zhu, Mikhail Galkin, Hesham Mostafa, Michael, Bronstein, Jian Tang

TL;DR
This paper introduces GraphAny, a fully-inductive graph neural network model capable of generalizing to arbitrary test graphs with new structures, features, and labels, by leveraging an analytical solution and learned attention.
Contribution
GraphAny is the first model to handle fully-inductive node classification on arbitrary graphs with different feature and label spaces.
Findings
Achieves 67.26% accuracy on new graphs with minimal training data.
Outperforms all inductive baselines and transductive methods.
Demonstrates strong generalization to diverse graph structures.
Abstract
One fundamental challenge in graph machine learning is generalizing to new graphs. Many existing methods following the inductive setup can generalize to test graphs with new structures, but assuming the feature and label spaces remain the same as the training ones. This paper introduces a fully-inductive setup, where models should perform inference on arbitrary test graphs with new structures, feature and label spaces. We propose GraphAny as the first attempt at this challenging setup. GraphAny models inference on a new graph as an analytical solution to a LinearGNN, which can be naturally applied to graphs with any feature and label spaces. To further build a stronger model with learning capacity, we fuse multiple LinearGNN predictions with learned inductive attention scores. Specifically, the attention module is carefully parameterized as a function of the entropy-normalized distance…
Peer Reviews
Decision·ICLR 2025 Poster
1. This paper proposes a novel problem setting seemingly impractical, and provides a reasonable solution to it. Previously, I was doubtful about the feasibility of graph foundation models, since unlike in NLP and CV, graph data is more universal and diverse. The information heterogeneity between different graphs may make this fully inductive setting impossible, i.e., I didn't think the knowledge in different graphs has much in common. However, the authors provide an impressive and valid solution
1. (Explainability) I didn't see any explanation of one very important question: why could the knowledge learned from one graph be transferred to another unseen and unrelated graph? The authors should provide more intuitive insights on this point. From my point of view, LinearGNNs with different graph operations may serve as probes to extract different types of intrinsic knowledge from the graph, then the permutation and dimension invariant attention module could combine this knowledge in a sema
1. This paper tackles a great challenging fully-inductive graph learning task. 2. This paper introduces an inductive attention module that satisfies permutation invariance properties and generalizes to new graphs.
1. The presentation of this paper needs improvement. Many details are missing in the section of methodology. - The authors conduct the experimental on motivating the entropy normalization, while the experimental setup in figure 5 is not explicit. It's not suggested to specify what these methods are until the section 4.1. The authors should provide more explicit explanation of the experimental setup for Figure 5. - It's not clear what is the learnable parameters in the attention module and how t
S1. The authors are ambitious, tackling a highly challenging and valuable problem: designing a foundational GNN model that can generalize across diverse datasets. S2. The proposed method is ingenious. The authors introduce a LinearGNN that does not require training, enabling the model to adapt to different datasets. S3. The experimental results are powerful and impressive. S4. The authors provide the complete code, along with a well-organized README file, to support their views.
W1. In fact, the proposed LinearGNNs seem to me more like a data preprocessing method which requires no learning to unify the feature and label spaces through analytical solutions. W2. Regarding W1, the authors’ statement in the Introduction that GraphAny is the first fully-inductive method seems somewhat over-claimed. According to the views in this paper, any model that can be solved analytically (i.e., without training) could also be seem as fully-inductive. Nonetheless, this point does not n
Code & Models
Videos
Taxonomy
TopicsAdvanced Graph Neural Networks
MethodsGraph Convolutional Network · Graph Attention Network
