REVIEW 4 major objections 5 minor 52 references
Temporal Analysis of Adversarial Attacks in Federated Learning
T0 review · 4 major / 5 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read This paper experimentally shows that the timing of adversarial attacks in federated learning matters as much as their type: attacks running in the final rounds or throughout training cause the largest accuracy drops, while a One-Class SVM…
desk verdict A competent but overstated temporal-attack benchmark on MNIST; the label-flipping results mostly support the timing claim, the model-poisoning results undercut it, and the defense numbers leak ground-truth labels. 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 experiments run ten federated rounds with 25% of clients adversarial and compare three attack windows: FULL (adversaries active every round), MID (active in the middle 30% of rounds), and END (active in the last 30%). Aggregation is FedAvg for neural and linear models and bagging for tree models. The model-poisoning attack follows MPAF: a malicious client takes the difference between a randomly initialized low-accuracy base model and the current global model, multiplies the difference by a factor $\lambda>1$, and sends the magnified fake update for aggregation. Defense is a supervised One-Class SVM trained on client evaluation metrics (precision, recall, F1, loss) to flag and drop malicious updates. These pieces together make the temporal comparison possible by varying only when the malicious behavior occurs.
What would settle it
Re-run the model-poisoning experiments with a magnification factor close to 1 or with a base model that already has moderate accuracy, and check whether the MID window still collapses CNN, RNN, and LSTM to near-random accuracy. If it does, the late-round conclusion is an artifact of attack strength; if MID stays high while END collapses, the timing claim holds. Separately, stop the attack after round 3 and measure whether accuracy returns to baseline by round 10, which the paper's recovery claim predicts.
Extended reading notes
Core claim
The central discovery is that temporal attack windows are not interchangeable: for the label-flipping and model-poisoning attacks tested, the FULL and END windows degrade the global model substantially, while the MID window has little effect in label flipping and the strongest models recover from early attacks. The effect is most dramatic under MPAF model poisoning, where CNN, RNN, and LSTM accuracies collapse to near-random levels (for example, 0.098, 0.142, and 0.089 in the FULL, MID, and END cases for CNN) without defense; One-Class SVM outlier detection lifts these models back to about 0.81–0.84 accuracy. By contrast, the GAN reconstruction attack is weak against neural models and only affects the tree-based models. The paper concludes that models can recover from early attacks, that later or persistent attacks are the dangerous ones, and that model family and defense choice materially change the outcome.
Load-bearing premise
The timing conclusion rests on the assumption that the model-poisoning attack is strong but not so overwhelming that it destroys the model in every window; if the random base model and the magnification factor $\lambda$ make the attack catastrophic even in the middle rounds, then the observed 'later rounds damage more' pattern is an artifact of attack strength, not of timing.
Editorial extensions
If this is right
- Defenses that cannot protect every round should concentrate on the final 30% of federated rounds and on clients that are anomalous in every round.
- A transient attack early in training is survivable, so detection mechanisms can afford to be slower if the threat is known to be intermittent.
- One-Class SVM filtering of client updates recovers most of the accuracy lost to model poisoning, restoring CNN, RNN, and LSTM from near-random to roughly 0.81–0.84 accuracy.
- Model selection changes exposure: MLP is the most attack-resistant model tested, while LSTM, despite the best clean accuracy, collapses under model poisoning, and tree ensembles are the weak point for GAN reconstruction.
Reading between the lines
- Editorial: Because the MPAF attack's magnification factor and random base model are not reported, the quantitative ranking of windows may not transfer to weaker or stronger poisoning; sweeping $\lambda$ would separate timing from attack magnitude.
- Editorial: The recovery from early attacks suggests that defenders could treat persistence, not just anomaly size, as a signal, weighting recent-round behavior more heavily in client trust scores.
- Editorial: The outlier-detection evaluation is supervised, trained on known honest-versus-malicious labels; an unsupervised deployment, where such labels are absent, is the stricter test of whether the defense works in practice.
- Editorial: The GAN attack's weakness may be a consequence of the horizontal partition keeping seven of ten classes per client, so the synthetic missing-label data is easy for the model to ignore; a partition with fewer classes per client would test the attack more severely.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper experimentally studies how the timing of adversarial client attacks affects federated learning (FL) models on MNIST. It defines three temporal windows—FULL, MID, and END (last 30% of rounds)—and tests three attack types (label flipping, model poisoning via MPAF, and GAN reconstruction) across eight classifiers (MLR, SVC, MLP, CNN, RNN, LSTM, Random Forest, XGBoost). It also evaluates a supervised outlier-detection defense at the aggregation server. The central claim is that temporal attacks are most damaging when adversaries are active throughout or in later rounds, and that outlier detection mitigates simple attacks. Results are reported as accuracy, precision, recall, F1, and loss in bar charts and in detailed appendix tables.
Significance. If the temporal claim held, the paper would give FL practitioners a concrete reason to treat attack timing as a first-order variable and to prioritize defenses for late or full-duration attacks. The breadth of the model zoo and the reporting of the full metric set in Appendix B are useful for replication. However, the support is mixed: label flipping partially supports the claim, while model poisoning results in Table B.3 do not, and the defense evaluation in Section 5.2 uses ground-truth malicious-client labels to train the outlier detector, an unrealistic assumption. The significance is therefore currently qualified by these issues.
major comments (4)
- [Section 5.4, Table B.3] The claim that attacks matter 'especially when the adversaries are active throughout or during the later rounds' is contradicted by the model poisoning results for CNN, RNN, and LSTM. In the MID window, these models achieve accuracies of 0.1145, 0.1780, and 0.0892, respectively, which are at or near the random baseline of 0.10 and are virtually indistinguishable from the FULL and END results (e.g., CNN FULL 0.0980, END 0.0951). The temporal distinction collapses for these models; the observed pattern is that the attack is catastrophic whenever active, not that later rounds are worse. This undermines the abstract and the Section 6 conclusion.
- [Section 2.4.2] The model poisoning attack (MPAF) is specified only as using 'a randomly initialized base model' with a magnification factor λ > 1, but λ is never reported. Without controlling λ, the attack strength is unquantified; with a large λ and a random base, the deep models are overwhelmed in every window, making the temporal comparison an artifact of attack strength rather than timing. The paper should report λ, justify its value, and include a sensitivity analysis over λ, or at least an ablation demonstrating that the results are not driven by an arbitrarily strong attack.
- [Section 5.2, Tables B.2, B.4, B.6] The outlier detector is trained using the ground-truth labels of which clients are malicious ('based on the client labels of honest or malicious'). In a realistic FL setting the server does not know which clients are malicious; this is precisely what the detector is supposed to infer. Training on these labels leaks privileged information, so the reported defense accuracies (e.g., One-Class SVM accuracy 0.97 in Table 2) overstate the benefit of outlier detection. The defense should be evaluated without exposing ground-truth adversary identities, for example using unsupervised anomaly detection or a held-out validation set that is not part of the attack scenario.
- [Section 6] The conclusion states that 'attacks in the earlier rounds do not have a strong effect' and that 'FL models can recover from attacks,' but no EARLY-only attack window was run; the experiments only cover FULL, MID, and END. Recovery cannot be inferred from the absence of damage in MID relative to END; a direct EARLY-only condition, with later rounds clean, is needed to test the claim that early attacks are harmless and that models recover.
minor comments (5)
- [Section 2.6.1] The heading 'Multinominal Logistic Regression' contains a typo; it should be 'Multinomial Logistic Regression'.
- [Section 3] The text refers to 'the Fl system' in one place; this should be 'FL system'.
- [Table A.7] The hyperparameter 'Colsample by-tree' is likely a typo for 'colsample_bytree' in the XGBoost notation.
- [Figure 1, reference [18]] Figure 1 cites a Wikipedia image as reference [18]; a primary scholarly source for centralized versus decentralized FL would be more appropriate.
- [Reproducibility] No link to source code or a specification of the exact λ value is provided; adding these would materially improve reproducibility.
Circularity Check
No circularity: the paper reports direct experimental measurements, and no claimed result reduces to a fitted input or a self-citation chain.
full rationale
This is an experimental measurement study, not a derivation. The temporal attack comparison is made by running FL training under three defined attack windows (FULL, MID, END) and recording standard metrics such as accuracy, precision, recall, F1, and loss. No model parameter is fitted to one subset of the data and then presented as a prediction of a closely related quantity; no quantity is defined in terms of the quantity it is claimed to explain. The central claim, that attacks in later rounds or throughout training have larger effects, is a direct empirical comparison across results such as Tables B.1, B.3, and B.5, and it can fail or hold independently of how the experiments were set up. The one nearby concern is the outlier-detection defense: its training labels come from the same attack pipeline, but the defense evaluation is performed on a fresh run with outlier detection enabled, so any possible leakage would be an experimental-design or soundness issue rather than a circular derivation. Likewise, the unreported magnification factor lambda in the MPAF model-poisoning attack and the absence of an EARLY-only window are concerns about attack strength and experimental coverage, not about a result being true by construction. The paper contains no load-bearing self-citations; the MPAF method is attributed to the external reference [8], and the FL framework is attributed to Flower [3]. Since every reported outcome is a measured quantity and no claimed result is equivalent to its own input by definition, the circularity score is 0.
Assumptions & free parameters
free parameters (7)
- Neural network hyperparameters (MLP, CNN, RNN, LSTM) =
learning rate 0.01, local epochs 10, batch size 20, optimizer Adam
- Classical model hyperparameters (MLR, SVC) =
MLR local epochs 10 with L2; SVC C=1, linear kernel
- Tree model hyperparameters (Random Forest, XGBoost) =
XGBoost learning rate 0.08, max depth 10, subsample 0.80, colsample 0.80, alpha 8, lambda 8; RF same with one boosting…
- Model poisoning amplification factor λ
- Label flipping poisoning ratio
- GAN architecture and training schedule
- Outlier detector hyperparameters
assumptions (4)
- domain assumption The Flower framework correctly implements FedAvg and bagging aggregation
- domain assumption MNIST is a sufficient benchmark for conclusions about FL robustness
- ad hoc to paper The server knows which clients are malicious to train the outlier detector
- domain assumption Attack implementations faithfully represent real adversaries
Cite this review
Pith. "Pith review of Temporal Analysis of Adversarial Attacks in Federated Learning." pith.science (2026). https://pith.science/paper/BW6AZM3H
@misc{pith2026250111054,
author = {Pith},
title = {Pith review of: Temporal Analysis of Adversarial Attacks in Federated Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/BW6AZM3H}},
note = {Machine review of arXiv:2501.11054}
}
read the original abstract
In this paper, we experimentally analyze the robustness of selected Federated Learning (FL) systems in the presence of adversarial clients. We find that temporal attacks significantly affect model performance in the FL models tested, especially when the adversaries are active throughout or during the later rounds. We consider a variety of classic learning models, including Multinominal Logistic Regression (MLR), Random Forest, XGBoost, Support Vector Classifier (SVC), as well as various Neural Network models including Multilayer Perceptron (MLP), Convolution Neural Network (CNN), Recurrent Neural Network (RNN), and Long Short-Term Memory (LSTM). Our results highlight the effectiveness of temporal attacks and the need to develop strategies to make the FL process more robust against such attacks. We also briefly consider the effectiveness of defense mechanisms, including outlier detection in the aggregation algorithm.
Figures
Figures from the paper (8 more)
Reference graph
Works this paper leans on
-
[1]
Mohammad Mohammadi Amiri, Deniz G¨ und¨ uz, Sanjeev R. Kulkarni, and H. Vincent Poor. Update aware device scheduling for federated learning at the wireless edge. In 2020 IEEE International Symposium on Information Theory, ISIT, pages 2598–2603, 2020
work page 2020
-
[2]
Towards effective device-aware federated learning
Vito Walter Anelli, Yashar Deldjoo, Tommaso Di Noia, and Antonio Fer- rara. Towards effective device-aware federated learning. In AI*IA 2019 – Advances in Artificial Intelligence , pages 477–491, 2019
work page 2019
-
[3]
Flower: A friendly federated learning research framework
Daniel J Beutel, Taner Topal, Akhil Mathur, Xinchi Qiu, Javier Fernandez- Marques, Yan Gao, Lorenzo Sani, Hei Li Kwing, Titouan Parcollet, Pedro PB de Gusm˜ ao, and Nicholas D Lane. Flower: A friendly federated learning research framework. https://arxiv.org/abs/2007.14390, 2020
arXiv 2007
-
[4]
Brendan McMahan, Sarvar Patel, Daniel Ramage, Aaron Segal, and Karn Seth
Keith Bonawitz, Vladimir Ivanov, Ben Kreuter, Antonio Marcedone, H. Brendan McMahan, Sarvar Patel, Daniel Ramage, Aaron Segal, and Karn Seth. Practical secure aggregation for privacy-preserving machine learning. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, CCS ’17, pages 1175–1191, 2017
work page 2017
-
[5]
Federated learning with autotuned communication-efficient secure aggregation
Keith Bonawitz, Fariborz Salehi, Jakub Kone vcn` y, Brendan McMahan, and Marco Gruteser. Federated learning with autotuned communication-efficient secure aggregation. In 2019 53rd Asilomar Conference on Signals, Systems, and Computers, pages 1222–1226, 2019
work page 2019
-
[6]
Random forests
Leo Breiman. Random forests. Machine learning, 45:5–32, 2001
2001
-
[7]
Breunig, Hans-Peter Kriegel, Raymond T
Markus M. Breunig, Hans-Peter Kriegel, Raymond T. Ng, and J¨ org Sander. LOF: Identifying density-based local outliers. In Proceedings of the 2000 ACM SIGMOD International Conference on Management of Data , SIG- MOD ’00, pages 93–104, 2000
work page 2000
-
[8]
MPAF: Model poisoning attacks to federated learning based on fake clients
Xiaoyu Cao and Neil Zhenqiang Gong. MPAF: Model poisoning attacks to federated learning based on fake clients. In 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops , CVPRW, pages 3395–3403, 2022
work page 2022
Show all 52 references
-
[9]
XGBoost: A scalable tree boosting sys- tem
Tianqi Chen and Carlos Guestrin. XGBoost: A scalable tree boosting sys- tem. In Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining , pages 785–794, 2016. 22
2016
-
[10]
Targeted backdoor attacks on deep learning systems using data poisoning
Xinyun Chen, Chang Liu, Bo Li, Kimberly Lu, and Dawn Song. Targeted backdoor attacks on deep learning systems using data poisoning. https: //arxiv.org/abs/1712.05526, 2017
2017 arXiv
-
[11]
Communication-efficient fed- erated deep learning with layerwise asynchronous model update and tem- porally weighted aggregation
Yang Chen, Xiaoyan Sun, and Yaochu Jin. Communication-efficient fed- erated deep learning with layerwise asynchronous model update and tem- porally weighted aggregation. IEEE Transactions on Neural Networks and Learning Systems, 31(10):4229–4238, 2020
2020
-
[12]
Asyn- chronous online federated learning for edge devices with non-IID data
Yujing Chen, Yue Ning, Martin Slawski, and Huzefa Rangwala. Asyn- chronous online federated learning for edge devices with non-IID data. In 2020 IEEE International Conference on Big Data , Big Data, pages 15–24, 2020
2020
-
[13]
Federated learning with multichannel ALOHA
Jinho Choi and Shiva Raj Pokhrel. Federated learning with multichannel ALOHA. IEEE Wireless Communications Letters , 9(4):499–502, 2019
2019
-
[14]
Support-vector networks
Corinna Cortes and Vladimir Vapnik. Support-vector networks. Machine learning, 20:273–297, 1995
1995
-
[15]
Heterofl: Computation and communication efficient federated learning for heterogeneous clients
Enmao Diao, Jie Ding, and Vahid Tarokh. Heterofl: Computation and communication efficient federated learning for heterogeneous clients. In In- ternational Conference on Learning Representations, 2020
2020
-
[16]
Rawat, and Chunmei Liu
Ronald Doku, Danda B. Rawat, and Chunmei Liu. Towards federated learn- ing approach to determine data relevance in big data. In 2019 IEEE 20th International Conference on Information Reuse and Integration for Data Science (IRI), pages 184–192, 2019
2019
-
[17]
https://data.europa.eu/eli/reg/2016/679/oj, 2016
EUR-lex: Regulation (EU) 2016/679 of the European Parliament and of the Council. https://data.europa.eu/eli/reg/2016/679/oj, 2016
2016
-
[18]
https: //en.wikipedia.org/wiki/Federated_learning#/media/File: Federated_learning_(centralized_vs_decentralized).png, 2023
Federated learning (centralized vs decentralized). https: //en.wikipedia.org/wiki/Federated_learning#/media/File: Federated_learning_(centralized_vs_decentralized).png, 2023
2023
-
[19]
https://flower.ai/static/ images/blog/content/2023-11-29-xgboost-fl.jpg , 2023
Flower AI: XGBoost federated learning. https://flower.ai/static/ images/blog/content/2023-11-29-xgboost-fl.jpg , 2023
2023
-
[20]
https://flower.ai/docs/framework/tutorial-quickstart- xgboost.html#tree-based-bagging-aggregation, 2023
Flower framwork: Tree-based bagging aggregation — Quickstart with XGBoost. https://flower.ai/docs/framework/tutorial-quickstart- xgboost.html#tree-based-bagging-aggregation, 2023
2023
-
[21]
Long short-term memory.Neural Computation, 9(8):1735–1780, 1997
Sepp Hochreiter and J¨ urgen Schmidhuber. Long short-term memory.Neural Computation, 9(8):1735–1780, 1997
1997
-
[22]
Model and feature aggre- gation based federated learning for multi-sensor time series trend following
Yao Hu, Xiaoyan Sun, Yang Chen, and Zishuai Lu. Model and feature aggre- gation based federated learning for multi-sensor time series trend following. In Advances in Computational Intelligence , pages 233–246. Springer, 2019
2019
-
[23]
Incentive design for efficient federated learning in mobile networks: A contract theory approach
Jiawen Kang, Zehui Xiong, Dusit Niyato, Han Yu, Ying-Chang Liang, and Dong In Kim. Incentive design for efficient federated learning in mobile networks: A contract theory approach. In 2019 IEEE VTS Asia Pacific Wireless Communications Symposium, APWCS, pages 1–5, 2019. 23
2019
-
[24]
Reliable federated learning for mobile networks
Jiawen Kang, Zehui Xiong, Dusit Niyato, Yuze Zou, Yang Zhang, and Mohsen Guizani. Reliable federated learning for mobile networks. IEEE Wireless Communications, 27(2):72–80, 2020
2020
-
[25]
Blockchained on-device federated learning
Hyesung Kim, Jihong Park, Mehdi Bennis, and Seong-Lyun Kim. Blockchained on-device federated learning. IEEE Communications Letters, 24(6):1279–1283, 2020
2020
-
[26]
Peer-to-peer federated learning on graphs
Anusha Lalitha, Osman Cihan Kilinc, Tara Javidi, and Farinaz Koushanfar. Peer-to-peer federated learning on graphs. https://arxiv.org/abs/1901. 11173, 2019
1901
-
[27]
MNIST handwritten digit database
Yann LeCun and Corinna Cortes. MNIST handwritten digit database. http://yann.lecun.com/exdb/mnist/, 2010
2010
-
[28]
Backpropagation applied to handwritten zip code recog- nition
Yann LeCun et al. Backpropagation applied to handwritten zip code recog- nition. Neural Computation, 1(4):541–551, 1989
1989
-
[29]
Fair resource allocation in federated learning
Tian Li, Maziar Sanjabi, Ahmad Beirami, and Virginia Smith. Fair resource allocation in federated learning. https://arxiv.org/abs/1905.10497, 2020
1905 arXiv
-
[30]
Secure Model Fusion for Distributed Learning Using Partial Homomorphic Encryption , pages 154–179
Changchang Liu, Supriyo Chakraborty, and Dinesh Verma. Secure Model Fusion for Distributed Learning Using Partial Homomorphic Encryption , pages 154–179. Springer, 2019
2019
-
[31]
Isolation forest
Fei Tony Liu, Kai Ming Ting, and Zhi-Hua Zhou. Isolation forest. In 2008 Eighth IEEE International Conference on Data Mining , pages 413– 422, 2008
2008
-
[32]
H Deng, and Kui Ren
Yang Liu, Zhuo Ma, Ximeng Liu, Siqi Ma, Surya Nepal, Robert. H Deng, and Kui Ren. Boosting privately: Federated extreme gradient boosting for mobile crowdsensing. In 2020 IEEE 40th International Conference on Distributed Computing Systems , ICDCS, pages 1–11, 2020
2020
-
[33]
Blockchain and federated learning for privacy-preserved data sharing in industrial iot
Yunlong Lu, Xiaohong Huang, Yueyue Dai, Sabita Maharjan, and Yan Zhang. Blockchain and federated learning for privacy-preserved data sharing in industrial iot. IEEE Transactions on Industrial Informatics , 16(6):4177– 4186, 2020
2020
-
[34]
FLchain: Federated learning via MEC-enabled blockchain network
Umer Majeed and Choong Seon Hong. FLchain: Federated learning via MEC-enabled blockchain network. In 2019 20th Asia-Pacific Network Op- erations and Management Symposium , APNOMS, pages 1–4, 2019
2019
-
[35]
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 Proceedings of the 20th International Confer- ence on Artificial Intelligence and Statistics , volume 54, pages 1...
2017
-
[36]
https://numpy.org/
Numpy: The fundamental package for scientific computing with Python. https://numpy.org/. 24
-
[37]
https://pandas.pydata.org/
pandas: Powerful data structures for data analysis, time series, and statis- tics. https://pandas.pydata.org/
-
[38]
https://pytorch.org/
Pytorch. https://pytorch.org/
-
[39]
Fedpaq: A communication-efficient federated learn- ing method with periodic averaging and quantization
Amirhossein Reisizadeh, Aryan Mokhtari, Hamed Hassani, Ali Jadbabaie, and Ramtin Pedarsani. Fedpaq: A communication-efficient federated learn- ing method with periodic averaging and quantization. In International Con- ference on Artificial Intelligence and Statistics , pages 2...
2021
-
[40]
A fast algorithm for the minimum covariance determinant estimator
Peter J Rousseeuw and Katrien Van Driessen. A fast algorithm for the minimum covariance determinant estimator. Technometrics, 41(3):212–223, 1999
1999
-
[41]
Braintorrent: A peer-to-peer environment for decen- tralized federated learning
Abhijit Guha Roy, Shayan Siddiqui, Sebastian P¨ olsterl, Nassir Navab, and Christian Wachinger. Braintorrent: A peer-to-peer environment for decen- tralized federated learning. https://arxiv.org/abs/1905.06731, 2019
1905 arXiv
-
[43]
Rumelhart, Geoffrey E
David E. Rumelhart, Geoffrey E. Hinton, and Ronald J. Williams. Learn- ing representations by back-propagating errors. Nature, 323(6088):533–536, 1986
1986
-
[44]
Samy and Sarunas Girdzijauskas
Ahmed E. Samy and Sarunas Girdzijauskas. Mitigating sybil attacks in federated learning. In Information Security Practice and Experience , pages 36–51. Springer, 2023
2023
-
[45]
Platt, John Shawe-Taylor, Alex J
Bernhard Sch¨ olkopf, John C. Platt, John Shawe-Taylor, Alex J. Smola, and Robert C. Williamson. Estimating the support of a high-dimensional distribution. Neural Computation, 13(7):1443–1471, 2001
2001
-
[46]
https://scikit-learn.org/ stable/
scikit-learn: Machine learning in Python. https://scikit-learn.org/ stable/
-
[47]
Ronny Huang, Mahyar Najibi, Octavian Suciu, Christoph Studer, Tudor Dumitras, and Tom Goldstein
Ali Shafahi, W. Ronny Huang, Mahyar Najibi, Octavian Suciu, Christoph Studer, Tudor Dumitras, and Tom Goldstein. Poison frogs! Targeted clean-label poisoning attacks on neural networks.https://arxiv.org/abs/ 1804.00792, 2018
2018 arXiv
-
[48]
Measure contribution of participants in federated learning
Guan Wang, Charlie Xiaoqian Dang, and Ziye Zhou. Measure contribution of participants in federated learning. In2019 IEEE International Conference on Big Data (Big Data) , pages 2597–2604, 2019
2019
-
[49]
https://xgboost
XGBoost: Scalable and flexible gradient boosting. https://xgboost. readthedocs.io/en/stable/
-
[50]
Hybridalpha: An efficient approach for privacy-preserving federated learn- ing
Runhua Xu, Nathalie Baracaldo, Yi Zhou, Ali Anwar, and Heiko Ludwig. Hybridalpha: An efficient approach for privacy-preserving federated learn- ing. In Proceedings of the 12th ACM Workshop on Artificial Intelligence and Security, AISec’19, page 13–23, 2019. 25
2019
-
[51]
Fed- erated learning
Qiang Yang, Yang Liu, Yong Cheng, Yan Kang, and Tianjian Chen. Fed- erated learning. Synthesis Lectures on Artificial Intelligence and Machine Learning, 13(3):1–207, 2019
2019
-
[52]
Experience-driven computational resource allocation of federated learning by deep reinforcement learning
Yufeng Zhan, Peng Li, and Song Guo. Experience-driven computational resource allocation of federated learning by deep reinforcement learning. In 2020 IEEE International Parallel and Distributed Processing Symposium (IPDPS), pages 234–243, 2020
2020
-
[53]
Liu, and Yang Xiang
Xiaoyu Zhang, Xiaofeng Chen, Joseph K. Liu, and Yang Xiang. Deep- PAR and DeepDPA: Privacy preserving and asynchronous deep learning for industrial IoT. IEEE Transactions on Industrial Informatics , 16(3):2081– 2090, 2020. Appendix A In this appendix, we list the hyperparamete...
2020
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.