-
Notifications
You must be signed in to change notification settings - Fork 187
/
data.yaml
14871 lines (14871 loc) · 596 KB
/
data.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
section:
- title: fl-on-graph-data-and-graph-neural-network
- title: private-graph-neural-networks
- title: fl-on-tabular-data
- title: fl-in-top-tier-journal
- title: fl-in-top-ai-conference-and-journal
- title: fl-in-top-ml-conference-and-journal
- title: fl-in-top-dm-conference-and-journal
- title: fl-in-top-secure-conference-and-journal
- title: fl-in-top-cv-conference-and-journal
- title: fl-in-top-nlp-conference-and-journal
- title: fl-in-top-ir-conference-and-journal
- title: fl-in-top-db-conference-and-journal
- title: fl-in-top-network-conference-and-journal
- title: fl-in-top-system-conference-and-journal
- title: federated-learning-framework
fl-on-graph-data-and-graph-neural-network:
header:
title: 'Title '
affiliation: ' Affiliation '
venue: ' Venue '
year: ' Year '
materials: ' Materials'
length:
title: 60
affiliation: 45
venue: 53
year: 4
materials: 60
body:
- title: 'FedGCN: Convergence and Communication Tradeoffs in Federated Training
of Graph Convolutional Networks'
affiliation: CMU
venue: 'NeurIPS :mortar_board:'
year: '2023'
materials:
PDF: https://arxiv.org/abs/2201.12433
CODE: https://github.com/yh-yao/FedGCN
- title: 'Wyze Rule: Federated Rule Dataset for Rule Recommendation Benchmarking'
affiliation: CMU
venue: 'NeurIPS Dataset Track :mortar_board:'
year: '2023'
materials:
PDF: https://openreview.net/forum?id=qynH28Y4xE
DATASET: https://huggingface.co/datasets/wyzelabs/RuleRecommendation
CODE: https://github.com/yh-yao/FedRule
- title: 'Federated Visualization: A Privacy-Preserving Strategy for Aggregated
Visual Query.'
affiliation: ZJU
venue: 'IEEE Trans. Vis. Comput. Graph. :mortar_board:'
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/10083324
PDF: https://arxiv.org/abs/2007.15227
- title: Personalized Subgraph Federated Learning
affiliation: KAIST
venue: 'ICML :mortar_board:'
year: '2023'
materials:
PDF: https://arxiv.org/abs/2206.10206
- title: Semi-decentralized Federated Ego Graph Learning for Recommendation
affiliation: SUST
venue: 'WWW:mortar_board:'
year: '2023'
materials:
PUB: https://dl.acm.org/doi/10.1145/3543507.3583337
PDF: https://arxiv.org/abs/2302.10900
- title: Federated Graph Neural Network for Fast Anomaly Detection in Controller
Area Networks
affiliation: ECUST
venue: 'IEEE Trans. Inf. Forensics Secur. :mortar_board:'
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/10026810
- title: Federated Learning Over Coupled Graphs
affiliation: XJTU
venue: 'IEEE Trans. Parallel Distributed Syst. :mortar_board:'
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/10029878
PDF: https://arxiv.org/abs/2301.11099
- title: 'HetVis: A Visual Analysis Approach for Identifying Data Heterogeneity
in Horizontal Federated Learning'
affiliation: Nankai University
venue: 'IEEE Trans. Vis. Comput. Graph. :mortar_board:'
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9912364
PDF: https://arxiv.org/abs/2208.07491
- title: Federated Learning on Non-IID Graphs via Structural Knowledge Sharing
affiliation: UTS
venue: 'AAAI :mortar_board:'
year: '2023'
materials:
PDF: https://arxiv.org/abs/2211.13009
CODE: https://github.com/yuetan031/fedstar
- title: 'FedGS: Federated Graph-based Sampling with Arbitrary Client Availability'
affiliation: XMU
venue: 'AAAI :mortar_board:'
year: '2023'
materials:
PDF: https://arxiv.org/abs/2211.13975
CODE: https://github.com/wwzzz/fedgs
- title: An Information Theoretic Perspective for Heterogeneous Subgraph Federated
Learning.
affiliation: PKU
venue: DASFAA
year: '2023'
materials:
PUB: https://link.springer.com/chapter/10.1007/978-3-031-30637-2_50
- title: 'GraphCS: Graph-based client selection for heterogeneity in federated learning'
affiliation: NUDT
venue: J. Parallel Distributed Comput.
year: '2023'
materials:
PUB: https://www.sciencedirect.com/science/article/abs/pii/S0743731523000394?via%3Dihub
- title: 'Towards On-Device Federated Learning: A Direct Acyclic Graph-based Blockchain
Approach'
affiliation: BUPT
venue: IEEE Trans. Neural Networks Learn. Syst.
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9524833
PDF: https://arxiv.org/abs/2104.13092
- title: Short-Term Traffic Flow Prediction Based on Graph Convolutional Networks
and Federated Learning
affiliation: ZUEL
venue: IEEE Trans. Intell. Transp. Syst.
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9794333
- title: Hyper-Graph Attention Based Federated Learning Methods for Use in Mental
Health Detection.
affiliation: HVL
venue: IEEE J. Biomed. Health Informatics
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9767700
- title: Federated Learning-Based Cross-Enterprise Recommendation With Graph Neural
affiliation: ''
venue: IEEE Trans. Ind. Informatics
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9873989
- title: 'Graph-Fraudster: Adversarial Attacks on Graph Neural Network Based Vertical
Federated Learning'
affiliation: ZJUT
venue: IEEE Trans. Comput. Soc. Syst.
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9745270
PDF: https://arxiv.org/abs/2110.06468
CODE: https://github.com/hgh0545/graph-fraudster
- title: 'ESA-FedGNN: Efficient secure aggregation for federated graph neural networks.'
affiliation: ''
venue: Peer Peer Netw. Appl.
year: '2023'
materials:
PUB: https://link.springer.com/article/10.1007/s12083-023-01472-2
- title: 'FedCKE: Cross-Domain Knowledge Graph Embedding in Federated Learning'
affiliation: SWJTU
venue: IEEE Trans. Big Data
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9887815
- title: 'Asynchronous federated learning with directed acyclic graph-based blockchain
in edge computing: Overview, design, and challenges.'
affiliation: ''
venue: Expert Syst. Appl.
year: '2023'
materials:
PUB: https://www.sciencedirect.com/science/article/abs/pii/S0957417423003974?via%3Dihub
- title: 'FedGR: Federated Graph Neural Network for Recommendation System'
affiliation: CUPT
venue: Axioms
year: '2023'
materials:
PUB: https://www.mdpi.com/2075-1680/12/2/170
- title: 'S-Glint: Secure Federated Graph Learning With Traffic Throttling and Flow
Scheduling.'
affiliation: ''
venue: IEEE Trans. Green Commun. Netw.
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9810521
- title: 'FedAGCN: A traffic flow prediction framework based on federated learning
and Asynchronous Graph Convolutional Network'
affiliation: ''
venue: Appl. Soft Comput.
year: '2023'
materials:
PUB: https://www.sciencedirect.com/science/article/abs/pii/S156849462300193X?via%3Dihub
- title: 'GDFed: Dynamic Federated Learning for Heterogenous Device Using Graph
Neural Network'
affiliation: KHU
venue: ICOIN
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/10048926
CODE: https://github.com/IntelligentNetworkingLAB/Graph-Neural-Network-based-Federated-Learning-for-Heterogenous-Device-Network
- title: Coordinated Scheduling and Decentralized Federated Learning Using Conflict
Clustering Graphs in Fog-Assisted IoD Networks
affiliation: UBC
venue: IEEE Trans. Veh. Technol.
year: '2023'
materials:
PUB: https://ieeexplore.ieee.org/document/9932020
- title: 'FedRule: Federated Rule Recommendation System with Graph Neural Networks'
affiliation: CMU
venue: IoTDI
year: '2023'
materials:
PUB: https://dl.acm.org/doi/10.1145/3576842.3582328
PDF: https://arxiv.org/abs/2211.06812
CODE: https://github.com/yh-yao/FedRule
- title: 'FedWalk: Communication Efficient Federated Unsupervised Node Embedding
with Differential Privacy'
affiliation: SJTU
venue: 'KDD :mortar_board:'
year: '2022'
materials:
PUB: https://dl.acm.org/doi/10.1145/3534678.3539308
PDF: https://arxiv.org/abs/2205.15896
- title: 'FederatedScope-GNN: Towards a Unified, Comprehensive and Efficient Platform
for Federated Graph Learning :fire:'
affiliation: Alibaba
venue: 'KDD (Best Paper Award) :mortar_board:'
year: '2022'
materials:
PDF: https://arxiv.org/abs/2204.05562
CODE: https://github.com/alibaba/FederatedScope
PUB: https://dl.acm.org/doi/10.1145/3534678.3539112
- title: Deep Neural Network Fusion via Graph Matching with Applications to Model
Ensemble and Federated Learning
affiliation: SJTU
venue: 'ICML :mortar_board:'
year: '2022'
materials:
PUB: https://proceedings.mlr.press/v162/liu22k/liu22k.pdf
CODE: https://github.com/Thinklab-SJTU/GAMF
- title: Meta-Learning Based Knowledge Extrapolation for Knowledge Graphs in the
Federated Setting **`kg.`**
affiliation: ZJU
venue: 'IJCAI :mortar_board:'
year: '2022'
materials:
PUB: https://www.ijcai.org/proceedings/2022/273
PDF: https://doi.org/10.48550/arXiv.2205.04692
CODE: https://github.com/zjukg/maker
- title: Personalized Federated Learning With a Graph
affiliation: UTS
venue: 'IJCAI :mortar_board:'
year: '2022'
materials:
PUB: https://www.ijcai.org/proceedings/2022/357
PDF: https://arxiv.org/abs/2203.00829
CODE: https://github.com/dawenzi098/SFL-Structural-Federated-Learning
- title: Vertically Federated Graph Neural Network for Privacy-Preserving Node Classification
affiliation: ZJU
venue: 'IJCAI :mortar_board:'
year: '2022'
materials:
PUB: https://www.ijcai.org/proceedings/2022/272
PDF: https://arxiv.org/abs/2005.11903
- title: 'SpreadGNN: Decentralized Multi-Task Federated Learning for Graph Neural
Networks on Molecular Data'
affiliation: USC
venue: 'AAAI:mortar_board:'
year: '2022'
materials:
PUB: https://ojs.aaai.org/index.php/AAAI/article/view/20643
PDF: https://arxiv.org/abs/2106.02743
CODE: https://github.com/FedML-AI/SpreadGNN
解读: https://zhuanlan.zhihu.com/p/429720860
- title: 'FedGraph: Federated Graph Learning with Intelligent Sampling'
affiliation: UoA
venue: 'TPDS :mortar_board:'
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/abstract/document/9606516/
CODE: https://github.com/cfh19980612/FedGraph
解读: https://zhuanlan.zhihu.com/p/442233479
- title: 'Federated Graph Machine Learning: A Survey of Concepts, Techniques, and
Applications **`surv.`**'
affiliation: University of Virginia
venue: SIGKDD Explor.
year: '2022'
materials:
PUB: https://dl.acm.org/doi/10.1145/3575637.3575644
PDF: https://arxiv.org/abs/2207.11812
- title: 'Semantic Vectorization: Text- and Graph-Based Models.'
affiliation: IBM Research
venue: Federated Learning
year: '2022'
materials:
PUB: https://link.springer.com/chapter/10.1007/978-3-030-96896-0_3
- title: 'GraphFL: A Federated Learning Framework for Semi-Supervised Node Classification
on Graphs'
affiliation: IIT
venue: ICDM
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/10027604
PDF: https://arxiv.org/abs/2012.04187
解读: https://zhuanlan.zhihu.com/p/431479904
- title: 'More is Better (Mostly): On the Backdoor Attacks in Federated Graph Neural
Networks'
affiliation: TU Delft
venue: ACSAC
year: '2022'
materials:
PUB: https://dl.acm.org/doi/10.1145/3564625.3567999
PDF: https://arxiv.org/abs/2202.03195
- title: 'FedNI: Federated Graph Learning with Network Inpainting for Population-Based
Disease Prediction'
affiliation: UESTC
venue: TMI
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9815303
PDF: https://arxiv.org/abs/2112.10166
- title: 'SemiGraphFL: Semi-supervised Graph Federated Learning for Graph Classification.'
affiliation: PKU
venue: PPSN
year: '2022'
materials:
PUB: https://link.springer.com/chapter/10.1007/978-3-031-14714-2_33
- title: Federated Spatio-Temporal Traffic Flow Prediction Based on Graph Convolutional
Network
affiliation: TJU
venue: WCSP
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/10039323
- title: A federated graph neural network framework for privacy-preserving personalization
affiliation: THU
venue: Nature Communications
year: '2022'
materials:
PUB: https://www.nature.com/articles/s41467-022-30714-9
CODE: https://github.com/wuch15/FedPerGNN
解读: https://zhuanlan.zhihu.com/p/487383715
- title: Malicious Transaction Identification in Digital Currency via Federated
Graph Deep Learning
affiliation: BIT
venue: INFOCOM Workshops
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9797992/
- title: Efficient Federated Learning on Knowledge Graphs via Privacy-preserving
Relation Embedding Aggregation **`kg.`**
affiliation: Lehigh University
venue: EMNLP
year: '2022'
materials:
PUB: https://aclanthology.org/2022.findings-emnlp.43/
PDF: https://arxiv.org/abs/2203.09553
CODE: https://github.com/taokz/FedR
- title: Power Allocation for Wireless Federated Learning using Graph Neural Networks
affiliation: Rice University
venue: ICASSP
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9747764
PDF: https://arxiv.org/abs/2111.07480
CODE: https://github.com/bl166/wirelessfl-pdgnet
- title: 'Privacy-Preserving Federated Multi-Task Linear Regression: A One-Shot
Linear Mixing Approach Inspired By Graph Regularization'
affiliation: UC
venue: ICASSP
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9746007
PDF: https://www.math.ucla.edu/~harlin/papers/mtl.pdf
CODE: https://github.com/HarlinLee/multitask-fusion
- title: Graph-regularized federated learning with shareable side information
affiliation: NWPU
venue: Knowl. Based Syst.
year: '2022'
materials:
PUB: https://www.sciencedirect.com/science/article/pii/S095070512201053X
- title: Federated knowledge graph completion via embedding-contrastive learning
**`kg.`**
affiliation: ZJU
venue: Knowl. Based Syst.
year: '2022'
materials:
PUB: https://www.sciencedirect.com/science/article/abs/pii/S0950705122007316?via%3Dihub
- title: Federated Graph Learning with Periodic Neighbour Sampling
affiliation: HKU
venue: IWQoS
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9812908
- title: 'FedGSL: Federated Graph Structure Learning for Local Subgraph Augmentation.'
affiliation: ''
venue: Big Data
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/10020771/
- title: Domain-Aware Federated Social Bot Detection with Multi-Relational Graph
Neural Networks.
affiliation: UCAS; CAS
venue: IJCNN
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9892366
- title: A Federated Multi-Server Knowledge Graph Embedding Framework For Link Prediction.
affiliation: ''
venue: ICTAI
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/10097981
- title: A Privacy-Preserving Subgraph-Level Federated Graph Neural Network via
Differential Privacy
affiliation: Ping An Technology
venue: KSEM
year: '2022'
materials:
PUB: https://link.springer.com/chapter/10.1007/978-3-031-10989-8_14
PDF: https://arxiv.org/abs/2206.03492
- title: Clustered Graph Federated Personalized Learning.
affiliation: NTNU
venue: IEEECONF
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/10051979
- title: Investigating the Predictive Reproducibility of Federated Graph Neural
Networks using Medical Datasets.
affiliation: ''
venue: MICCAI Workshop
year: '2022'
materials:
PDF: https://arxiv.org/abs/2209.06032
CODE: https://github.com/basiralab/reproducibleFedGNN
- title: Peer-to-Peer Variational Federated Learning Over Arbitrary Graphs
affiliation: UCSD
venue: Int. J. Bio Inspired Comput.
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9825726/
- title: Federated Multi-task Graph Learning
affiliation: ZJU
venue: ACM Trans. Intell. Syst. Technol.
year: '2022'
materials:
PUB: https://dl.acm.org/doi/10.1145/3527622
- title: Graph-Based Traffic Forecasting via Communication-Efficient Federated Learning
affiliation: SUSTech
venue: WCNC
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9771883
- title: Federated meta-learning for spatial-temporal prediction
affiliation: NEU
venue: Neural Comput. Appl.
year: '2022'
materials:
PUB: https://link.springer.com/article/10.1007/s00521-021-06861-3
CODE: https://github.com/lwz001/FML-ST
- title: 'BiG-Fed: Bilevel Optimization Enhanced Graph-Aided Federated Learning'
affiliation: NTU
venue: IEEE Transactions on Big Data
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/abstract/document/9832778
PDF: https://fl-icml.github.io/2021/papers/FL-ICML21_paper_74.pdf
- title: Leveraging Spanning Tree to Detect Colluding Attackers in Federated Learning
affiliation: Missouri S&T
venue: INFCOM Workshops
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9798077
- title: Federated learning of molecular properties with graph neural networks in
a heterogeneous setting
affiliation: University of Rochester
venue: Patterns
year: '2022'
materials:
PUB: https://linkinghub.elsevier.com/retrieve/pii/S2666389922001180
PDF: https://arxiv.org/abs/2109.07258
CODE: https://doi.org/10.5281/zenodo.6485682
- title: Graph Federated Learning for CIoT Devices in Smart Home Applications
affiliation: University of Toronto
venue: IEEE Internet Things J.
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9983539
PDF: https://arxiv.org/abs/2212.14395
CODE: https://github.com/FL-HAR/Graph-Federated-Learning-for-CIoT-Devices.git
- title: Multi-Level Federated Graph Learning and Self-Attention Based Personalized
Wi-Fi Indoor Fingerprint Localization
affiliation: SYSU
venue: IEEE Commun. Lett.
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9734052
- title: Graph-Assisted Communication-Efficient Ensemble Federated Learning
affiliation: UC
venue: EUSIPCO
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9909826
PDF: https://arxiv.org/abs/2202.13447
- title: Decentralized Graph Federated Multitask Learning for Streaming Data
affiliation: NTNU
venue: CISS
year: '2022'
materials:
PUB: https://doi.org/10.1109/CISS53076.2022.9751160
- title: Neural graph collaborative filtering for privacy preservation based on
federated transfer learning
affiliation: ''
venue: Electron. Libr.
year: '2022'
materials:
PUB: https://www.emerald.com/insight/content/doi/10.1108/EL-06-2022-0141/full/html
- title: Dynamic Neural Graphs Based Federated Reptile for Semi-Supervised Multi-Tasking
in Healthcare Applications
affiliation: Oxford
venue: JBHI
year: '2022'
materials:
PUB: https://ieeexplore.ieee.org/document/9648036
- title: 'FedGCN: Federated Learning-Based Graph Convolutional Networks for Non-Euclidean
Spatial Data'
affiliation: NUIST
venue: Mathematics
year: '2022'
materials:
PUB: https://www.mdpi.com/2227-7390/10/6/1000
- title: Federated Dynamic Graph Neural Networks with Secure Aggregation for Video-based
Distributed Surveillance
affiliation: ND
venue: ACM Trans. Intell. Syst. Technol.
year: '2022'
materials:
PUB: https://dl.acm.org/doi/10.1145/3501808
PDF: https://arxiv.org/abs/2009.07351
解读: https://zhuanlan.zhihu.com/p/441686576
- title: 'Device Sampling for Heterogeneous Federated Learning: Theory, Algorithms,
and Implementation.'
affiliation: Purdue
venue: 'INFOCOM :mortar_board:'
year: '2021'
materials:
PUB: https://ieeexplore.ieee.org/document/9488906
PDF: https://arxiv.org/abs/2101.00787
- title: Federated Graph Classification over Non-IID Graphs
affiliation: Emory
venue: 'NeurIPS :mortar_board:'
year: '2021'
materials:
PUB: https://papers.nips.cc/paper/2021/hash/9c6947bd95ae487c81d4e19d3ed8cd6f-Abstract.html
PDF: https://arxiv.org/abs/2106.13423
CODE: https://github.com/Oxfordblue7/GCFL
解读: https://zhuanlan.zhihu.com/p/430623053
- title: Subgraph Federated Learning with Missing Neighbor Generation
affiliation: Emory; UBC; Lehigh University
venue: 'NeurIPS :mortar_board:'
year: '2021'
materials:
PUB: https://papers.neurips.cc/paper/2021/hash/34adeb8e3242824038aa65460a47c29e-Abstract.html
PDF: https://arxiv.org/abs/2106.13430
- title: Cross-Node Federated Graph Neural Network for Spatio-Temporal Data Modeling
affiliation: USC
venue: 'KDD :mortar_board:'
year: '2021'
materials:
PUB: https://dl.acm.org/doi/10.1145/3447548.3467371
PDF: https://arxiv.org/abs/2106.05223
CODE: https://github.com/mengcz13/KDD2021_CNFGNN
解读: https://zhuanlan.zhihu.com/p/434839878
- title: Differentially Private Federated Knowledge Graphs Embedding **`kg.`**
affiliation: BUAA
venue: CIKM
year: '2021'
materials:
PUB: https://dl.acm.org/doi/10.1145/3459637.3482252
PDF: https://arxiv.org/abs/2105.07615
CODE: https://github.com/HKUST-KnowComp/FKGE
解读: https://zhuanlan.zhihu.com/p/437895959
- title: Decentralized Federated Graph Neural Networks
affiliation: Blue Elephant Tech
venue: IJCAI Workshop
year: '2021'
materials:
PDF: https://federated-learning.org/fl-ijcai-2021/FTL-IJCAI21_paper_20.pdf
- title: 'FedSGC: Federated Simple Graph Convolution for Node Classification'
affiliation: HKUST
venue: IJCAI Workshop
year: '2021'
materials:
PDF: https://federated-learning.org/fl-ijcai-2021/FTL-IJCAI21_paper_5.pdf
- title: 'FL-DISCO: Federated Generative Adversarial Network for Graph-based Molecule
Drug Discovery: Special Session Paper'
affiliation: UNM
venue: ICCAD
year: '2021'
materials:
PUB: https://doi.org/10.1109/ICCAD51958.2021.9643440
- title: 'FASTGNN: A Topological Information Protected Federated Learning Approach
for Traffic Speed Forecasting'
affiliation: UTS
venue: IEEE Trans. Ind. Informatics
year: '2021'
materials:
PUB: https://ieeexplore.ieee.org/document/9340313
- title: 'DAG-FL: Direct Acyclic Graph-based Blockchain Empowers On-Device Federated
Learning'
affiliation: BUPT; UESTC
venue: ICC
year: '2021'
materials:
PUB: https://doi.org/10.1109/ICC42927.2021.9500737
PDF: https://arxiv.org/abs/2104.13092
- title: 'FedE: Embedding Knowledge Graphs in Federated Setting **`kg.`**'
affiliation: ZJU
venue: IJCKG
year: '2021'
materials:
PUB: https://doi.org/10.1145/3502223.3502233
PDF: https://arxiv.org/abs/2010.12882
CODE: https://github.com/AnselCmy/FedE
- title: Federated Knowledge Graph Embeddings with Heterogeneous Data **`kg.`**
affiliation: TJU
venue: CCKS
year: '2021'
materials:
PUB: https://doi.org/10.1007/978-981-16-6471-7_2
- title: A Graph Federated Architecture with Privacy Preserving Learning
affiliation: EPFL
venue: SPAWC
year: '2021'
materials:
PUB: https://doi.org/10.1109/SPAWC51858.2021.9593148
PDF: https://arxiv.org/abs/2104.13215
解读: https://zhuanlan.zhihu.com/p/440809332
- title: Federated Social Recommendation with Graph Neural Network
affiliation: UIC
venue: ACM TIST
year: '2021'
materials:
PUB: https://dl.acm.org/doi/abs/10.1145/3501815
PDF: https://arxiv.org/abs/2111.10778
CODE: https://github.com/YangLiangwei/FeSoG
- title: 'FedGraphNN: A Federated Learning System and Benchmark for Graph Neural
Networks :fire: **`surv.`**'
affiliation: USC
venue: ICLR Workshop / MLSys Workshop
year: '2021'
materials:
PDF: https://arxiv.org/abs/2104.07145
CODE: https://github.com/FedML-AI/FedGraphNN
解读: https://zhuanlan.zhihu.com/p/429220636
- title: A Federated Multigraph Integration Approach for Connectional Brain Template
Learning
affiliation: Istanbul Technical University
venue: MICCAI Workshop
year: '2021'
materials:
PUB: https://link.springer.com/chapter/10.1007/978-3-030-89847-2_4
CODE: https://github.com/basiralab/Fed-CBT
- title: Cluster-driven Graph Federated Learning over Multiple Domains
affiliation: Politecnico di Torino
venue: CVPR Workshop
year: '2021'
materials:
PDF: https://arxiv.org/abs/2104.14628
解读: https://zhuanlan.zhihu.com/p/440527314
- title: 'FedGNN: Federated Graph Neural Network for Privacy-Preserving Recommendation'
affiliation: THU
venue: ICML workshop
year: '2021'
materials:
PDF: https://arxiv.org/abs/2102.04925
解读: https://zhuanlan.zhihu.com/p/428783383
- title: Decentralized federated learning of deep neural networks on non-iid data
affiliation: RISE; Chalmers University of Technology
venue: ICML workshop
year: '2021'
materials:
PDF: https://arxiv.org/abs/2107.08517
CODE: https://github.com/guskarls/dfl-pens
- title: 'Glint: Decentralized Federated Graph Learning with Traffic Throttling
and Flow Scheduling'
affiliation: The University of Aizu
venue: IWQoS
year: '2021'
materials:
PUB: https://doi.org/10.1109/IWQOS52092.2021.9521331
- title: Federated Graph Neural Network for Cross-graph Node Classification
affiliation: BUPT
venue: CCIS
year: '2021'
materials:
PUB: https://doi.org/10.1109/CCIS53392.2021.9754598
- title: 'GraFeHTy: Graph Neural Network using Federated Learning for Human Activity
Recognition'
affiliation: Lead Data Scientist Ericsson Digital Services
venue: ICMLA
year: '2021'
materials:
PUB: https://doi.org/10.1109/ICMLA52953.2021.00184
- title: Distributed Training of Graph Convolutional Networks
affiliation: Sapienza University of Rome
venue: TSIPN
year: '2021'
materials:
PUB: https://ieeexplore.ieee.org/document/9303371
PDF: https://arxiv.org/abs/2007.06281
解读: https://zhuanlan.zhihu.com/p/433329525
- title: Decentralized federated learning for electronic health records
affiliation: UMN
venue: NeurIPS Workshop / CISS
year: '2020'
materials:
PUB: https://ieeexplore.ieee.org/abstract/document/9086196
PDF: https://arxiv.org/abs/1912.01792
解读: https://zhuanlan.zhihu.com/p/448738120
- title: 'ASFGNN: Automated Separated-Federated Graph Neural Network'
affiliation: Ant Group
venue: PPNA
year: '2020'
materials:
PUB: https://doi.org/10.1007/s12083-021-01074-w
PDF: https://arxiv.org/abs/2011.03248
解读: https://zhuanlan.zhihu.com/p/431283541
- title: Decentralized federated learning via sgd over wireless d2d networks
affiliation: SZU
venue: SPAWC
year: '2020'
materials:
PUB: https://ieeexplore.ieee.org/document/9154332
PDF: https://arxiv.org/abs/2002.12507
- title: 'SGNN: A Graph Neural Network Based Federated Learning Approach by Hiding
Structure'
affiliation: SDU
venue: BigData
year: '2019'
materials:
PUB: https://ieeexplore.ieee.org/document/9005983
PDF: https://www.researchgate.net/profile/Shijun_Liu3/publication/339482514_SGNN_A_Graph_Neural_Network_Based_Federated_Learning_Approach_by_Hiding_Structure/links/5f48365d458515a88b790595/SGNN-A-Graph-Neural-Network-Based-Federated-Learning-Approach-by-Hiding-Structure.pdf
- title: Towards Federated Graph Learning for Collaborative Financial Crimes Detection
affiliation: IBM
venue: NeurIPS Workshop
year: '2019'
materials:
PDF: https://arxiv.org/abs/1909.12946
- title: 'Federated learning of predictive models from federated Electronic Health
Records :star:'
affiliation: BU
venue: Int. J. Medical Informatics
year: '2018'
materials:
PUB: https://www.sciencedirect.com/science/article/abs/pii/S138650561830008X?via%3Dihub
- title: 'FedHGN: A Federated Framework for Heterogeneous Graph Neural Networks.'
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2305.09729
CODE: https://github.com/cynricfu/FedHGN
- title: Graph-guided Personalization for Federated Recommendation.
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2305.07866
- title: 'GraphGANFed: A Federated Generative Framework for Graph-Structured Molecules
Towards Efficient Drug Discovery.'
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2304.05498
- title: 'GLASU: A Communication-Efficient Algorithm for Federated Learning with
Vertically Distributed Graph Data'
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2303.09531
- title: Vertical Federated Graph Neural Network for Recommender System
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2303.05786
CODE: https://github.com/maiph123/verticalgnn
- title: 'Lumos: Heterogeneity-aware Federated Graph Learning over Decentralized
Devices'
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2303.00492
- title: Securing IoT Communication using Physical Sensor Data - Graph Layer Security with
Federated Multi-Agent Deep Reinforcement Learning.
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2302.12592
- title: Heterogeneous Federated Knowledge Graph Embedding Learning and Unlearning.
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2302.02069
- title: 'Uplink Scheduling in Federated Learning: an Importance-Aware Approach
via Graph Representation Learning'
affiliation: ''
venue: preprint
year: '2023'
materials:
PDF: https://arxiv.org/abs/2301.11903
- title: Graph Federated Learning with Hidden Representation Sharing
affiliation: UCLA
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2212.12158
- title: M3FGM:a node masking and multi-granularity message passing-based federated
graph model for spatial-temporal data prediction
affiliation: Xidian University
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2210.16193
- title: Federated Graph-based Networks with Shared Embedding
affiliation: BUCEA
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2210.01803
- title: Privacy-preserving Decentralized Federated Learning over Time-varying Communication
Graph
affiliation: Lancaster University
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2210.00325
- title: Heterogeneous Federated Learning on a Graph.
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2209.08737
- title: 'FedEgo: Privacy-preserving Personalized Federated Graph Learning with
Ego-graphs'
affiliation: SYSU
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2208.13685
CODE: https://github.com/fedego/fedego
- title: Federated Graph Contrastive Learning
affiliation: UTS
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2207.11836
- title: 'FD-GATDR: A Federated-Decentralized-Learning Graph Attention Network for
Doctor Recommendation Using EHR'
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2207.05750
- title: 'Privacy-preserving Graph Analytics: Secure Generation and Federated Learning'
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2207.00048
- title: Federated Graph Attention Network for Rumor Detection
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2206.05713
CODE: https://github.com/baichuanzheng1/fedgat
- title: 'FedRel: An Adaptive Federated Relevance Framework for Spatial Temporal
Graph Learning'
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2206.03420
- title: Privatized Graph Federated Learning
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2203.07105
- title: 'Federated Graph Neural Networks: Overview, Techniques and Challenges **`surv.`**'
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2202.07256
- title: Decentralized event-triggered federated learning with heterogeneous communication
thresholds.
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://github.com/ShahryarBQ/EF_HC
- title: Federated Learning with Heterogeneous Architectures using Graph HyperNetworks
affiliation: ''
venue: preprint
year: '2022'
materials:
PDF: https://arxiv.org/abs/2201.08459
- title: 'STFL: A Temporal-Spatial Federated Learning Framework for Graph Neural
Networks'
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2111.06750
CODE: https://github.com/jw9msjwjnpdrlfw/tsfl
- title: 'PPSGCN: A Privacy-Preserving Subgraph Sampling Based Distributed GCN Training
Method'
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2110.12906
- title: Leveraging a Federation of Knowledge Graphs to Improve Faceted Search in
Digital Libraries **`kg.`**
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2107.05447
- title: Federated Myopic Community Detection with One-shot Communication
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2106.07255
- title: Federated Graph Learning -- A Position Paper **`surv.`**
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2105.11099
- title: A Vertical Federated Learning Framework for Graph Convolutional Network
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2106.11593
- title: 'FedGL: Federated Graph Learning Framework with Global Self-Supervision'
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2105.03170
- title: 'FL-AGCNS: Federated Learning Framework for Automatic Graph Convolutional
Network Search'
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2104.04141
- title: A New Look and Convergence Rate of Federated Multi-Task Learning with Laplacian
Regularization
affiliation: ''
venue: preprint
year: '2021'
materials:
PDF: https://arxiv.org/abs/2102.07148
CODE: https://github.com/dual-grp/fedu_fmtl
- title: Improving Federated Relational Data Modeling via Basis Alignment and Weight
Penalty **`kg.`**
affiliation: ''
venue: preprint
year: '2020'
materials:
PDF: https://arxiv.org/abs/2011.11369
- title: 'GraphFederator: Federated Visual Analysis for Multi-party Graphs'
affiliation: ''
venue: preprint
year: '2020'
materials:
PDF: https://arxiv.org/abs/2008.11989
- title: Privacy-Preserving Graph Neural Network for Node Classification
affiliation: ''
venue: preprint
year: '2020'
materials:
PDF: https://arxiv.org/abs/2005.11903
- title: Peer-to-peer federated learning on graphs
affiliation: UC
venue: preprint
year: '2019'
materials: