REVIEW 4 major objections 6 minor 45 references
Federated Graph Learning with Graphless Clients
T0 review · 4 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read FedGLS transfers graph-structure knowledge from clients with edges to graphless clients through a distilled feature encoder, letting feature-only clients learn usable local graphs and approach full-graph accuracy.
desk verdict Fresh problem setting, clean method, decent results—but the claimed structure-transfer channel is not isolated, and the experiments lack significance tests. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is the feature encoder $h(\cdot; \phi)$, a feature-only MLP that is trained to match the GNN's node embeddings through the knowledge-distillation loss $\mathcal{L}_{KD}^{(k)}$ of Eq. (11). Together with the GNN parameters $\theta$, the encoder parameters $\phi$ are aggregated on the server by the FedAvg-style update of Eq. (12), so the globally averaged encoder acts as the transport vehicle for structure knowledge. On each graphless client this averaged encoder supervises a graph learner $g(\cdot; \omega)$ that generates an adjacency matrix $S^{(k)}$ via an attentive encoder followed by a kNN-based adjacency processor; the graph learner is trained by the NT-Xent contrastive loss $\mathcal{L}_{CL}^{(k)}$ of Eq. (9), which pulls together the GNN embeddings $Z^{(k)}$ and encoder embeddings $H^{(k)}$ for the same node and pushes apart embeddings of different nodes.
What would settle it
Remove the knowledge-distillation loss from the feature encoder (or randomize the encoder before aggregation) and measure graphless-client accuracy: if it does not fall toward the feature-only baseline, the structure-transfer mechanism is not what drives FedGLS's gain. A complementary check is to hold out the true edge sets of graphless clients and test whether the adjacency matrices learned by FedGLS preserve the label-predictive edges.
Extended reading notes
Core claim
The central claim is that graph-structure knowledge in a federated system can be moved from clients that have edges to clients that have none, using a feature encoder as a carrier. On each client the GNN produces node embeddings over the local graph, and an MLP feature encoder is distilled to reproduce those embeddings from features alone. The server averages both the GNN parameters and the encoder parameters with FedAvg, so the aggregated encoder becomes a global summary of structure-aware behavior. On a graphless client, a graph learner generates a sparse symmetric adjacency matrix from node features and is trained with a contrastive loss that maximizes agreement between the GNN embeddings computed on that generated graph and the encoder embeddings; this gives the graph learner an external structure signal to imitate. The result is that graphless clients learn usable adjacency matrices without ever seeing an edge, and the joint model's node-classification accuracy approaches that of training with true graph structure.
Load-bearing premise
The framework assumes that averaging the feature-encoder parameters across clients transfers usable graph-structure knowledge, and that a feature encoder trained by knowledge distillation preserves enough of that structure for a graphless client's graph learner to learn from; if the structure signal is lost in distillation or averaging, the contrastive objective has no useful teacher and FedGLS degenerates into feature-only training.
Editorial extensions
If this is right
- Graphless clients can train GNNs without ever observing edges, as long as other clients share structure knowledge through the federated aggregation of encoder and GNN parameters.
- FedGLS outperforms kNN-based structure construction (Fed-GNNk) and feature-only baselines on all five datasets, with accuracy approaching that of Fed-GNN, which uses the true graph structures.
- FedGLS converges faster than the best baseline Fed-GNNk on Cora and Flickr.
- The framework's performance is stable across local epoch choices and graphless-client ratios, degrading gracefully as the fraction of graphless clients grows.
- FedGLS adds only a small computational overhead on clients because the feature encoder is an MLP whose cost is much smaller than the GCN's.
Reading between the lines
- The same distillation-aggregation recipe could apply to other missing-data settings, for example clients that lack node features but have edges, by swapping which modality is distilled.
- The contrastive objective that pulls GNN embeddings toward the encoder also discourages over-smoothing, so the accuracy gain on graphless clients may come partly from more stable GNN training rather than from faithful structure recovery; the paper's fixed-k sparsification suggests the learned structures are approximate.
- A direct testable extension would be to use FedGLS's learned adjacency matrices as a warm start for structure refinement on graphless clients, or to measure how the fidelity of the transferred structure varies with the fraction of graphless clients.
- The paper's fixed-k neighbor sparsification bounds the expressiveness of learned graphs; allowing the sparsity pattern to vary per node or be learned could improve recovery of underlying structure.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces FedGLS, a federated graph learning framework for settings where some clients have complete graph data (node features plus edges) while other 'graphless' clients have only node features. Each client trains a GNN and a feature encoder; on graphless clients, a learnable graph learner generates a local adjacency matrix, and the feature encoder is trained by knowledge distillation from the GNN. Structure knowledge is claimed to be transferred across clients by FedAvg aggregation of both the GNN parameters and the feature-encoder parameters. The graph learner is optimized with a contrastive loss that encourages the GNN embeddings on the generated graph to agree with feature-encoder embeddings. Experiments on Cora, CiteSeer, PubMed, Flickr, and ogbn-arxiv compare FedGLS against five baselines and an oracle that uses true graph structures, with sensitivity studies over local epochs and graphless-client ratios. The paper reports that FedGLS consistently achieves the highest accuracy among the five baselines and converges faster than Fed-GNNk, the best baseline.
Significance. If the structure-transfer mechanism is sound, the paper addresses a novel and practically relevant gap: many federated systems have clients that lack explicit edge information, and the proposed pipeline offers a way for such clients to benefit from structure knowledge held by other clients. The formal problem definition, the clear algorithmic description, and the breadth of experiments across five datasets are strengths, as are the sensitivity studies over local epochs and graphless-client ratios. The manuscript also states that an implementation is available. However, the central claim that graphless clients learn structure from other clients’ knowledge is not isolated experimentally, and the distillation loop in Eqs. (9)–(11) creates a self-referential training signal that could allow the graph learner to succeed without any cross-client structure transfer. Because the paper's contribution is precisely that transfer channel, the current evidence falls short of establishing the mechanism, even if the reported accuracy numbers are reproducible.
major comments (4)
- [Sec. 4.2, Eq. (11); Algorithm 1] The claimed structure-transfer mechanism is not isolated. On every graphless client, phi is updated by the KD loss in Eq. (11), where the teacher is the local GNN whose input adjacency S is produced by the graph learner itself. After the first round, the global phi aggregated in Eq. (12) therefore contains a self-referential component from graphless clients, and the H used as the target in the contrastive loss Eq. (9) is not an independent cross-client teacher. The paper reports no ablation that removes or varies this transfer channel, such as freezing phi on graphless clients, excluding graphless-client phi from aggregation, or using a teacher derived only from structured clients. Without such an ablation, the accuracy gains over Fed-GNNk in Table 1 could be produced by the graph learner fitting local label structure through the CE-trained GNN (Eq. 10), rather than by structure knowledge transferred from other clients. This is load-bearing for the paper's central claim.
- [Sec. 5.1.2, Table 1] The baseline set is too weak to support the claim that federated structure transfer is the source of the gains. Fed-GNNk and Local-GNNk use fixed kNN graphs, which are known to be poorly suited to node classification. There is no baseline that applies a learnable graph-structure-learning method (e.g., an adapted IDGL or SL-style learner) to graphless clients, and no ablation in which the graph learner is trained without any cross-client aggregation. Such a comparison is needed to distinguish the benefit of transferred structure knowledge from the benefit of adaptively learning a task-specific graph from local features and labels.
- [Table 1] No statistical significance tests are reported, despite several small margins relative to the reported standard deviations. For example, on PubMed FedGLS reports 0.8491±0.0070 versus Fed-GNNk's 0.8426±0.0128, and on CiteSeer FedGLS reports 0.8058±0.0171 versus FedProto's 0.7876±0.0184. The claim that FedGLS 'consistently achieves the highest classification accuracy' requires paired significance tests or confidence intervals over the five repetitions, especially because the differences are not uniformly large.
- [Sec. 5.2.2, Fig. 3] The convergence-speed claim is supported only on Cora and Flickr, and the curves in the submitted text are not readable. Please report convergence curves for all five datasets, or justify why the two selected datasets are representative, and state clearly whether the plotted loss is the average local training loss or the global objective. This matters because the claim that the adaptive graph learner accelerates convergence is part of the paper's experimental contribution.
minor comments (6)
- [Eq. (8)] The denominator in Eq. (8) is written ambiguously: the summation upper limit should be explicitly n(k), and the bracket placement after 1[i≠j] should be clarified to show that both exponentials are inside the sum.
- [Sec. 4.2, Eq. (11)] The KL divergence uses f(z_i; theta_c) and f(h_i; theta_c), where theta_c is the shared classifier head, but the paper does not explicitly state that theta_c is updated jointly with the GNN encoder via Eq. (10) and is also part of the aggregated theta in Eq. (12). Please clarify the role and update rule of theta_c.
- [Appendix C] The complexity analysis covers only the GCN and MLP forward/backward costs. It omits the graph learner, the adjacency generation, and the kNN sparsification cost, so the conclusion that the feature encoder adds negligible cost is not a complete comparison of FedGLS against Fed-GNNk.
- [Sec. 5.1.2, Table 1] The Fed-GNN column is listed in Table 1 but is not described as a baseline in the Experimental Setup section. Please state explicitly that it is an oracle or upper-bound method using true graph structures on graphless clients.
- [Algorithm 1] The graph learner is updated only once per round, before the E local epochs for theta and phi, while theta and phi are updated E times. This asymmetry is not discussed, and the sensitivity study only varies E; the effect of the number of graph-learner updates per round is not explored.
- [Sec. 3.2, Problem 1] The notation C1 = {c(k)}_{k=1}^{M} and C2 = {c(k)}_{k=M+1}^{K} is introduced but not used consistently in later sections; for example, Sec. 4.4 refers to 'clients in C1' without restating the range of k. A table or explicit restatement of the two client sets would improve readability.
Circularity Check
No significant circularity: the global feature-encoder aggregation supplies an external cross-client structure signal, and the local distillation loop is an approximate self-consistency training mechanism, not an identity.
full rationale
FedGLS does not reduce its reported gains to its own inputs by construction. On a graphless client, the graph learner is updated by Eq. (9) using embeddings Z(k)=f(X(k),S(k);theta(k)) and H(k)=h(X(k);phi(k)), where phi(k) is initialized from the server-broadcast global phi. In Algorithm 1 the omega update is performed before the local phi update, so within a round the graph learner's target is the global feature encoder, not a copy of the just-updated local GNN output. The global phi from Eq. (12) aggregates parameters from structured clients whose feature encoders were distilled from GNNs operating on real graphs, so external structure knowledge can enter the loop. Across rounds, the averaged phi contains both external and self-referential components, but no equation makes H identically equal to Z: the KL and contrastive losses are approximate training objectives, not definitions. The headline claims are held-out node-classification accuracies in Table 1, compared against five baselines and a real-graph upper bound; no fitted parameter is relabeled as a prediction. The self-citations (Fu et al. 2022, 2023, 2024; Wang et al. 2023, 2024b) appear in related-work and motivation, while the load-bearing distillation precedent (Hinton et al. 2015; Zhang et al. 2022) and graph-generator components (Liu et al. 2022) are external. The Conclusion's admitted limitation that generated structures may not match unknown real structures is a correctness risk, not a circularity. The absence of an ablation isolating the transfer channel is an empirical weakness, but it does not make the central claim equivalent to its inputs by construction.
Assumptions & free parameters
free parameters (5)
- Temperature parameter tau in contrastive loss (Eq. 8) =
0.2
- Graph learner learning rate gamma =
0.001
- Hidden size of GNN and feature encoder =
16
- Sparsification parameter k in the adjacency processor (Eq. 16) =
not reported
- Local epochs E =
5 (varied 3 and 10 in sensitivity)
assumptions (5)
- domain assumption Knowledge distillation from a GNN to an MLP feature encoder preserves sufficient graph-structure information for downstream transfer.
- domain assumption FedAvg aggregation of feature-encoder parameters phi transfers structure knowledge across clients.
- domain assumption Maximizing consistency between Z and H via contrastive loss (Eq. 9) yields useful graph structures rather than trivial collapse.
- domain assumption Louvain community splitting produces realistic federated graph data distributions.
- ad hoc to paper The shared classifier head theta_c used in the KL distillation (Eq. 11) provides a valid teacher signal for the feature encoder.
Cite this review
Pith. "Pith review of Federated Graph Learning with Graphless Clients." pith.science (2026). https://pith.science/paper/5QNTELWU
@misc{pith2026241108374,
author = {Pith},
title = {Pith review of: Federated Graph Learning with Graphless Clients},
year = {2026},
howpublished = {\url{https://pith.science/paper/5QNTELWU}},
note = {Machine review of arXiv:2411.08374}
}
read the original abstract
Federated Graph Learning (FGL) is tasked with training machine learning models, such as Graph Neural Networks (GNNs), for multiple clients, each with its own graph data. Existing methods usually assume that each client has both node features and graph structure of its graph data. In real-world scenarios, however, there exist federated systems where only a part of the clients have such data while other clients (i.e. graphless clients) may only have node features. This naturally leads to a novel problem in FGL: how to jointly train a model over distributed graph data with graphless clients? In this paper, we propose a novel framework FedGLS to tackle the problem in FGL with graphless clients. In FedGLS, we devise a local graph learner on each graphless client which learns the local graph structure with the structure knowledge transferred from other clients. To enable structure knowledge transfer, we design a GNN model and a feature encoder on each client. During local training, the feature encoder retains the local graph structure knowledge together with the GNN model via knowledge distillation, and the structure knowledge is transferred among clients in global update. Our extensive experiments demonstrate the superiority of the proposed FedGLS over five baselines.
Figures
Reference graph
Works this paper leans on
-
[1]
Fast unfolding of communities in large networks
Vincent D Blondel, Jean-Loup Guillaume, Renaud Lambiotte, and Etienne Lefebvre. Fast unfolding of communities in large networks. Journal of statistical mechanics: theory and experiment, 2008
work page 2008
-
[2]
A simple framework for contrastive learning of visual representations
Ting Chen, Simon Kornblith, Mohammad Norouzi, and Geoffrey Hinton. A simple framework for contrastive learning of visual representations. In International Conference on Machine Learning, 2020 a
2020
-
[3]
Iterative deep graph learning for graph neural networks: Better and robust node embeddings
Yu Chen, Lingfei Wu, and Mohammed Zaki. Iterative deep graph learning for graph neural networks: Better and robust node embeddings. In Advances in neural information processing systems, 2020 b
work page 2020
-
[4]
Learning discrete structures for graph neural networks
Luca Franceschi, Mathias Niepert, Massimiliano Pontil, and Xiao He. Learning discrete structures for graph neural networks. In ICML, 2019
work page 2019
-
[5]
Federated graph machine learning: A survey of concepts, techniques, and applications
Xingbo Fu, Binchi Zhang, Yushun Dong, Chen Chen, and Jundong Li. Federated graph machine learning: A survey of concepts, techniques, and applications. ACM SIGKDD Explorations Newsletter, 2022
work page 2022
-
[6]
Spatial-temporal networks for antibiogram pattern prediction
Xingbo Fu, Chen Chen, Yushun Dong, Anil Vullikanti, Eili Klein, Gregory Madden, and Jundong Li. Spatial-temporal networks for antibiogram pattern prediction. In 2023 IEEE 11th International Conference on Healthcare Informatics, 2023
work page 2023
-
[7]
Federated graph learning with structure proxy alignment
Xingbo Fu, Zihan Chen, Binchi Zhang, Chen Chen, and Jundong Li. Federated graph learning with structure proxy alignment. In Proceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, 2024
work page 2024
-
[8]
Generating classification weights with gnn denoising autoencoders for few-shot learning
Spyros Gidaris and Nikos Komodakis. Generating classification weights with gnn denoising autoencoders for few-shot learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2019
work page 2019
Show all 45 references
-
[9]
A variational edge partition model for supervised graph representation learning
Yilin He, Chaojie Wang, Hao Zhang, Bo Chen, and Mingyuan Zhou. A variational edge partition model for supervised graph representation learning. Advances in Neural Information Processing Systems, 2022
2022
-
[10]
Distilling the knowledge in a neural network
Geoffrey Hinton, Oriol Vinyals, Jeff Dean, et al. Distilling the knowledge in a neural network. arXiv preprint arXiv:1503.02531, 2015
2015 arXiv
-
[11]
Open graph benchmark: Datasets for machine learning on graphs
Weihua Hu, Matthias Fey, Marinka Zitnik, Yuxiao Dong, Hongyu Ren, Bowen Liu, Michele Catasta, and Jure Leskovec. Open graph benchmark: Datasets for machine learning on graphs. 2020
2020
-
[12]
Federated graph semantic and structural learning
Wenke Huang, Guancheng Wan, Mang Ye, and Bo Du. Federated graph semantic and structural learning. In Proceedings of the 32nd International Joint Conference on Artificial Intelligence, 2023
2023
-
[13]
Graph structure learning for robust graph neural networks
Wei Jin, Yao Ma, Xiaorui Liu, Xianfeng Tang, Suhang Wang, and Jiliang Tang. Graph structure learning for robust graph neural networks. In Proceedings of the 26th ACM SIGKDD Conference on Knowledge Discovery & Data Mining, 2020
2020
-
[14]
Scaffold: Stochastic controlled averaging for federated learning
Sai Praneeth Karimireddy, Satyen Kale, Mehryar Mohri, Sashank Reddi, Sebastian Stich, and Ananda Theertha Suresh. Scaffold: Stochastic controlled averaging for federated learning. In International Conference on Machine Learning, 2020
2020
-
[15]
Adam: A method for stochastic optimization
Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International Conference on Learning Representations, 2015
2015
-
[16]
Model-contrastive federated learning
Qinbin Li, Bingsheng He, and Dawn Song. Model-contrastive federated learning. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 2021
2021
-
[17]
Federated learning: Challenges, methods, and future directions
Tian Li, Anit Kumar Sahu, Ameet Talwalkar, and Virginia Smith. Federated learning: Challenges, methods, and future directions. IEEE signal processing magazine, 2020 a
2020
-
[18]
Federated optimization in heterogeneous networks
Tian Li, Anit Kumar Sahu, Manzil Zaheer, Maziar Sanjabi, Ameet Talwalkar, and Virginia Smith. Federated optimization in heterogeneous networks. In Proceedings of Machine learning and systems, 2020 b
2020
-
[19]
Towards unsupervised deep graph structure learning
Yixin Liu, Yu Zheng, Daokun Zhang, Hongxu Chen, Hao Peng, and Shirui Pan. Towards unsupervised deep graph structure learning. In Proceedings of the ACM Web Conference, 2022
2022
-
[20]
Communication-efficient learning of deep networks from decentralized data
Brendan McMahan, Eider Moore, Daniel Ramage, Seth Hampson, and Blaise Aguera y Arcas. Communication-efficient learning of deep networks from decentralized data. In Artificial intelligence and statistics, 2017
2017
-
[21]
Fedproc: Prototypical contrastive federated learning on non-iid data
Xutong Mu, Yulong Shen, Ke Cheng, Xueli Geng, Jiaxuan Fu, Tao Zhang, and Zhiwei Zhang. Fedproc: Prototypical contrastive federated learning on non-iid data. Future Generation Computer Systems, 2023
2023
-
[22]
Differentially private federated knowledge graphs embedding
Hao Peng, Haoran Li, Yangqiu Song, Vincent Zheng, and Jianxin Li. Differentially private federated knowledge graphs embedding. In Proceedings of the 30th ACM International Conference on Information & Knowledge Management, 2021
2021
-
[23]
Collective classification in network data
Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad. Collective classification in network data. AI magazine, 2008
2008
-
[24]
Personalized federated learning using hypernetworks
Aviv Shamsian, Aviv Navon, Ethan Fetaya, and Gal Chechik. Personalized federated learning using hypernetworks. In International Conference on Machine Learning, 2021
2021
-
[25]
Bring your own view: Graph neural networks for link prediction with personalized subgraph selection
Qiaoyu Tan, Xin Zhang, Ninghao Liu, Daochen Zha, Li Li, Rui Chen, Soo-Hyun Choi, and Xia Hu. Bring your own view: Graph neural networks for link prediction with personalized subgraph selection. In Proceedings of the Sixteenth ACM International Conference on Web Search and Data...
2023
-
[26]
Fedproto: Federated prototype learning across heterogeneous clients
Yue Tan, Guodong Long, Lu Liu, Tianyi Zhou, Qinghua Lu, Jing Jiang, and Chengqi Zhang. Fedproto: Federated prototype learning across heterogeneous clients. In Proceedings of the AAAI conference on artificial intelligence, 2022
2022
-
[27]
Federated learning on non-iid graphs via structural knowledge sharing
Yue Tan, Yixin Liu, Guodong Long, Jing Jiang, Qinghua Lu, and Chengqi Zhang. Federated learning on non-iid graphs via structural knowledge sharing. In Proceedings of the AAAI conference on artificial intelligence, 2023 b
2023
-
[28]
The eu general data protection regulation (gdpr)
Paul Voigt and Axel Von dem Bussche. The eu general data protection regulation (gdpr). A Practical Guide, 1st Ed., Cham: Springer International Publishing, 2017
2017
-
[29]
Rethinking personalized federated learning with clustering-based dynamic graph propagation
Jiaqi Wang, Yuzhong Chen, Yuhang Wu, Mahashweta Das, Hao Yang, and Fenglong Ma. Rethinking personalized federated learning with clustering-based dynamic graph propagation. In Pacific-Asia Conference on Knowledge Discovery and Data Mining, 2024 a
2024
-
[30]
Federated few-shot learning
Song Wang, Xingbo Fu, Kaize Ding, Chen Chen, Huiyuan Chen, and Jundong Li. Federated few-shot learning. In Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, 2023
2023
-
[31]
Safety in graph machine learning: Threats and safeguards
Song Wang, Yushun Dong, Binchi Zhang, Zihan Chen, Xingbo Fu, Yinhan He, Cong Shen, Chuxu Zhang, Nitesh V Chawla, and Jundong Li. Safety in graph machine learning: Threats and safeguards. arXiv preprint arXiv:2405.11034, 2024 b
2024 arXiv
-
[32]
Heterogeneity-aware memory efficient federated learning via progressive layer freezing
Yebo Wu, Li Li, Chunlin Tian, Tao Chang, Chi Lin, Cong Wang, and Cheng-Zhong Xu. Heterogeneity-aware memory efficient federated learning via progressive layer freezing. In 2024 IEEE/ACM 32nd International Symposium on Quality of Service (IWQoS), 2024 a
2024
-
[33]
Breaking the memory wall for heterogeneous federated learning with progressive training
Yebo Wu, Li Li, Chunlin Tian, and Chengzhong Xu. Breaking the memory wall for heterogeneous federated learning with progressive training. arXiv preprint arXiv:2404.13349, 2024 b
2024 arXiv
-
[34]
A comprehensive survey on graph neural networks
Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and S Yu Philip. A comprehensive survey on graph neural networks. IEEE Transactions on Neural Networks and Learning Systems, 2020
2020
-
[35]
Federated graph classification over non-iid graphs
Han Xie, Jing Ma, Li Xiong, and Carl Yang. Federated graph classification over non-iid graphs. In Advances in neural information processing systems, 2021
2021
-
[36]
Federated node classification over graphs with latent link-type heterogeneity
Han Xie, Li Xiong, and Carl Yang. Federated node classification over graphs with latent link-type heterogeneity. In Proceedings of the ACM Web Conference, 2023
2023
-
[37]
Federated machine learning: Concept and applications
Qiang Yang, Yang Liu, Tianjian Chen, and Yongxin Tong. Federated machine learning: Concept and applications. ACM Transactions on Intelligent Systems and Technology (TIST), 2019
2019
-
[38]
Graphsaint: Graph sampling based inductive learning method
Hanqing Zeng, Hongkuan Zhou, Ajitesh Srivastava, Rajgopal Kannan, and Viktor Prasanna. Graphsaint: Graph sampling based inductive learning method. In International Conference on Learning Representations, 2020
2020
-
[39]
Ppsgcn: A privacy-preserving subgraph sampling based distributed gcn training method
Binchi Zhang, Minnan Luo, Shangbin Feng, Ziqi Liu, Jun Zhou, and Qinghua Zheng. Ppsgcn: A privacy-preserving subgraph sampling based distributed gcn training method. arXiv preprint arXiv:2110.12906, 2021 a
2021 arXiv
-
[40]
Subgraph federated learning with missing neighbor generation
Ke Zhang, Carl Yang, Xiaoxiao Li, Lichao Sun, and Siu Ming Yiu. Subgraph federated learning with missing neighbor generation. In Advances in neural information processing systems, 2021 b
2021
-
[41]
Link prediction based on graph neural networks
Muhan Zhang and Yixin Chen. Link prediction based on graph neural networks. Advances in neural information processing systems, 2018
2018
-
[42]
Graph-less neural networks: Teaching old mlps new tricks via distillation
Shichang Zhang, Yozen Liu, Yizhou Sun, and Neil Shah. Graph-less neural networks: Teaching old mlps new tricks via distillation. In International Conference on Learning Representations, 2022
2022
-
[43]
Vertically federated graph neural network for privacy-preserving node classification
Jun Zhou, Chaochao Chen, Longfei Zheng, Huiwen Wu, Jia Wu, Xiaolin Zheng, Bingzhe Wu, Ziqi Liu, and Li Wang. Vertically federated graph neural network for privacy-preserving node classification. In Proceedings of the 31st International Joint Conference on Artificial Intelligence, 2022
2022
-
[44]
Deep graph structure learning for robust representations: A survey
Yanqiao Zhu, Weizhi Xu, Jinghao Zhang, Qiang Liu, Shu Wu, and Liang Wang. Deep graph structure learning for robust representations: A survey. arXiv preprint arXiv:2103.03036, 2021
2021 arXiv
-
[45]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.