Pith. sign in

REVIEW 3 major objections 6 minor 66 references

Efficient Identity and Position Graph Embedding via Spectral-Based Random Feature Aggregation

T0 review · 3 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read Random noise, propagated through a parameter-free spectral graph filter in a single forward pass, yields embeddings that match or beat trained GNNs and dedicated baselines on both identity and position tasks—provided the filter sign…

desk verdict Useful empirical paper with a real but overstated quality-efficiency claim; test-set hyperparameter tuning and missing error bars are the main issues. read the letter →

arxiv 2505.20992 v1 pith:AK3TJZEU submitted 2025-05-27 cs.LG cs.SI

classification cs.LGcs.SI
keywords EfficientgraphembeddingNodeidentitypositionSpectralneuralnetworksRandomfeatureaggregationsignalprocessingDegreecorrectionUnsupervised
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 tries to establish that identity and position graph embeddings—the two standard kinds of topology-only node embeddings—can be produced without any training, feature extraction, or eigen-decomposition. The method, random feature aggregation (RFA), feeds Gaussian random noise into a parameter-free spectral graph filter and reads off the output after a single forward propagation through $K$ layers. The paper argues that the filter's sign is a task selector: a low-pass filter amplifies community structure and yields position embeddings, while a high-pass filter amplifies degree variation and yields identity embeddings. On ten datasets, the two RFA variants stay within the top three on F1 quality and achieve the best or near-best quality-versus-time trade-off, while several trained GNN baselines time out or run out of memory on the largest graphs. If this holds, topology-only graph embedding becomes a near-instant, parameter-free inference routine.

What carries the argument

The load-bearing mechanism is random feature aggregation (RFA): a parameter-free spectral GNN backbone. Each layer applies the graph convolution $g(\tilde{\Lambda}) = (\delta+\alpha)I_N - \alpha\tilde{\Lambda}$ to the current node-feature matrix, where $\tilde{\Lambda}$ is the eigenvalue matrix of the degree-corrected normalized Laplacian $L_\tau = I_N - D_\tau^{-1/2}AD_\tau^{-1/2}$ with $D_\tau = D + \tau I_N$; the sign of $\alpha$ chooses low-pass (positions) or high-pass (identities), and the degree-correction term $\tau$ squeezes the spectrum toward 1, an effect the Gershgorin circle theorem explains. Stacking $K$ layers with a nonlinear activation and row or column normalization turns the initial noise into informative embeddings while keeping the whole procedure one forward pass. The argument works because low-frequency eigenvectors are the relaxed solution of normalized cut, while high-frequency eigenvectors concentrate degree variation so that nodes with identical ego-nets receive identical coordinates.

What would settle it

On a fresh graph with known structural roles and known communities, freeze a single RFA(H) and RFA(L) configuration chosen only on validation data, then run both variants; if the high-pass variant cannot separate nodes with identical ego-nets, or the low-pass variant cannot separate communities at above-chance F1, the paper's spectral identity/position claim would be falsified.

Watch

Extended reading notes

Core claim

The central claim is that node identities and node positions are carried by opposite ends of the graph spectrum. Low-frequency eigenvectors of the normalized Laplacian, which solve the relaxed normalized-cut objective, encode community structure and therefore positions; high-frequency eigenvectors encode local degree variation that distinguishes rooted subgraphs and therefore identities. RFA operationalizes this by replacing learned GNN weights with the fixed spectral kernel $g(\tilde{\Lambda}) = (\delta+\alpha)I_N - \alpha\tilde{\Lambda}$, feeding Gaussian noise $\Theta \sim \mathcal{N}(0,1/d)$ through $K$ such layers with nonlinear activation and normalization, and using the output as the embedding. The RFA(H) variant takes $\alpha<0$ (high-pass) and produces identity embeddings; RFA(L) takes $\alpha>0$ (low-pass) and produces position embeddings. The paper's experiments report top-three F1 quality on all ten datasets and the best or near-best normalized trade-off score between quality and inference time, with RFA completing in seconds to minutes where several trained GNN baselines time out or run out of memory.

Load-bearing premise

The load-bearing premise is that the per-dataset choices of dimension, degree-correction strength, layer count, activation, and normalization were not effectively tuned to the test sets; if those choices were made after seeing test performance, the reported quality advantage may not transfer to new graphs.

Editorial extensions

If this is right

  • Identity and position embeddings become a simple inference routine: draw Gaussian noise, apply the chosen filter for $K$ layers, and return the output—no optimizer, no eigen-decomposition, no feature extraction.
  • The filter sign is a task selector: choose $\alpha>0$ when the downstream task rewards community membership, and $\alpha<0$ when it rewards structural role; this gives a principled way to decide which topology property a spectral method will capture.
  • Inference cost is roughly linear in the number of edges and nodes, allowing graphs with more than a million nodes and a hundred million edges to be embedded in seconds on a GPU and in minutes on a CPU.
  • A small degree-correction parameter $\tau$ improves quality for both filter types, while a $\tau$ that is too large degrades it, giving a cheap tuning knob with a clear spectral interpretation.
  • For topology-only inputs, trained GNNs fed one-hot degree features need not be the default choice: the paper's results indicate that an untrained spectral backbone can match or exceed their embedding quality at a fraction of the cost.

Reading between the lines

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

  • Inference: Because the filter sign separates the two embedding tasks, the same backbone could be reused across different graphs without retraining; a testable prediction is that a rule based only on the downstream task (role classification versus community detection) will select the correct variant.
  • Inference: The degree-correction term acts as spectrum shaping—it pulls the eigenvalues of the Laplacian together—so it could be adopted by any spectral GNN as a cheap regularizer, not just by this parameter-free backbone.
  • Inference: Because RFA needs no labels, it can serve as a feature generator for semi-supervised or few-shot settings: run the random propagation once, then train only the downstream classifier on a small labeled set.
  • Inference: Since RFA's input is isotropic Gaussian noise, its output is a deterministic function of the random seed; ensembling or concatenating a few seeds is a natural, architecture-free way to reduce variance and possibly raise quality further.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 6 minor

Summary. This paper proposes random feature aggregation (RFA), an unsupervised graph embedding method that uses a parameter-free spectral GNN backbone with random Gaussian input, a degree-corrected graph convolution, nonlinear activation, and normalization. Two variants—RFA(H) with a high-pass filter (δ=0.1, α=−1) and RFA(L) with a low-pass filter (δ=0.1, α=1)—are designed to produce identity and position embeddings, respectively, through a single K-layer forward propagation with no training. The paper motivates the design with a graph-signal-processing observation on small examples that high- and low-frequency eigenvectors encode node identities and positions, and reports experiments on 10 datasets against 18 baselines, claiming better or competitive quality with orders of magnitude lower inference time, summarized by a normalized trade-off score (NToS). Theoretical remarks connect low-frequency eigenvectors to relaxed normalized cut and high-frequency eigenvectors to degree variation and the Weisfeiler-Lehman test, but these are heuristic. The code is publicly available.

Significance. If the reported results hold under a proper validation protocol, the paper makes a valuable empirical contribution: it shows that a training-free, random-input spectral aggregation can match or beat trained GNNs and dedicated structural embedding methods on unsupervised identity and position tasks, with a dramatic efficiency advantage. The connection between filter type and embedding property is interesting and potentially useful for practitioners. Strengths include the breadth of the evaluation (10 datasets, 18 baselines), the explicit efficiency and scalability analysis, and a public code release. The main caveat is that the quantitative claim currently rests on an evaluation protocol in which hyperparameters appear to be selected after observing test labels, and no uncertainty estimates are provided; until this is addressed, the significance of the empirical claim is not fully established.

major comments (3)
  1. [§4.1, Tables 8-9] The hyperparameters of RFA (d, τ, K, activation, normalization) appear to be selected per dataset on the test portion, since no held-out validation split or selection procedure is described and the settings vary widely across datasets (e.g., K ranges from 2 to 14; exp with z-norm is used on Europe but exp without normalization on USA). Because all three quantitative claims—quality, efficiency trade-off, and NToS—are computed from these settings, the comparison is potentially inflated. Please report a validation-based selection protocol (e.g., choose hyperparameters on the 20% labeled training split or a separate validation split) and give the resulting test scores, or provide results for a fixed default hyperparameter setting.
  2. [§4.1, Tables 3-4] No standard deviations or significance tests are reported for quality metrics, although differences between RFA and the best baseline are small on several datasets (e.g., Reality-Call micro-F1 85.88 vs. 85.72 for GMAE; Film micro-F1 60.03 vs. 59.51 for GMAE; PPI micro-F1 20.38 vs. 20.88 for SketchNE). Without repeated-measures variance or error bars, the claimed 'better quality' and the derived NToS improvements are not statistically substantiated. Please report means with standard deviations over the 10 random splits and, where relevant, paired significance tests.
  3. [§3.4, Remark 3.5] The proof of Remark 3.5 does not establish the claim that high-frequency information captures node identities. Equation (8) only rewrites the eigenvector equation to express λ_r as a sum of degree-normalized neighbor terms; the subsequent step that high-frequency eigenvectors 'encode degree information' and that RFA 'may play a role similar to the WL test' relies on an unverified injectivity condition and the phrase 'if a high-frequency base is powerful enough.' Since the paper presents this as a theoretical interpretation and labels it a proof, please either develop the argument into a precise statement with explicit conditions or clearly label the remarks as intuition.
minor comments (6)
  1. [§4.2] The phrase 'low- and high-pass information may respectively characterize node identities and positions' reverses the paper's own finding; it should read 'high- and low-pass information.'
  2. [Figure 4] The legend entries in Figure 4 use 'LFA' instead of 'RFA' (e.g., 'LFA(L) w/ CPU') and should be corrected to 'RFA.'
  3. [Appendix B] The USA dataset URL is identical to the Europe URL (europe-airports.edgelist); the USA link appears to be wrong and should be fixed.
  4. [§2] There is a typo in the sentence about Figure 1: 'v1 ad v8' should be 'v1 and v8.'
  5. [§4.3] The NToS computation should state explicitly how out-of-time and out-of-memory methods are treated in the min-max normalization, since their inclusion or exclusion affects the reported scores.
  6. [§4.1] The statement that for baselines 'the best quality metrics reported' were used is too vague for reproducibility; please specify the searched parameter grids and normalization choices for each baseline.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: RFA is a parameter-free, label-free embedding procedure whose claims are empirical and self-contained.

full rationale

The core derivation of RFA is not circular: the embedding is computed by feeding random Gaussian noise through a fixed, learnable-parameter-free spectral GNN layer that is only a degree-corrected normalized adjacency propagation (Eqs. 1-4), with no use of labels or ground-truth identities/positions during embedding generation. The high/low-frequency investigation (Fig. 1 and Appendix A) is an empirical observation about eigenvectors of the graph Laplacian used to motivate the filter choice, not a quantity fitted from the downstream labels and then reported as a prediction. The paper explicitly frames theoretical guarantees as future work in Section 6 ('This study empirically validates... In our future research, we plan to explore rigorous guarantees...'), confirming that the central claim is presented as an experimental finding rather than a derivation from assumptions containing the conclusion. Self-citations (e.g., IRWE [31], RaftGP [13], and related community-detection papers) appear only as motivation or related work; none provides a load-bearing uniqueness theorem, ansatz, or fitted parameter. The per-dataset hyperparameters in Tables 8 and 9 (d, tau, K, activation, normalization) are a legitimate experimental-design concern, but they do not constitute circularity under the required standard: no equation reduces to its inputs, and no fitted parameter is renamed as a prediction. The empirical quality claims are therefore self-contained against the external benchmark datasets and baselines, and no circular step can be exhibited.

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

The method itself is parameter-free at inference, but the reported results depend on per-dataset hyperparameters selected using test labels, which are effectively free parameters of the evaluation. No new physical or conceptual entities are introduced; the degree-corrected spectral convolution is a modification of an existing operation.

free parameters (5)
  • tau (degree correction term) = 0 to 20 across datasets (Tables 8-9)
    Chosen per dataset based on downstream classification quality; Fig. 6 shows it significantly changes results.
  • K (number of layers) = 2 to 14 across datasets (Tables 8-9)
    Tuned per dataset; quality improves with K but saturates, as shown in Fig. 5.
  • d (embedding dimension) = 64 to 512 across datasets
    Set per dataset and matched to baselines, but still a free choice affecting quality.
  • activation function = tanh or exp, depending on variant and dataset
    Ablation in Table 7 shows large quality swings (e.g., RFA(H) on Europe: tanh 26.78 vs exp 56.66).
  • normalization strategy = z-score, l2-norm, or none, per dataset
    Selected per dataset and impacts results (e.g., RFA(L) on Youtube without normalization drops to 25.35).
assumptions (5)
  • standard math Normalized graph Laplacian eigenvalues lie in [0,2] and eigenvectors form an orthonormal basis.
    Used in Sections 2-3 to define graph convolution and spectral filtering.
  • standard math Gershgorin Circle Theorem
    Used in Remark 3.3 to interpret how the degree correction term shifts the eigenvalue distribution.
  • domain assumption High-frequency eigenvectors encode node identities.
    The paper's central investigation, supported only by toy examples (Fig. 1, Fig. 8) and a real-graph case study (Fig. 9), not by a theorem.
  • domain assumption Low-frequency eigenvectors encode community structure.
    Standard spectral clustering result, cited to Von Luxburg [46].
  • ad hoc to paper Random noise input, after one feed-forward pass through a spectral filter with nonlinearity and normalization, preserves and exposes the relevant spectral information.
    Empirical property; Section 3.3 gives only a heuristic argument about magnitude control and no formal guarantee.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Efficient Identity and Position Graph Embedding via Spectral-Based Random Feature Aggregation." pith.science (2026). https://pith.science/paper/AK3TJZEU

@misc{pith2026250520992,
  author       = {Pith},
  title        = {Pith review of: Efficient Identity and Position Graph Embedding via Spectral-Based Random Feature Aggregation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AK3TJZEU}},
  note         = {Machine review of arXiv:2505.20992}
}
read the original abstract

Graph neural networks (GNNs), which capture graph structures via a feature aggregation mechanism following the graph embedding framework, have demonstrated a powerful ability to support various tasks. According to the topology properties (e.g., structural roles or community memberships of nodes) to be preserved, graph embedding can be categorized into identity and position embedding. However, it is unclear for most GNN-based methods which property they can capture. Some of them may also suffer from low efficiency and scalability caused by several time- and space-consuming procedures (e.g., feature extraction and training). From a perspective of graph signal processing, we find that high- and low-frequency information in the graph spectral domain may characterize node identities and positions, respectively. Based on this investigation, we propose random feature aggregation (RFA) for efficient identity and position embedding, serving as an extreme ablation study regarding GNN feature aggregation. RFA (i) adopts a spectral-based GNN without learnable parameters as its backbone, (ii) only uses random noises as inputs, and (iii) derives embeddings via just one feed-forward propagation (FFP). Inspired by degree-corrected spectral clustering, we further introduce a degree correction mechanism to the GNN backbone. Surprisingly, our experiments demonstrate that two variants of RFA with high- and low-pass filters can respectively derive informative identity and position embeddings via just one FFP (i.e., without any training). As a result, RFA can achieve a better trade-off between quality and efficiency for both identity and position embedding over various baselines.

Figures

Figures reproduced from arXiv: 2505.20992 by the authors.

Figure 1
Figure 1. An example of node identities and positions as well [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Distributions of frequencies { ˜𝜆𝑟 } w.r.t. different settings of 𝜏 based on the graph in [PITH_FULL_IMAGE:figures/full_fig_p004_2.png] view at source ↗
Figure 3
Figure 3. Intuition of computing NToS for trade-off analysis. [PITH_FULL_IMAGE:figures/full_fig_p006_3.png] view at source ↗
Figures from the paper (5 more)
Figure 4
Figure 4. Figure 4: Scalability analysis results of RFA. same inference time. Consistent with [PITH_FULL_IMAGE:figures/full_fig_p007_4.png]
Figure 5
Figure 5. Figure 5: Parameter analysis w.r.t. 𝐾 on PPI, Youtube, Europe, and Actor in terms of micro-F1(%). 0 1 5 10 20 50 τ 19.4 19.6 19.8 20 20.2 Micro-F1(%) (a) RFA(L), PPI 0 1 5 10 20 50 τ 40.5 41 41.5 Micro-F1(%) (b) RFA(L), Youtube 0 1 5 10 20 50 τ 50 55 Micro-F1(%) (c) RFA(H), Euro…
Figure 7
Figure 7. Figure 7: Full eigenvectors {u𝑟 } w.r.t. the normalized graph Laplacian L of the example graph in [PITH_FULL_IMAGE:figures/full_fig_p011_7.png]
Figure 8
Figure 8. Figure 8: A further example of node identities and positions [PITH_FULL_IMAGE:figures/full_fig_p011_8.png]
Figure 9
Figure 9. Figure 9: Case study about high-frequency bases [u˜ 𝑁 −2, u˜ 𝑁 −1] for two classes of USA w.r.t. 𝜏 ∈ {0, 10, 20, 50, 100, 500}. frequency). For instance, red nodes {𝑣1, · · · , 𝑣5, 𝑣11, · · · , 𝑣15} have the same value −0.02 and yellow nodes {𝑣6, 𝑣10} have the same value 0.21. T…

Discussion (0). Sign in to comment.

Reference graph

Works this paper leans on

66 extracted references · 65 canonical work pages

  1. [1]

    Rosa I Arriaga and Santosh Vempala. 2006. An algorithmic theory of learning: Robust concepts and random projection. Machine Learning 63 (2006), 161–182

  2. [2]

    Imre Bárány and József Solymosi. 2017. Gershgorin disks for multiple eigenvalues of non-negative matrices. A Journey Through Discrete Mathematics: A Tribute to Jiří Matoušek (2017), 123–133

  3. [3]

    Vladimir Batagelj and Ulrik Brandes. 2005. Efficient generation of large random networks. Physical Review E—Statistical, Nonlinear, and Soft Matter Physics 71, 3 (2005), 036113

  4. [4]

    Ayan Kumar Bhowmick, Koushik Meneni, Maximilien Danisch, Jean-Loup Guil- laume, and Bivas Mitra. 2020. Louvainne: Hierarchical louvain method for high quality and scalable network embedding. In Proceedings of the 13th International Conference on Web Search & Data Mining (WSDM) . 43–51

  5. [5]

    Deyu Bo, Xiao Wang, Yang Liu, Yuan Fang, Yawen Li, and Chuan Shi. 2023. A survey on spectral graph neural networks.arXiv preprint arXiv:2302.05631 (2023)

  6. [6]

    Deyu Bo, Xiao Wang, Chuan Shi, and Huawei Shen. 2021. Beyond low-frequency information in graph convolutional networks. In Proceedings of the AAAI Confer- ence on Artificial Intelligence, Vol. 35. 3950–3957

  7. [7]

    Han Chen, Ziwen Zhao, Yuhua Li, Yixiong Zou, Ruixuan Li, and Rui Zhang

  8. [8]

    Yushun Dong, Kaize Ding, Brian Jalaian, Shuiwang Ji, and Jundong Li. 2021. Adagnn: Graph neural networks with adaptive frequency response filter. In Proceedings of the 30th ACM International Conference on Information & Knowledge Management (CIKM). 392–401

Show all 66 references
  1. [9]

    Claire Donnat, Marinka Zitnik, David Hallac, and Jure Leskovec. 2018. Learning structural node embeddings via diffusion wavelets. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining . 1320–1329

  2. [10]

    Rui Duan, Mingjian Guang, Junli Wang, Chungang Yan, Hongda Qi, Wenkang Su, Can Tian, and Haoran Yang. 2024. Unifying Homophily and Heterophily for Spectral Graph Neural Networks via Triple Filter Ensembles. In The 38th Annual Conference on Neural Information Processing Systems

  3. [11]

    Erdős and A. Rényi. 1959. On random graphs I. Publicationes Mathematicae Debrecen 6, 290-297 (1959), 18

  4. [12]

    Santo Fortunato and Mark EJ Newman. 2022. 20 years of network community detection. Nature Physics 18, 8 (2022), 848–850

  5. [13]

    Yu Gao, Meng Qin, Yibin Ding, Li Zeng, Chaorui Zhang, Weixi Zhang, Wei Han, Rongqian Zhao, and Bo Bai. 2023. Raftgp: Random fast graph partitioning. In 2023 IEEE High Performance Extreme Computing Conference (HPEC) . 1–7

  6. [14]

    Aditya Grover and Jure Leskovec. 2016. node2vec: Scalable Feature Learning for Networks. In Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery & Data Mining . 855–864

  7. [15]

    Zhenyu Hou, Yufei He, Yukuo Cen, Xiao Liu, Yuxiao Dong, Evgeny Kharlamov, and Jie Tang. 2023. Graphmae2: A decoding-enhanced masked self-supervised graph learner. In Proceedings of the ACM Web conference 2023 . 737–746

  8. [16]

    Zhenyu Hou, Xiao Liu, Yukuo Cen, Yuxiao Dong, Hongxia Yang, Chunjie Wang, and Jie Tang. 2022. Graphmae: Self-supervised masked graph autoencoders. In Proceedings of the 28th ACM SIGKDD Conference on Knowledge Discovery & Data Mining. 594–604

  9. [17]

    Pengfei Jiao, Xuan Guo, Ting Pan, Wang Zhang, Yulong Pei, and Lin Pan. 2021. A survey on role-oriented network embedding. IEEE Transactions on Big Data 8, 4 (2021), 933–952

  10. [18]

    Jiashun Jin, Zheng Tracy Ke, and Shengming Luo. 2021. Improvements on score, especially for weak signals. Sankhya A (2021), 1–36

  11. [19]

    Yilun Jin, Guojie Song, and Chuan Shi. 2020. Gralsp: Graph neural networks with local structural patterns. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 34. 4361–4368

  12. [20]

    Brian Karrer and Mark EJ Newman. 2011. Stochastic blockmodels and community structure in networks. Physical Review E—Statistical, Nonlinear, and Soft Matter Physics 83, 1 (2011), 016107

  13. [21]

    Thomas N Kipf and Max Welling. 2017. Semi-Supervised Classification with Graph Convolutional Networks. In Proceedings of the 5th International Conference on Learning Representations (ICLR)

  14. [22]

    Andrei Leman and Boris Weisfeiler. 1968. A reduction of a graph to a canonical form and an algebra arising during this reduction. Nauchno-Technicheskaya Informatsiya 2, 9 (1968), 12–16

  15. [23]

    Jiahong Liu, Philippe Fournier-Viger, Min Zhou, Ganghuan He, and Mourad Nouioua. 2022. CSPM: Discovering compressing stars in attributed graphs. Infor- mation Sciences 611 (2022), 126–158

  16. [24]

    Jiahong Liu, Min Zhou, Philippe Fournier-Viger, Menglin Yang, Lujia Pan, and Mourad Nouioua. 2022. Discovering representative attribute-stars via minimum description length. In Proceedings of the 2022 IEEE 38th International Conference on Data Engineering (ICDE) . 68–80

  17. [25]

    Silvio Micali and Zeyuan Allen Zhu. 2016. Reconstructing markov processes from independent and anonymous experiments. Discrete Applied Mathematics 200 (2016), 108–122

  18. [26]

    Mark EJ Newman and Aaron Clauset. 2016. Structure and inference in annotated networks. Nature Communications 7, 1 (2016), 11863

  19. [27]

    Bryan Perozzi, Rami Al-Rfou, and Steven Skiena. 2014. Deepwalk: Online learning of social representations. In Proceedings of the 20th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining . 701–710

  20. [28]

    Meng Qin, Di Jin, Kai Lei, Bogdan Gabrys, and Katarzyna Musial-Gabrys. 2018. Adaptive community detection incorporating topology and content in social networks. Knowledge-Based Systems 161 (2018), 342–356

  21. [29]

    Meng Qin and Kai Lei. 2021. Dual-channel hybrid community detection in attributed networks. Information Sciences 551 (2021), 146–167

  22. [30]

    Meng Qin and Dit-Yan Yeung. 2023. Temporal link prediction: A unified frame- work, taxonomy, and review. Comput. Surveys 56, 4 (2023), 1–40

  23. [31]

    Meng Qin and Dit-Yan Yeung. 2024. IRWE: Inductive Random Walk for Joint Infer- ence of Identity and Position Network Embedding.arXiv preprint arXiv:2401.00651 (2024)

  24. [32]

    Meng Qin, Chaorui Zhang, Bo Bai, Gong Zhang, and Dit-Yan Yeung. 2023. High- quality temporal link prediction for weighted dynamic graphs via inductive embedding aggregation. IEEE Transactions on Knowledge & Data Engineering (TKDE) 35, 9 (2023), 9378–9393

  25. [33]

    Meng Qin, Chaorui Zhang, Bo Bai, Gong Zhang, and Dit-Yan Yeung. 2023. To- wards a Better Tradeoff between quality and efficiency of community detection: An inductive embedding method across graphs. ACM Transactions on Knowledge Discovery from Data (TKDD) 17, 9 (2023), 1–34

  26. [34]

    Meng Qin, Chaorui Zhang, Yu Gao, Yibin Ding, Weipeng Jiang, Weixi Zhang, Wei Han, and Bo Bai. 2024. Towards Faster Graph Partitioning via Pre-training and Inductive Inference. In Proceedings of the 2024 IEEE High Performance Extreme Computing Conference (HPEC). 1–7

  27. [35]

    Meng Qin, Chaorui Zhang, Yu Gao, Weixi Zhang, and Dit-Yan Yeung. 2024. Pre- train and refine: Towards higher efficiency in k-agnostic community detection without quality degradation. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery & Data Mining . 2467–2478

  28. [36]

    Tai Qin and Karl Rohe. 2013. Regularized spectral clustering under the degree- corrected stochastic blockmodel. Proceedings of the Advances in Neural Informa- tion Processing Systems (NIPS) 26 (2013)

  29. [37]

    Jiezhong Qiu, Laxman Dhulipala, Jie Tang, Richard Peng, and Chi Wang. 2021. Lightne: A lightweight graph processing system for network embedding. In Proceedings of the 2021 International Conference on Management of Data (SIGMOD). 2281–2289

  30. [38]

    Jiezhong Qiu, Yuxiao Dong, Hao Ma, Jian Li, Chi Wang, Kuansan Wang, and Jie Tang. 2019. Netsmf: Large-scale network embedding as sparse matrix factoriza- tion. In Proceedings of the 2019 World Wide Web Conference . 1509–1520

  31. [39]

    Jiezhong Qiu, Yuxiao Dong, Hao Ma, Jian Li, Kuansan Wang, and Jie Tang. 2018. Network embedding as matrix factorization: Unifying deepwalk, line, pte, and node2vec. In Proceedings of the 11th ACM International Conference on Web Search & Data Mining (WSDM) . 459–467

  32. [40]

    Leonardo FR Ribeiro, Pedro HP Saverese, and Daniel R Figueiredo. 2017. struc2vec: Learning Node Representations from Structural Identity. InProceedings of the 23rd ACM SIGKDD International Conference on Knowledge Discovery & Data Mining . 385–394

  33. [41]

    Ryan A Rossi, Di Jin, Sungchul Kim, Nesreen K Ahmed, Danai Koutra, and John Boaz Lee. 2020. On proximity and structural role-based embeddings in networks: Misconceptions, techniques, and applications. ACM Transactions on Knowledge Discovery from Data (TKDD) 14, 5 (2020), 1–37

  34. [42]

    Nino Shervashidze, Pascal Schweitzer, Erik Jan Van Leeuwen, Kurt Mehlhorn, and Karsten M Borgwardt. 2011. Weisfeiler-lehman graph kernels. Journal of Machine Learning Research (JMLR) 12, 9 (2011)

  35. [43]

    David I Shuman, Sunil K Narang, Pascal Frossard, Antonio Ortega, and Pierre Vandergheynst. 2013. The emerging field of signal processing on graphs: Ex- tending high-dimensional data analysis to networks and other irregular domains. IEEE Signal Processing Magazine 30, 3 (2013), 83–98

  36. [44]

    Balasubramaniam Srinivasan and Bruno Ribeiro. 2020. On the Equivalence between Positional Node Embeddings and Structural Graph Representations. In Proceedings of the 8th International Conference on Learning Representations (ICLR)

  37. [45]

    Petar Veličković, William Fedus, William L Hamilton, Pietro Liò, Yoshua Bengio, and R Devon Hjelm. 2019. Deep Graph Infomax. InProceedings of the International Conference on Learning Representations (ICLR)

  38. [46]

    Ulrike Von Luxburg. 2007. A tutorial on spectral clustering.Statistics & computing 17 (2007), 395–416

  39. [47]

    Xiyuan Wang and Muhan Zhang. 2022. How powerful are spectral graph neural networks. In Proceedings of the 2022 International Conference on Machine Learning (ICML). 23341–23362

  40. [48]

    Xiao Wang, Meiqi Zhu, Deyu Bo, Peng Cui, Chuan Shi, and Jian Pei. 2020. Am- gcn: Adaptive multi-channel graph convolutional networks. In Proceedings of the 26th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining. 1243–1253. Efficient Identity and Position...

  41. [49]

    Wei Wu, Shiqi Li, Mi Jiang, Chuan Luo, and Fangfang Li. 2024. Time-and Space- Efficiently Sketching Billion-Scale Attributed Networks. IEEE Transactions on Knowledge & Data Engineering (TKDE) (2024)

  42. [50]

    Xixi Wu, Kaiyu Xiong, Yun Xiong, Xiaoxin He, Yao Zhang, Yizhu Jiao, and Jiawei Zhang. 2024. ProCom: A Few-shot Targeted Community Detection Algorithm. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery & Data Mining. 3414–3424

  43. [51]

    Teng Xiao, Huaisheng Zhu, Zhiwei Zhang, Zhimeng Guo, Charu C Aggarwal, Suhang Wang, and Vasant G Honavar. 2024. Efficient Contrastive Learning for Fast and Accurate Inference on Graphs. In Proceedings of the 41st International Conference on Machine Learning (ICML)

  44. [52]

    Yuyang Xie, Yuxiao Dong, Jiezhong Qiu, Wenjian Yu, Xu Feng, and Jie Tang

  45. [53]

    Bingbing Xu, Huawei Shen, Qi Cao, Keting Cen, and Xueqi Cheng. 2019. Graph convolutional networks using heat kernel for semi-supervised learning. In Pro- ceedings of the 28th International Joint Conference on Artificial Intelligence (IJCAI) . 1928–1934

  46. [54]

    IEEE Transactions on Knowledge and Data Engineering (TKDE) 35, 10 (2023), 10666– 10680

    SketchNE: Embedding billion-scale networks accurately in one hour. IEEE Transactions on Knowledge and Data Engineering (TKDE) 35, 10 (2023), 10666– 10680

  47. [55]

    Jaewon Yang and Jure Leskovec. 2012. Defining and evaluating network commu- nities based on ground-truth. In Proceedings of the ACM SIGKDD Workshop on Mining Data Semantics. 1–8

  48. [56]

    Yuchen Yan, Yongyi Hu, Qinghai Zhou, Lihui Liu, Zhichen Zeng, Yuzhong Chen, Menghai Pan, Huiyuan Chen, Mahashweta Das, and Hanghang Tong. 2024. Pacer: Network embedding from positional to structural. In Proceedings of the ACM on Web Conference 2024. 2485–2496

  49. [57]

    Jiaxuan You, Jonathan M Gomes-Selman, Rex Ying, and Jure Leskovec. 2021. Identity-aware graph neural networks. In Proceedings of the AAAI Conference on Artificial Intelligence, Vol. 35. 10737–10745

  50. [58]

    Yang Yang, Jie Tang, Cane Leung, Yizhou Sun, Qicong Chen, Juanzi Li, and Qiang Yang. 2015. Rain: Social role-aware information diffusion. In Proceedings of the AAAI Conference on Artificial Intelligence , Vol. 29

  51. [59]

    Jie Zhang, Yuxiao Dong, Yan Wang, Jie Tang, and Ming Ding. 2019. Prone: Fast and scalable network representation learning. In Proceedings of the 28th International Joint Conference on Artificial Intelligence (IJCAI) , Vol. 19. 4278–4284

  52. [60]

    Jiaxuan You, Rex Ying, and Jure Leskovec. 2019. Position-aware graph neural networks. In Proceedings of International Conference on Machine Learning (ICML) . 7134–7143

  53. [61]

    Ziwei Zhang, Peng Cui, Haoyang Li, Xiao Wang, and Wenwu Zhu. 2018. Billion- scale network embedding with iterative random projection. In Proceedings of the 2018 IEEE International Conference on Data Mining (ICDM) . 787–796

  54. [62]

    Muhan Zhang and Yixin Chen. 2018. Link prediction based on graph neural net- works. In Proceedings of the 32nd International Conference on Neural Information Processing Systems (NIPS). 5171–5181

  55. [63]

    Hao Zhu and Piotr Koniusz. 2021. Simple spectral graph convolution. In Proceed- ings of the the 9th International conference on learning representations

  56. [64]

    Yizhen Zheng, Shirui Pan, Vincent Lee, Yu Zheng, and Philip S Yu. 2022. Rethink- ing and scaling up graph contrastive learning: An extremely efficient approach with group discrimination. Proceedings of Advances in Neural Information Pro- cessing Systems 35 (2022), 10809–10820

  57. [66]

    Jing Zhu, Xingyu Lu, Mark Heimann, and Danai Koutra. 2021. Node Proximity is All You Need: Unified Structural and Positional Node and Graph Embedding. In Proceedings of the 2021 SIAM International Conference on Data Mining (SDM) . 163–171. v2 v1 v3 v4 v5 v6 v11 v12 v10 v15 v14...

  58. [2023]

    In Proceedings of the 32nd International Joint Conference on Artificial Intelligence (IJCAI)

    CSGCL: community-strength-enhanced graph contrastive learning. In Proceedings of the 32nd International Joint Conference on Artificial Intelligence (IJCAI). 2059–2067

Pith tools

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