Pith. sign in

REVIEW 4 major objections 5 minor 47 references

Scalability Matters: Overcoming Challenges in InstructGLM with Similarity-Degree-Based Sampling

T0 review · 4 major / 5 minor · reviewed 2026-08-16 · deepseek-v4-flash

Pith's one-line read Replacing InstructGLM's random neighbor sampling with a similarity-degree biased random walk and hop-aware token allocation gives consistent node-classification gains and lower token cost, the paper argues.

desk verdict A sensible incremental idea with a confounded evaluation that does not support the headline accuracy claims. read the letter →

arxiv 2505.03799 v1 pith:MSTBAP7N submitted 2025-05-02 cs.LG cs.AIcs.CL

classification cs.LGcs.AIcs.CL
keywords graphrepresentationlearninglargelanguagemodelsbiasedrandomwalknodeclassificationneighborsamplingtokenefficiencyinstructiontuningscalability
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper sets out to show that large language models can classify nodes in graphs accurately without any graph neural network, if the graph neighborhood is sampled intelligently rather than at random. It proposes SDM-InstructGLM, which biases the choice of neighboring nodes toward those with similar text features and high degree, and allocates the LLM's limited token budget across hops in proportion to the graph's observed structure. On CORA and PUBMED, the authors report that this beats the original InstructGLM at every hop depth they test, with the largest gain on CORA (roughly 19 accuracy points at 1-hop). If right, the result matters because it suggests a simple, interpretable sampling rule can remove a scalability bottleneck for LLM-only graph learning.

What carries the argument

The load-bearing mechanism is a biased random walk with transition probability $$p(v|u) = \text{softmax}(\cos\text{Sim}(h_u,h_v) \cdot \deg(v)).$$ The cosine similarity term keeps the walk near nodes whose text features match the anchor, and the degree term pulls it toward hubs; the same product serves as a ranking score for ordering nodes in the sequence. A hop-aware sampling rule $$N_{\text{sample}}(h) = \min\left(N_{\text{hop}}(h), \frac{T_{\max}}{T_{\text{avg}}}\right)$$ then caps how many nodes are encoded from each hop so the prompt fits the LLM's token limit while preserving a balanced spread of local and global context.

What would settle it

Re-run the CORA and PUBMED node-classification comparison with identical node features (either both TF-IDF or both BERT) and identical training epochs (both 2 or both 4), keeping only the sampling rule different; if the accuracy gap shrinks to near zero or reverses, the central claim is not supported. A second check is to run the link-prediction experiments the abstract promises, since no link-prediction results appear in the paper.

Watch

Extended reading notes

Core claim

The central claim is that the way neighborhoods are sampled into the prompt, not the LLM's architecture, is the main lever for making LLM-only graph learning work under token constraints. Concretely, the paper claims that computing a transition score as the product of cosine similarity between node feature embeddings and the neighbor's degree, then softmax-normalizing over neighbors, produces walks that retain both semantically relevant and structurally central nodes. Combined with ordering sampled nodes by the same score and capping per-hop node counts by the token budget, this 'similarity-degree-based' sampling consistently outperforms InstructGLM's random neighbor sampling across 1-, 2-, and 3-hop settings on both CORA and PUBMED, while using fewer tokens. The ablation studies are offered as evidence that both the similarity term and the degree term contribute to the gain, especially on the sparser CORA graph.

Load-bearing premise

The reported superiority assumes the comparison isolates the sampling mechanism, but the experiments change node features from TF-IDF to BERT and cut training from 4 to 2 epochs at the same time, so those changes could explain some or all of the accuracy gap.

Editorial extensions

If this is right

  • If the sampling rule is the cause of the gains, then other LLM-only graph methods can adopt the same similarity-degree walk without changing the underlying model architecture.
  • Hop-aware token allocation gives a principled way to scale LLM-only graph processing to larger graphs than CORA and PUBMED, since the prompt stays within budget while coverage follows the graph's natural density.
  • The strong ablation results on CORA imply that on sparse, class-heavy graphs, feature similarity and hub selection matter more, while on dense, text-rich graphs like PUBMED, the choice of sampling matters less.
  • The consistent small gains on PUBMED at all hop depths suggest the method does not trade local accuracy for global context, which is a direct counter to the usual random-sampling information loss.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A testable extension the authors leave implicit is to run the same comparison on a deliberately heterophilic graph, where connected nodes tend to differ in class; the degree term could either help by finding hubs or hurt by over-weighting dissimilar neighbors.
  • Because the abstract claims link-prediction gains but the experiments only report node classification, the link-prediction claim is currently an unsupported inference of the paper, and a companion experiment would settle it.
  • The degree-bias term resembles a popularity prior, so in graphs with skewed degree distributions it may push the walk toward a few hubs and reduce coverage; that is a plausible failure mode worth checking, not something the paper tests.
  • The scalability claim rests on CORA and PUBMED only, and the authors state they could not run the ArXiv dataset used in the original InstructGLM because of replication issues, so scaling to large graphs remains untested.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes SDM-InstructGLM, a modification of the InstructGLM framework for graph learning with LLMs. The method replaces InstructGLM's random neighbor sampling with a similarity-degree biased random walk, adds a structured node ordering scheme, and introduces hop-aware node selection under token constraints. The authors report node-classification accuracy on CORA and PUBMED, claiming consistent improvements over the original InstructGLM across 1-, 2-, and 3-hop settings, and they provide ablations removing the cosine-similarity and degree terms. Source code is made available on GitHub.

Significance. If the reported gains were attributable to the proposed sampling mechanism, the work would offer a simple, interpretable, and token-efficient way to scale LLM-only graph processing, which is a genuinely useful direction. The paper also provides public code and performs component-level ablations, which are strengths. However, the central comparison in Table II changes node features and training epochs simultaneously with the sampling method, so the headline accuracy gap cannot be attributed to SDM. The abstract additionally claims link-prediction improvements without reporting any link-prediction experiments, and the claimed benefit of structured node ordering is not supported by a dedicated experiment. As presented, the core contribution is not established.

major comments (4)
  1. [Section V-A, Table II] The headline comparison is confounded. The baseline uses TF-IDF features and was typically trained for 4 epochs, while SDM-InstructGLM uses BERT-based embeddings and is trained for 2 epochs (Section V-A explicitly states both changes). On CORA, where the reported gains are 13–19 points, the improvement could plausibly come from the stronger feature encoder or the different training budget rather than from similarity-degree sampling. A controlled comparison that runs the original random-sampling InstructGLM with BERT features, 2 epochs, and the same token budget is necessary before RQ1 can be answered.
  2. [Abstract, Section V-B] The abstract claims that the method 'enhances performance on graph-based tasks such as node classification and link prediction,' but no link-prediction experiment appears anywhere in the manuscript; Tables II–IV report only node-classification accuracy. The statement in Section V-A that readers should consult prior InstructGLM work for GNN and Graph Transformer comparisons does not supply the missing experiments, so the scope and evidence for the stated claims are mismatched.
  3. [Section IV-B, Section VI] Section IV-B asserts that 'Empirical results demonstrate that this method outperforms random ordering,' but no experiment isolating the structured-ordering component is reported. The conclusion itself lists as future work the goal of identifying the dataset characteristics that give the node-ordering method its advantage over the random-walk method, which indicates that the ordering benefit is not yet established by the present evidence.
  4. [Section IV-C] The hop-aware token allocation formula Nsample(h) = min(Nhop(h), Tmax/Tavg) applies the same global node cap to each hop rather than distributing the token budget according to the empirical hop distribution as the text claims. The manuscript also does not report any verification that total token consumption stays within Tmax under this rule, so the token-efficiency advantage over fixed-threshold sampling is not demonstrated.
minor comments (5)
  1. [References] Reference [14] appears to be a placeholder ('F. Author and S. Author') with no real venue, and references [13] and [34] are identical; reference [37] duplicates reference [8]. These should be corrected.
  2. [Table IV] The InstructGLM baseline numbers in Table IV (88.26, 89.53, 89.55) differ from the corresponding numbers in Table II (91.56, 90.87, 90.85) without explanation; if the limited-prompt-node setup changes the baseline, the discrepancy should be described explicitly.
  3. [Section I] The Introduction contains a typo: 'link prediction., graph reasoning' has a stray period before the comma.
  4. [Section IV-C] The sentence 'Empirical evaluations confirm that this structured sampling approach improves subgraph representation' reports a result that is not tied to any table or figure in the paper; either cite the relevant experiment or remove the sentence.
  5. [Section V-A] The statement that the model 'consistently surpasses previous benchmarks' is not backed by a comparison table and should be either substantiated with numbers or softened to match the reported experiments.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the method is a heuristic sampling rule evaluated against an external baseline, and no prediction reduces to a fitted input or self-citation chain.

full rationale

The paper's derivation chain is empirical rather than definitional. Equations (10)-(13) define the biased random walk transition probability directly from cosine similarity and degree centrality, and the hop-aware node count in Section IV-C is a heuristic allocation rule based on dataset statistics; neither is derived from the accuracy results it later reports, so no prediction is equivalent to its input by construction. Table II compares SDM-InstructGLM against the external InstructGLM baseline, and Tables III-IV are ablations within the proposed method. Although the baseline comparison simultaneously changes node features from TF-IDF to BERT embeddings and reduces training from 4 to 2 epochs, that is a valid experimental-confounding concern about attribution of the accuracy gains, not a circularity in the mathematical or argumentative sense. The self-citations [13] and [34] point to the authors' own WalkLM community-detection paper, but that work is cited only as an example of LLMs-only graph methods and is not used to justify the central claim or to forbid alternatives. No uniqueness theorem is imported from the authors' prior work, no fitted parameter is renamed as a prediction, and no known result is merely renamed. Accordingly, the paper shows no circular reasoning under the supplied criteria.

Assumptions & free parameters 2 free parameters · 5 assumptions · 0 invented entities

The method rests on several unverified domain assumptions: BERT cosine similarity aligns with class structure, degree is a good proxy for importance, and the prompt format faithfully represents topology. The token budget constants T_max and T_avg are never specified. No invented entities are introduced.

free parameters (2)
  • T_max (maximum token budget for node representations)
    Used in the N_sample(h) formula in Section IV-C but never assigned a value or swept in experiments; it controls how many nodes per hop are sampled.
  • T_avg (estimated token cost per node)
    Used in the same formula; no value or estimation procedure is given.
assumptions (5)
  • standard math Softmax normalization of the biased transition scores yields a valid sampling distribution.
    Equations (12)-(13) define p(v|u) as softmax over z_uv; this is a standard probability normalization.
  • domain assumption Cosine similarity of BERT node embeddings captures semantic relevance for node classification.
    Used to weight random walk transitions and node ordering in Section IV-A; no evidence is given that BERT cosine similarity aligns with label structure in CORA or PUBMED.
  • domain assumption Degree centrality is a valid proxy for structural importance in these graphs.
    Used in z_uv = cosSim(h_u,h_v) * deg(v); motivated by intuition, not tested against other centrality measures.
  • domain assumption Homophily holds: nodes with similar features and high degree are informative for classification.
    Underlies the whole similarity-degree bias; reference [43] is cited, but the assumption is not directly verified for these datasets.
  • domain assumption The InstructGLM textual prompt representation (Equations 5-7) faithfully encodes graph structure.
    Adopted from [18] without independent verification; the paper relies on this representation for all experiments.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Scalability Matters: Overcoming Challenges in InstructGLM with Similarity-Degree-Based Sampling." pith.science (2026). https://pith.science/paper/MSTBAP7N

@misc{pith2026250503799,
  author       = {Pith},
  title        = {Pith review of: Scalability Matters: Overcoming Challenges in InstructGLM with Similarity-Degree-Based Sampling},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MSTBAP7N}},
  note         = {Machine review of arXiv:2505.03799}
}
read the original abstract

Large Language Models (LLMs) have demonstrated strong capabilities in various natural language processing tasks; however, their application to graph-related problems remains limited, primarily due to scalability constraints and the absence of dedicated mechanisms for processing graph structures. Existing approaches predominantly integrate LLMs with Graph Neural Networks (GNNs), using GNNs as feature encoders or auxiliary components. However, directly encoding graph structures within LLMs has been underexplored, particularly in the context of large-scale graphs where token limitations hinder effective representation. To address these challenges, we propose SDM-InstructGLM, a novel instruction-tuned Graph Language Model (InstructGLM) framework that enhances scalability and efficiency without relying on GNNs. Our method introduces a similarity-degree-based biased random walk mechanism, which selectively samples and encodes graph information based on node-feature similarity and degree centrality, ensuring an adaptive and structured representation within the LLM. This approach significantly improves token efficiency, mitigates information loss due to random sampling, and enhances performance on graph-based tasks such as node classification and link prediction. Furthermore, our results demonstrate the feasibility of LLM-only graph processing, enabling scalable and interpretable Graph Language Models (GLMs) optimized through instruction-based fine-tuning. This work paves the way for GNN-free approaches to graph learning, leveraging LLMs as standalone graph reasoning models. Our source code is available on GitHub.

Figures

Figures reproduced from arXiv: 2505.03799 by the authors.

Figure 1
Figure 1. Illustration of the SDM-InstructGLM framework, [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Illustration of a degree and similarity-biased random [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

47 extracted references · 10 canonical work pages

  1. [14]

    Challenges and opportunities in gnn-llm integration,

    F. Author and S. Author, “Challenges and opportunities in gnn-llm integration,” Journal of AI Research , vol. 15, no. 4, pp. 567–589, 2023

  2. [34]

    Enhancing graph representation learning with walklm for effective community detection,

    H. Lee, M. Islam, C. Yi, and C. N. Chakraborttii, “Enhancing graph representation learning with walklm for effective community detection,” in Proceedings of the 11th International Conference on Networking, Systems, and Security , ser. NSysS ’24. New York, NY , USA: Association for Computing Machinery, 2025, p. 41–47. [Online]. Available: https://doi.org/1...

  3. [1]

    Bert: Pre-training of deep bidirectional transformers for language understanding,

    J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova, “Bert: Pre-training of deep bidirectional transformers for language understanding,” 2019. [Online]. Available: https://arxiv.org/abs/1810.04805

  4. [2]

    Llama: Open and efficient foundation language models,

    H. Touvron, T. Lavril, G. Izacard, X. Martinet, M.-A. Lachaux, T. Lacroix, B. Rozi `ere, N. Goyal, E. Hambro, F. Azhar, A. Rodriguez, A. Joulin, E. Grave, and G. Lample, “Llama: Open and efficient foundation language models,” 2023. [Online]. Available: https: //arxiv.org/abs/2302.13971

  5. [3]

    Learning transferable visual models from natural language supervision,

    A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark, G. Krueger, and I. Sutskever, “Learning transferable visual models from natural language supervision,” 2021. [Online]. Available: https://arxiv.org/abs/2103.00020

  6. [4]

    Flamingo: a visual language model for few-shot learning,

    J.-B. Alayrac, J. Donahue, P. Luc, A. Miech, I. Barr, Y . Hasson, K. Lenc, A. Mensch, K. Millican, M. Reynolds, R. Ring, E. Rutherford, S. Cabi, T. Han, Z. Gong, S. Samangooei, M. Monteiro, J. Menick, S. Borgeaud, A. Brock, A. Nematzadeh, S. Sharifzadeh, M. Binkowski, R. Barreira, O. Vinyals, A. Zisserman, and K. Simonyan, “Flamingo: a visual language mod...

  7. [5]

    Blip-2: Bootstrapping language- image pre-training with frozen image encoders and large language models,

    J. Li, D. Li, S. Savarese, and S. Hoi, “Blip-2: Bootstrapping language- image pre-training with frozen image encoders and large language models,” 2023. [Online]. Available: https://arxiv.org/abs/2301.12597

  8. [6]

    Coca: Contrastive captioners are image-text foundation models,

    J. Yu, Z. Wang, V . Vasudevan, L. Yeung, M. Seyedhosseini, and Y . Wu, “Coca: Contrastive captioners are image-text foundation models,” 2022. [Online]. Available: https://arxiv.org/abs/2205.01917

Show all 47 references
  1. [7]

    Graph-bert: Only attention is needed for learning graph representations,

    J. Zhang, H. Zhang, C. Xia, and L. Sun, “Graph-bert: Only attention is needed for learning graph representations,” 2020. [Online]. Available: https://arxiv.org/abs/2001.05140

  2. [9]

    Graphicl: Unlocking graph learning potential in llms through structured prompt design,

    Y . Sun, Z. Ma, Y . Fang, J. Ma, and Q. Tan, “Graphicl: Unlocking graph learning potential in llms through structured prompt design,”

  3. [10]

    Llm and gnn are complementary: Distilling llm for multimodal graph learning,

    J. Xu, Z. Wu, M. Lin, X. Zhang, and S. Wang, “Llm and gnn are complementary: Distilling llm for multimodal graph learning,” 2024. [Online]. Available: https://arxiv.org/abs/2406.01032

  4. [11]

    Can we soft prompt llms for graph learning tasks?

    Z. Liu, X. He, Y . Tian, and N. V . Chawla, “Can we soft prompt llms for graph learning tasks?” in Companion Proceedings of the ACM Web Conference 2024 , ser. WWW ’24. ACM, May 2024, p. 481–484. [Online]. Available: http://dx.doi.org/10.1145/3589335.3651476

  5. [12]

    A survey of graph meets large language model: Progress and future directions,

    Y . Li, Z. Li, P. Wang, J. Li, X. Sun, H. Cheng, and J. X. Yu, “A survey of graph meets large language model: Progress and future directions,”

  6. [15]

    Llaga: Large language and graph assistant,

    R. Chen, T. Zhao, A. Jaiswal, N. Shah, and Z. Wang, “Llaga: Large language and graph assistant,” 2024. [Online]. Available: https://arxiv.org/abs/2402.08170

  7. [16]

    A Note on Over-Smoothing for Graph Neural Networks,

    C. Cai and Y . Wang, “A Note on Over-Smoothing for Graph Neural Networks,” 2020

  8. [17]

    Graph neural networks exponentially lose expressive power for node classification,

    K. Oono and T. Suzuki, “Graph neural networks exponentially lose expressive power for node classification,” 2021. [Online]. Available: https://arxiv.org/abs/1905.10947

  9. [18]

    Language is all a graph needs,

    R. Ye, C. Zhang, R. Wang, S. Xu, and Y . Zhang, “Language is all a graph needs,” 2024. [Online]. Available: https://arxiv.org/abs/2308.07134

  10. [19]

    Semi-supervised classification with graph convolutional networks,

    T. N. Kipf and M. Welling, “Semi-supervised classification with graph convolutional networks,” arXiv preprint arXiv:1609.02907 , 2016

  11. [20]

    Graph attention networks,

    P. Veli ˇckovi´c, G. Cucurull, A. Casanova, A. Romero, P. Lio, and Y . Ben- gio, “Graph attention networks,” arXiv preprint arXiv:1710.10903, 2017

  12. [21]

    Inductive representation learning on large graphs,

    W. L. Hamilton, R. Ying, and J. Leskovec, “Inductive representation learning on large graphs,” 2018. [Online]. Available: https://arxiv.org/ abs/1706.02216

  13. [22]

    Gpt-4 technical report,

    OpenAI, J. Achiam, S. Adler, S. Agarwal, L. Ahmad, I. Akkaya, F. L. Aleman, D. Almeida, J. Altenschmidt, S. Altman, S. Anadkat, R. Avila, I. Babuschkin, S. Balaji, V . Balcom, P. Baltescu, H. Bao, M. Bavarian, J. Belgum, I. Bello, J. Berdine, G. Bernadett-Shapiro, C. Berner, L...

  14. [23]

    Scaling instruction-finetuned language models,

    H. W. Chung, L. Hou, S. Longpre, B. Zoph, Y . Tay, W. Fedus, Y . Li, X. Wang, M. Dehghani, S. Brahma, A. Webson, S. S. Gu, Z. Dai, M. Suzgun, X. Chen, A. Chowdhery, A. Castro-Ros, M. Pellat, K. Robinson, D. Valter, S. Narang, G. Mishra, A. Yu, V . Zhao, Y . Huang, A. Dai, H. Y...

  15. [24]

    Gpt4graph: Can large language models understand graph structured data ? an empirical evaluation and benchmarking,

    J. Guo, L. Du, H. Liu, M. Zhou, X. He, and S. Han, “Gpt4graph: Can large language models understand graph structured data ? an empirical evaluation and benchmarking,” 2023. [Online]. Available: https://arxiv.org/abs/2305.15066

  16. [25]

    A survey of large language models for graphs,

    X. Ren, J. Tang, D. Yin, N. Chawla, and C. Huang, “A survey of large language models for graphs,” in Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, 2024, pp. 6616– 6626

  17. [26]

    Graphgpt: Graph instruction tuning for large language models,

    J. Tang, Y . Yang, W. Wei, L. Shi, L. Su, S. Cheng, D. Yin, and C. Huang, “Graphgpt: Graph instruction tuning for large language models,” 2024. [Online]. Available: https://arxiv.org/abs/2310.13023

  18. [27]

    Higpt: Heterogeneous graph language model,

    J. Tang, Y . Yang, W. Wei, L. Shi, L. Xia, D. Yin, and C. Huang, “Higpt: Heterogeneous graph language model,” 2024. [Online]. Available: https://arxiv.org/abs/2402.16024

  19. [28]

    Graphllm: Boosting graph reasoning ability of large language model,

    Z. Chai, T. Zhang, L. Wu, K. Han, X. Hu, X. Huang, and Y . Yang, “Graphllm: Boosting graph reasoning ability of large language model,”

  20. [29]

    Prompt-based node feature extractor for few-shot learning on text-attributed graphs,

    X. Huang, K. Han, D. Bao, Q. Tao, Z. Zhang, Y . Yang, and Q. Zhu, “Prompt-based node feature extractor for few-shot learning on text-attributed graphs,” 2023. [Online]. Available: https: //arxiv.org/abs/2309.02848

  21. [30]

    Opengraph: Towards open graph foundation models,

    L. Xia, B. Kao, and C. Huang, “Opengraph: Towards open graph foundation models,” 2024. [Online]. Available: https://arxiv.org/abs/ 2403.01121

  22. [31]

    Greaselm: Graph reasoning enhanced language models for question answering,

    X. Zhang, A. Bosselut, M. Yasunaga, H. Ren, P. Liang, C. D. Manning, and J. Leskovec, “Greaselm: Graph reasoning enhanced language models for question answering,” 2022. [Online]. Available: https://arxiv.org/abs/2201.08860

  23. [32]

    Disentangled representation learning with large language models for text-attributed graphs,

    Y . Qin, X. Wang, Z. Zhang, and W. Zhu, “Disentangled representation learning with large language models for text-attributed graphs,” 2024. [Online]. Available: https://arxiv.org/abs/2310.18152

  24. [33]

    Walklm: A uniform language model fine-tuning framework for attributed graph embedding,

    Y . Tan, Z. Zhou, H. Lv, W. Liu, and C. Yang, “Walklm: A uniform language model fine-tuning framework for attributed graph embedding,” in Advances in Neural Information Processing Systems , A. Oh, T. Nau- mann, A. Globerson, K. Saenko, M. Hardt, and S. Levine, Eds., vol. 36. C...

  25. [35]

    Graphwiz: An instruction-following language model for graph problems,

    N. Chen, Y . Li, J. Tang, and J. Li, “Graphwiz: An instruction-following language model for graph problems,” 2024. [Online]. Available: https://arxiv.org/abs/2402.16029

  26. [36]

    A generalization of transformer networks to graphs,

    V . P. Dwivedi and X. Bresson, “A generalization of transformer networks to graphs,” 2021. [Online]. Available: https://arxiv.org/abs/2012.09699

  27. [37]

    Do transformers really perform bad for graph representation?

    C. Ying, T. Cai, S. Luo, S. Zheng, G. Ke, D. He, Y . Shen, and T.-Y . Liu, “Do transformers really perform bad for graph representation?”

  28. [38]

    Graph convolutional neural networks for web-scale recommender systems,

    R. Ying, R. He, K. Chen, P. Eksombatchai, W. L. Hamilton, and J. Leskovec, “Graph convolutional neural networks for web-scale recommender systems,” in Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining , ser. KDD ’18. ACM, Jul. 201...

  29. [39]

    Revisiting semi- supervised learning with graph embeddings,

    Z. Yang, W. W. Cohen, and R. Salakhutdinov, “Revisiting semi- supervised learning with graph embeddings,” 2016. [Online]. Available: https://arxiv.org/abs/1603.08861

  30. [40]

    Harnessing explanations: Llm-to-lm interpreter for enhanced text- attributed graph representation learning,

    X. He, X. Bresson, T. Laurent, A. Perold, Y . LeCun, and B. Hooi, “Harnessing explanations: Llm-to-lm interpreter for enhanced text- attributed graph representation learning,” 2024. [Online]. Available: https://arxiv.org/abs/2305.19523

  31. [41]

    Open graph benchmark: Datasets for machine learning on graphs,

    W. Hu, M. Fey, M. Zitnik, Y . Dong, H. Ren, B. Liu, M. Catasta, and J. Leskovec, “Open graph benchmark: Datasets for machine learning on graphs,” 2020

  32. [42]

    Available: https://arxiv.org/abs/2106.05234

    [Online]. Available: https://arxiv.org/abs/2106.05234

  33. [43]

    When do graph neural networks help with node classification? investigating the impact of homophily principle on node distinguishability,

    S. Luan, C. Hua, M. Xu, Q. Lu, J. Zhu, X.-W. Chang, J. Fu, J. Leskovec, and D. Precup, “When do graph neural networks help with node classification? investigating the impact of homophily principle on node distinguishability,” 2024. [Online]. Available: https://arxiv.org/abs/2304.14274

  34. [44]

    Pubmed text similarity model and its application to curation efforts in the conserved domain database,

    R. Islamaj, W. J. Wilbur, N. Xie, N. R. Gonzales, N. Thanki, R. Yamashita, C. Zheng, A. Marchler-Bauer, and Z. Lu, “Pubmed text similarity model and its application to curation efforts in the conserved domain database,” Database, vol. 2019, p. baz064, 07 2019. [Online]. Availa...

  35. [47]

    Decoupled weight decay regularization,

    I. Loshchilov and F. Hutter, “Decoupled weight decay regularization,”

  36. [2019]

    Available: https://arxiv.org/abs/1711.05101

    [Online]. Available: https://arxiv.org/abs/1711.05101

  37. [2023]

    Available: https://arxiv.org/abs/2310.05845

    [Online]. Available: https://arxiv.org/abs/2310.05845

  38. [2024]

    Available: https://arxiv.org/abs/2311.12399

    [Online]. Available: https://arxiv.org/abs/2311.12399

  39. [2025]

    Available: https://arxiv.org/abs/2501.15755

    [Online]. Available: https://arxiv.org/abs/2501.15755

Pith tools

Reviewed August 16, 2026 · model on record in the stance chip above.