REVIEW 3 major objections 4 minor 64 references
A federated learning protocol that trains one bit of each quantized weight per round matches uncompressed FedAvg accuracy, using only 1 bit per parameter for uplink and 3–4 bits per parameter for downlink.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-04 18:05 UTC pith:CUU6OOFL
load-bearing objection FedBiF is a real compression mechanism with solid empirical support—matching FedAvg at 1 bpp uplink on five benchmarks—but the paper's theory and gradient definition lag the deployed algorithm. the 3 major comments →
FedBiF: Communication-Efficient Federated Learning via Bits Freezing
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
FedBiF claims that the communication bottleneck in federated learning can be reduced to one bit per parameter per round without sacrificing model accuracy by decoupling parameter precision from communication cost. Instead of quantizing gradients or updates after local training, the server quantizes global parameters into m-bit integers; each client decomposes each integer into binary bits and trains a single 'activated' bit, represented by a sign function of a floating-point virtual bit, while frozen bits are precomputed and reused. Because the uploaded update is just the binary value of the activated bit, uplink is 1 bpp, and the paper reports accuracy within about 0.2–0.4 points of FedAvg
What carries the argument
The central mechanism is bit freezing: each quantized integer parameter is decomposed as a weighted sum of m binary bits, and one bit per parameter is activated each round while the rest are frozen. The activated bit is learned through a floating-point virtual bit v_i, with the binary value given by a step function h(v_i); forward weights are reconstructed cheaply as the precomputed frozen-bit contribution plus the scaled activated bit. Gradients reach the virtual bit through the Straight-Through Estimator, which approximates the derivative of the step function as 1 (dropping the α·2^i scaling), letting gradient descent move the virtual bit across zero so the binary bit flips at the right ti
Load-bearing premise
The load-bearing premise is that the Straight-Through Estimator—treating the non-differentiable step function as identity and setting ∂θ̂/∂v_i = 1, dropping the α·2^i scaling—gives a gradient direction informative enough to flip or retain bits correctly in deep networks with batch normalization and ReLU; if this proxy gradient is poor, the bit-by-bit learning mechanism and the empirical match to FedAvg would not hold.
What would settle it
Run the released code on CIFAR-10 with a standard deep convolutional network under a Non-IID-2 partition at 1 bpp uplink and 4 bpp downlink, and compare the final test accuracy to a full-precision FedAvg run with identical local-update steps; if FedBiF falls more than about one percentage point short of FedAvg, the paper's headline claim of comparable accuracy at 1 bpp is not robust. A more direct check is to replace the STE gradient in Eq. (7) with the true scaled gradient α·2^i and observe whether bit-flip decisions change materially.
If this is right
- Communication per round drops to 1 bpp uplink and m bpp downlink while keeping accuracy close to uncompressed FedAvg, directly addressing the dominant bottleneck in bandwidth-limited federated learning.
- FedBiF converges at roughly the same speed as FedAvg: the reported convergence curves under equal communication cost show faster progress than quantization-based baselines like SignSGD, FedPAQ, FedDQ, DAdaQuant, and LFL.
- The learned models are naturally sparse—for example, 47–62% zero-valued parameters on FMNIST and SVHN with a 2-bit representation—offering an automatic pruning effect without manual intervention.
- Activating one bit per round is the best choice: activating more bits per round reduces accuracy in Non-IID settings, likely because local models overfit on heterogeneous data, and it also increases communication and compute.
- The method remains robust to the number of clients and model architecture: with 200 clients and with a DenseNet on CIFAR-10, FedBiF still matches FedAvg and outperforms LFL at equal communication cost.
- The choice of which bit to activate is not sensitive—cyclic and random activation yield comparable accuracy, but always training a fixed bit performs much worse, confirming that all bits must eventually be updated.
Where Pith is reading between the lines
- Editorial inference: The reported per-direction costs imply a total bidirectional cost of m+1 bpp (e.g., 5 bpp for m=4) versus 64 bpp for full-precision FedAvg, a compression factor above 12×; the paper does not state this aggregate figure explicitly.
- Editorial inference: The convergence analysis assumes all m bits are activated during training, while the empirical protocol activates only one bit per round; showing that the one-bit-activation scheme obeys a similar bound would place the practical algorithm on the same theoretical footing as the theorem.
- Editorial inference: Because the Straight-Through Estimator drops the α·2^i scaling in Eq. (6), the method implicitly treats every bit as equally easy to flip; a testable extension is to scale the virtual-bit gradient by α·2^i and measure whether convergence or final accuracy changes, which would reveal whether the proxy gradient is the right one.
- Editorial inference: The natural sparsity of FedBiF models suggests a direct extension: combine bit freezing with sparse masks or top-k bit selection to cut even the downlink cost below m bpp, since a large fraction of parameters can be transmitted as zeros.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FedBiF, a federated learning framework in which model parameters are quantized to m-bit integer representations and each client updates only a single bit per parameter per communication round, while the remaining bits are frozen. The selected bit is represented by a floating-point 'virtual bit' during local training; after local steps, clients upload only the binary values of the activated bits. The server reconstructs the local models from the uploaded activated bit and the precomputed frozen-bit sum, then aggregates them. The paper reports experiments on FMNIST, SVHN, CIFAR-10, CIFAR-100, and TinyImageNet under IID and two non-IID settings, claiming accuracy comparable to FedAvg at 1 bpp uplink and 3-4 bpp downlink, along with natural sparsity of the learned models. Theoretical convergence bounds are provided for an all-bits-activated idealized variant.
Significance. The empirical claim is potentially significant: if a one-bit-per-parameter uplink update can match FedAvg performance while retaining multi-bit precision in the parameter representation, it would be a useful contribution to communication-efficient federated learning. The paper includes a broad set of experiments with error bars, ablations over bit width and bit-selection strategy, and open-source code, which strengthens the empirical contribution. However, the novelty is partially undercut by the authors' own prior FedBAT work, cited in Section II-B, and the theoretical section analyzes a different algorithm from the one deployed. The central empirical result appears plausible and reproducible on the presented benchmarks, but the current manuscript overstates both the exact compression ratio and the degree of formal support for the deployed algorithm.
major comments (3)
- [IV-A, Eq. (7)] Equation (7) sets ∂θ̂/∂v_i = 1, but Eq. (6) defines θ̂ = α(Σ 2^i h(v_i) − 2^{m−1}). Applying STE to the step function h would give ∂θ̂/∂v_i = α·2^i, not 1. The sign of the gradient is unchanged, so the descent direction is the same, but the magnitude is wrong by a position-dependent factor. Since a bit flips only when its virtual bit crosses zero, this scaling affects which bits flip and when. The paper should either use the correct α·2^i scaling, or explicitly define a normalized STE and justify it, and state which variant the released code implements. As written, Eq. (7) does not describe a loss-aligned update for the actual quantization defined in Eq. (6).
- [IV-C, Theorems 1 and 2] Both theorems explicitly assume 'bits freezing with all m bits activated', while the FedBiF algorithm described in Section IV-B activates only one bit per parameter per round. The error-floor bounds in Eqs. (16)–(17) depend exponentially on m and on the simultaneous update of all m virtual bits; they do not apply to the cyclic one-bit-per-round protocol. The paper should either extend the analysis to the one-bit activation schedule or clearly label the theorems as analyzing an idealized all-bit variant and state that the empirical claims do not rely on these bounds. As written, the convergence section gives a misleading impression of formal support for the actual method.
- [Abstract, Table II, Table V] The abstract and introduction claim FedBiF achieves FedAvg-level accuracy with '1 bpp uplink and 3 bpp downlink'. In Table II, this downlink bit rate holds only for FMNIST and SVHN; CIFAR-10, CIFAR-100, and TinyImageNet use 4 bpp downlink. Table V shows that the 3-bpp configuration (FedBiF-1/3) on CIFAR-10 reaches 75.0% versus 78.1% for FedAvg, a 3.1-point drop. Thus the 3-bpp claim is not supported on the larger benchmarks. The reporting should either be restricted to the settings actually used or the accuracy at 3 bpp should be reported for all datasets.
minor comments (4)
- [I and II-B] The phrase 'a pioneering direction for CEFL' in Section I is contradicted by Section II-B, which cites the authors' own FedBAT [35] as 'a similar mechanism that directly learns the binary model updates during local training'. The novelty claim should be softened to an incremental contribution over FedBAT.
- [V-E] The claim that 'models trained by baseline methods exhibit zero sparsity' should be qualified. Sparsity is reported for the quantized representation used by FedBiF; baselines trained in FP32 may have parameters close to zero but not exactly zero. The comparison would be clearer if sparsity were measured on a common thresholded basis.
- [Eq. (12)] The initialization in Eq. (12) should be written more carefully: v_i = (2b_i − 1)|v_i| maps b_i=0 to a negative value and b_i=1 to a positive value, which preserves the sign of the step function. It would help to state explicitly that the absolute value is taken of the Kaiming-initialized value.
- [IV-C, Eq. (16)] The bound in Eq. (16) includes factors P and D that are not fully motivated in the text; the proof is deferred to an appendix not included in the manuscript. Please ensure the appendix is provided and that the assumptions on the relation between v and w are stated precisely.
Circularity Check
No circular derivation: FedBiF's accuracy claim is measured against external baselines; self-citation to FedBAT is acknowledged and not load-bearing.
full rationale
The paper's central claim — FedBiF reaches FedAvg-comparable accuracy at 1 bpp uplink and 3–4 bpp downlink — is an experimental result compared against FedAvg and external baselines on five datasets, not an output of a fitted constant or a self-citation. The bit decomposition Eq. (4), the reconstruction Eq. (9), and the aggregation Eq. (13) are definitions/architectural identities, not predictions derived from themselves. The straight-through estimator in Eq. (7) is an explicit approximation (∂θ̂/∂v_i = 1), not a hidden input; its mismatch with the α·2^i scaling in Eq. (6) is a reproducibility/correctness concern, not a circular reduction. The convergence theorems (Eqs. 16–17) explicitly assume 'all m bits activated' while the protocol activates one bit per round, so the proof does not cover the executed algorithm; this is a validity gap rather than circularity. The appendix referenced for the proofs is not present in the supplied text, which is an omitted-support issue, not a circular one. The only self-referential element is the citation of the authors' own FedBAT [35] in Sec. II.B, which the paper admits is a similar mechanism; that citation is not used to justify the empirical accuracy claim, and it actually weakens the 'pioneering direction' claim. Hence no equation or fitted parameter reduces to the target result. Score 2 reflects the minor, non-load-bearing self-citation rather than any circular derivation.
Axiom & Free-Parameter Ledger
free parameters (4)
- Quantization bit width m (downlink bpp) =
3 for FMNIST/SVHN, 4 for CIFAR-10/CIFAR-100/TinyImageNet
- Learning rate =
0.01 for all datasets
- Number of local epochs =
3 (6 in the 200-client setting)
- Bit selection strategy =
cyclic activation of bits (FedBiF-1/4)
axioms (3)
- ad hoc to paper Straight-through estimator sets d theta_hat / d v_i = 1, treating the quantizer as identity in backpropagation.
- standard math The convergence analysis assumes bounded gradients, L-smoothness, bounded diameter of virtual bits, and bounded model norm (Assumptions 1-4).
- domain assumption Uniform symmetric quantization with alpha = ||theta||_infinity / 2^{m-1} and clamp range [-2^{m-1}, 2^{m-1}-1].
invented entities (2)
-
virtual bit v_i
no independent evidence
-
precomputed frozen-bits sum s_t
no independent evidence
read the original abstract
Federated learning (FL) is an emerging distributed machine learning paradigm that enables collaborative model training without sharing local data. Despite its advantages, FL suffers from substantial communication overhead, which can affect training efficiency. Recent efforts have mitigated this issue by quantizing model updates to reduce communication costs. However, most existing methods apply quantization only after local training, introducing quantization errors into the trained parameters and potentially degrading model accuracy. In this paper, we propose Federated Bit Freezing (FedBiF), a novel FL framework that directly learns quantized model parameters during local training. In each communication round, the server first quantizes the model parameters and transmits them to the clients. FedBiF then allows each client to update only a single bit of the multi-bit parameter representation, freezing the remaining bits. This bit-by-bit update strategy reduces each parameter update to one bit while maintaining high precision in parameter representation. Extensive experiments are conducted on five widely used datasets under both IID and Non-IID settings. The results demonstrate that FedBiF not only achieves superior communication compression but also promotes sparsity in the resulting models. Notably, FedBiF attains accuracy comparable to FedAvg, even when using only 1 bit-per-parameter (bpp) for uplink and 3 bpp for downlink communication. The code is available at https://github.com/Leopold1423/fedbif-tpds25.
Figures
Reference graph
Works this paper leans on
-
[1]
Qsgd: Communication-efficient sgd via gradient quantization and encoding.Advances in neural information processing systems, 30, 2017
Dan Alistarh, Demjan Grubic, Jerry Li, Ryota Tomioka, and Milan V ojnovic. Qsgd: Communication-efficient sgd via gradient quantization and encoding.Advances in neural information processing systems, 30, 2017
2017
-
[2]
Mohammad Mohammadi Amiri, Deniz G ¨und¨uz, Sanjeev R. Kulkarni, and H. Vincent Poor. Federated learning with quantized global model updates.CoRR, abs/2006.10672, 2020
Pith/arXiv arXiv 2006
-
[3]
Post training 4- bit quantization of convolutional networks for rapid-deployment
Ron Banner, Yury Nahshan, and Daniel Soudry. Post training 4- bit quantization of convolutional networks for rapid-deployment. In Hanna M. Wallach, Hugo Larochelle, Alina Beygelzimer, Florence d’Alch´e-Buc, Emily B. Fox, and Roman Garnett, editors,Advances in Neural Information Processing Systems 32: Annual Conference on Neural Information Processing Syst...
2019
-
[4]
signsgd with majority vote is communication efficient and fault tolerant
Jeremy Bernstein, Jiawei Zhao, Kamyar Azizzadenesheli, and Anima Anandkumar. signsgd with majority vote is communication efficient and fault tolerant. In7th International Conference on Learning Repre- sentations, ICLR. OpenReview.net, 2019
2019
-
[5]
Beutel, Taner Topal, Akhil Mathur, Xinchi Qiu, Titouan Parcollet, and Nicholas D
Daniel J. Beutel, Taner Topal, Akhil Mathur, Xinchi Qiu, Titouan Parcollet, and Nicholas D. Lane. Flower: A friendly federated learning research framework.CoRR, abs/2007.14390, 2020
Pith/arXiv arXiv 2007
-
[6]
Large-scale machine learning with stochastic gradient descent
L ´eon Bottou. Large-scale machine learning with stochastic gradient descent. In19th International Conference on Computational Statistics, COMPSTAT, pages 177–186. Physica-Verlag, 2010
2010
-
[7]
Adaptive federated dropout: Improving communication efficiency and generalization for federated learning
Nader Bouacida, Jiahui Hou, Hui Zang, and Xin Liu. Adaptive federated dropout: Improving communication efficiency and generalization for federated learning. In2021 IEEE Conference on Computer Commu- nications Workshops, INFOCOM Workshops, pages 1–6. IEEE, 2021
2021
-
[8]
PACT: parameterized clipping activation for quantized neural networks.CoRR, abs/1805.06085, 2018
Jungwook Choi, Zhuo Wang, Swagath Venkataramani, Pierce I-Jen Chuang, Vijayalakshmi Srinivasan, and Kailash Gopalakrishnan. PACT: parameterized clipping activation for quantized neural networks.CoRR, abs/1805.06085, 2018
Pith/arXiv arXiv 2018
-
[9]
Bina- ryconnect: Training deep neural networks with binary weights during propagations
Matthieu Courbariaux, Yoshua Bengio, and Jean-Pierre David. Bina- ryconnect: Training deep neural networks with binary weights during propagations. InAdvances in Neural Information Processing Systems 28: Annual Conference on Neural Information Processing Systems, pages 3123–3131, 2015
2015
-
[10]
Docofl: Downlink compression for cross-device federated learning
Ron Dorfman, Shay Vargaftik, Yaniv Ben-Itzhak, and Kfir Yehuda Levy. Docofl: Downlink compression for cross-device federated learning. In International Conference on Machine Learning, ICML, volume 202, pages 8356–8388. PMLR, 2023
2023
-
[11]
Esser, Jeffrey L
Steven K. Esser, Jeffrey L. McKinstry, Deepika Bablani, Rathinakumar Appuswamy, and Dharmendra S. Modha. Learned step size quantization. In8th International Conference on Learning Representations, ICLR. OpenReview.net, 2020
2020
-
[12]
Deep sparse rectifier neural networks
Xavier Glorot, Antoine Bordes, and Yoshua Bengio. Deep sparse rectifier neural networks. InProceedings of the Fourteenth International Conference on Artificial Intelligence and Statistics, AISTATS, pages 315– 323, 2011
2011
-
[13]
EF21- P and friends: Improved theoretical communication complexity for distributed optimization with bidirectional compression
Kaja Gruntkowska, Alexander Tyurin, and Peter Richt ´arik. EF21- P and friends: Improved theoretical communication complexity for distributed optimization with bidirectional compression. InInternational Conference on Machine Learning, ICML, volume 202, pages 11761– 11807. PMLR, 2023. 11
2023
-
[14]
Quantization robust federated learning for efficient inference on heterogeneous devices.Trans
Kartik Gupta, Marios Fournarakis, Matthias Reisser, Christos Louizos, and Markus Nagel. Quantization robust federated learning for efficient inference on heterogeneous devices.Trans. Mach. Learn. Res., 2023
2023
-
[15]
Delving deep into rectifiers: Surpassing human-level performance on imagenet classification
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Delving deep into rectifiers: Surpassing human-level performance on imagenet classification. In2015 IEEE International Conference on Computer Vision, ICCV, pages 1026–1034. IEEE Computer Society, 2015
2015
-
[16]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In2016 IEEE Conference on Computer Vision and Pattern Recognition, CVPR, pages 770–778. IEEE Computer Society, 2016
2016
-
[17]
Neural networks for machine learning.Coursera video lectures, 2012
Geoffrey Hinton. Neural networks for machine learning.Coursera video lectures, 2012
2012
-
[18]
Robert H ¨onig, Yiren Zhao, and Robert D. Mullins. Dadaquant: Doubly- adaptive quantization for communication-efficient federated learning. In International Conference on Machine Learning, ICML, volume 162, pages 8852–8866. PMLR, 2022
2022
-
[19]
Weinberger
Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q. Weinberger. Densely connected convolutional networks. In2017 IEEE Conference on Computer Vision and Pattern Recognition, CVPR 2017, Honolulu, HI, USA, July 21-26, 2017, pages 2261–2269, 2017
2017
-
[20]
Fedpara: Low-rank hadamard product for communication-efficient federated learning
Nam Hyeon-Woo, Moon Ye-Bin, and Tae-Hyun Oh. Fedpara: Low-rank hadamard product for communication-efficient federated learning. In The Tenth International Conference on Learning Representations, ICLR. OpenReview.net, 2022
2022
-
[21]
Batch normalization: Accelerating deep network training by reducing internal covariate shift
Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. InProceed- ings of the 32nd International Conference on Machine Learning, ICML, pages 448–456, 2015
2015
-
[22]
Sparse random networks for communication-efficient federated learning
Berivan Isik, Francesco Pase, Deniz Gunduz, Tsachy Weissman, and Zorzi Michele. Sparse random networks for communication-efficient federated learning. InThe Eleventh International Conference on Learn- ing Representations, ICLR, 2023
2023
-
[23]
Howard, Hartwig Adam, and Dmitry Kalenichenko
Benoit Jacob, Skirmantas Kligys, Bo Chen, Menglong Zhu, Matthew Tang, Andrew G. Howard, Hartwig Adam, and Dmitry Kalenichenko. Quantization and training of neural networks for efficient integer- arithmetic-only inference. In2018 IEEE Conference on Computer Vision and Pattern Recognition, CVPR, pages 2704–2713. Computer Vision Foundation / IEEE Computer So...
2018
-
[24]
Divyansh Jhunjhunwala, Advait Gadhikar, Gauri Joshi, and Yonina C. Eldar. Adaptive quantization of model updates for communication- efficient federated learning. InIEEE International Conference on Acoustics, Speech and Signal Processing, ICASSP, pages 3110–3114. IEEE, 2021
2021
-
[25]
Model pruning enables efficient federated learning on edge devices.CoRR, abs/1909.12326, 2019
Yuang Jiang, Shiqiang Wang, Bong Jun Ko, Wei-Han Lee, and Leandros Tassiulas. Model pruning enables efficient federated learning on edge devices.CoRR, abs/1909.12326, 2019
Pith/arXiv arXiv 1909
-
[26]
Raghuraman Krishnamoorthi. Quantizing deep convolutional networks for efficient inference: A whitepaper.CoRR, abs/1806.08342, 2018
Pith/arXiv arXiv 2018
-
[27]
Learning multiple layers of features from tiny images.Technical report, University of Toronto, 2009
Alex Krizhevsky and Geoffrey Hinton. Learning multiple layers of features from tiny images.Technical report, University of Toronto, 2009
2009
-
[28]
Tiny imagenet visual recognition challenge,
Ya Le and Xuan Yang. Tiny imagenet visual recognition challenge,
-
[29]
Fedmask: Joint computation and communication-efficient personalized federated learning via heterogeneous masking
Ang Li, Jingwei Sun, Xiao Zeng, Mi Zhang, Hai Li, and Yiran Chen. Fedmask: Joint computation and communication-efficient personalized federated learning via heterogeneous masking. InSenSys ’21: The 19th ACM Conference on Embedded Networked Sensor Systems, pages 42–
-
[30]
H. Li, S. De, Z. Xu, C. Studer, H. Samet, and Goldstein T. Training quantized nets: A deeper understanding. InAdvances in Neural Infor- mation Processing Systems, 2017
2017
-
[31]
Federated learning on non-iid data silos: An experimental study
Qinbin Li, Yiqun Diao, Quan Chen, and Bingsheng He. Federated learning on non-iid data silos: An experimental study. In38th IEEE International Conference on Data Engineering, ICDE, pages 965–978. IEEE, 2022
2022
-
[32]
Masked random noise for communication-efficient federated learning
Shiwei Li, Yingyi Cheng, Haozhao Wang, Xing Tang, Shijie Xu, Weihong Luo, Yuhua Li, Dugang Liu, Xiuqiang He, and Ruixuan Li. Masked random noise for communication-efficient federated learning. InACM International Conference on Multimedia (ACM MM), 2024
2024
-
[33]
Adaptive low-precision training for embeddings in click-through rate prediction
Shiwei Li, Huifeng Guo, Lu Hou, Wei Zhang, Xing Tang, Ruiming Tang, Rui Zhang, and Ruixuan Li. Adaptive low-precision training for embeddings in click-through rate prediction. InThirty-Seventh AAAI Conference on Artificial Intelligence (AAAI), Washington, DC, USA, 2023
2023
-
[34]
The panaceas for improving low-rank decomposition in communication-efficient federated learning
Shiwei Li, Xiandi Luo, Haozhao Wang, Xing Tang, Shijie Xu, Weihong Luo, Yuhua Li, Xiuqiang He, and Ruixuan Li. The panaceas for improving low-rank decomposition in communication-efficient federated learning. InInternational Conference on Machine Learning (ICML), 2025
2025
-
[35]
Fedbat: Communication-efficient federated learning via learnable binarization
Shiwei Li, Wenchao Xu, Haozhao Wang, Xing Tang, Yining Qi, Shijie Xu, Weihong Luo, Yuhua Li, Xiuqiang He, and Ruixuan Li. Fedbat: Communication-efficient federated learning via learnable binarization. InInternational Conference on Machine Learning (ICML), 2024
2024
-
[36]
Towards efficient replay in federated incremental learning
Yichen Li, Qunwei Li, Haozhao Wang, Ruixuan Li, Wenliang Zhong, and Guannan Zhang. Towards efficient replay in federated incremental learning. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 12820–12829, 2024
2024
-
[37]
Re- fed+: A better replay strategy for federated incremental learning.IEEE Transactions on Pattern Analysis and Machine Intelligence, 2025
Yichen Li, Haozhao Wang, Yining Qi, Wei Liu, and Ruixuan Li. Re- fed+: A better replay strategy for federated incremental learning.IEEE Transactions on Pattern Analysis and Machine Intelligence, 2025
2025
-
[38]
Unleashing the power of continual learning on non-centralized devices: A survey.IEEE Communications Surveys & Tutorials, 2025
Yichen Li, Haozhao Wang, Wenchao Xu, Tianzhe Xiao, Hong Liu, Minzhu Tu, Yuying Wang, Xin Yang, Rui Zhang, Shui Yu, et al. Unleashing the power of continual learning on non-centralized devices: A survey.IEEE Communications Surveys & Tutorials, 2025
2025
-
[39]
FedSSI: Rehearsal-free continual federated learning with synergistic synaptic intelligence
Yichen Li, Yuying Wang, Haozhao Wang, Yining Qi, Tianzhe Xiao, and Ruixuan Li. FedSSI: Rehearsal-free continual federated learning with synergistic synaptic intelligence. InForty-second International Conference on Machine Learning, 2025
2025
-
[40]
Personalized federated domain-incremental learning based on adaptive knowledge matching
Yichen Li, Wenchao Xu, Haozhao Wang, Yining Qi, Jingcai Guo, and Ruixuan Li. Personalized federated domain-incremental learning based on adaptive knowledge matching. InEuropean conference on computer vision, pages 127–144. Springer, 2024
2024
-
[41]
Low precision local training is enough for federated learning
Zhiwei Li, Yiqiu LI, Binbin Lin, Zhongming Jin, and Weizhong Zhang. Low precision local training is enough for federated learning. In Advances in Neural Information Processing Systems 38: Annual Con- ference on Neural Information Processing Systems 2024, NeurIPS 2024, Vancouver, BC, Canada, December 10 - 15, 2024, 2024
2024
-
[42]
Communication-efficient learning of deep net- works from decentralized data
Brendan McMahan, Eider Moore, Daniel Ramage, Seth Hampson, and Blaise Ag ¨uera y Arcas. Communication-efficient learning of deep net- works from decentralized data. InProceedings of the 20th International Conference on Artificial Intelligence and Statistics, AISTATS, volume 54, pages 1273–1282. PMLR, 2017
2017
-
[43]
Up or down? adaptive rounding for post-training quantization
Markus Nagel, Rana Ali Amjad, Mart van Baalen, Christos Louizos, and Tijmen Blankevoort. Up or down? adaptive rounding for post-training quantization. InProceedings of the 37th International Conference on Machine Learning, ICML, pages 7197–7206. PMLR, 2020
2020
-
[44]
Reading digits in natural images with unsupervised feature learning
Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. InNIPS Workshop on Deep Learning and Unsupervised Feature Learning, 2011
2011
-
[45]
Nguyen, Quoc Tran-Dinh, Dzung T
Lam M. Nguyen, Quoc Tran-Dinh, Dzung T. Phan, Phuong Ha Nguyen, and Marten van Dijk. A unified convergence analysis for shuffling-type gradient methods.J. Mach. Learn. Res., 22:207:1–207:44, 2021
2021
-
[46]
Fedaqt: Accurate quantized training with fed- erated learning
Renkun Ni, Yonghui Xiao, Phoenix Meadowlark, Oleg Rybakov, Tom Goldstein, Ananda Theertha Suresh, Ignacio Lopez Moreno, Mingqing Chen, and Rajiv Mathews. Fedaqt: Accurate quantized training with fed- erated learning. InICASSP 2024-2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 6100–
2024
-
[47]
Cocofl: Communication- and computation-aware federated learning via partial NN freezing and quantization.Trans
Kilian Pfeiffer, Martin Rapp, Ramin Khalili, and J ¨org Henkel. Cocofl: Communication- and computation-aware federated learning via partial NN freezing and quantization.Trans. Mach. Learn. Res., 2023
2023
-
[48]
Xinchi Qiu, Javier Fern ´andez-Marqu´es, Pedro P. B. de Gusmao, Yan Gao, Titouan Parcollet, and Nicholas Donald Lane. Zerofl: Efficient on-device training for federated learning with local sparsity. InThe Tenth International Conference on Learning Representations, ICLR. OpenReview.net, 2022
2022
-
[49]
Feddq: Communication-efficient federated learning with descending quantiza- tion
Linping Qu, Shenghui Song, and Chi-Ying Tsui. Feddq: Communication-efficient federated learning with descending quantiza- tion. InIEEE Global Communications Conference, GLOBECOM, pages 281–286. IEEE, 2022
2022
-
[50]
Fedpaq: A communication-efficient federated learning method with periodic averaging and quantization
Amirhossein Reisizadeh, Aryan Mokhtari, Hamed Hassani, Ali Jad- babaie, and Ramtin Pedarsani. Fedpaq: A communication-efficient federated learning method with periodic averaging and quantization. InThe 23rd International Conference on Artificial Intelligence and Statistics, AISTATS, volume 108, pages 2021–2031. PMLR, 2020
2021
-
[51]
Fetchsgd: Communication-efficient federated learning with sketching
Daniel Rothchild, Ashwinee Panda, Enayat Ullah, Nikita Ivkin, Ion Stoica, Vladimir Braverman, Joseph Gonzalez, and Raman Arora. Fetchsgd: Communication-efficient federated learning with sketching. In Proceedings of the 37th International Conference on Machine Learning, ICML, volume 119, pages 8253–8265. PMLR, 2020
2020
-
[52]
Vallapuram, Pengyuan Zhou, Young D
Anish K. Vallapuram, Pengyuan Zhou, Young D. Kwon, Lik Hang Lee, Hengwei Xu, and Pan Hui. Hidenseek: Federated lottery ticket via server-side pruning and sign supermask.CoRR, abs/2206.04385, 2022. 12
Pith/arXiv arXiv 2022
-
[53]
Error-compensated sparsification for communication-efficient decentral- ized training in edge environment.IEEE Trans
Haozhao Wang, Song Guo, Zhihao Qu, Ruixuan Li, and Ziming Liu. Error-compensated sparsification for communication-efficient decentral- ized training in edge environment.IEEE Trans. Parallel Distributed Syst., 33(1):14–25, 2022
2022
-
[54]
Dafkd: Domain-aware federated knowledge distillation
Haozhao Wang, Yichen Li, Wenchao Xu, Ruixuan Li, Yufeng Zhan, and Zhigang Zeng. Dafkd: Domain-aware federated knowledge distillation. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 20412–20421, 2023
2023
-
[55]
Fedcda: Federated learning with cross-rounds divergence- aware aggregation
Haozhao Wang, Haoran Xu, Yichen Li, Yuan Xu, Ruixuan Li, and Tian- wei Zhang. Fedcda: Federated learning with cross-rounds divergence- aware aggregation. InThe Twelfth International Conference on Learning Representations, ICLR 2024, Vienna, Austria, May 7-11, 2024, 2024
2024
-
[56]
Fednlr: Federated learning with neuron-wise learning rates
Haozhao Wang, Peirong Zheng, Xingshuo Han, Wenchao Xu, Ruixuan Li, and Tianwei Zhang. Fednlr: Federated learning with neuron-wise learning rates. InProceedings of the 30th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, KDD 2024, Barcelona, Spain, August 25-29, 2024, pages 3069–3080. ACM, 2024
2024
-
[57]
Decoupling general and personalized knowl- edge in federated learning via additive and low-rank decomposition
Xinghao Wu, Xuefeng Liu, Jianwei Niu, Haolin Wang, Shaojie Tang, Guogang Zhu, and Hao Su. Decoupling general and personalized knowl- edge in federated learning via additive and low-rank decomposition. In Proceedings of the 32nd ACM International Conference on Multimedia, 2024
2024
-
[58]
Bold but cautious: Unlocking the potential of personalized federated learning through cautiously aggressive collaboration
Xinghao Wu, Xuefeng Liu, Jianwei Niu, Guogang Zhu, and Shaojie Tang. Bold but cautious: Unlocking the potential of personalized federated learning through cautiously aggressive collaboration. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), 2023
2023
-
[59]
pfedgf: Enabling personalized federated learning via gradient fusion
Xinghao Wu, Jianwei Niu, Xuefeng Liu, Tao Ren, Zhangmin Huang, and Zhetao Li. pfedgf: Enabling personalized federated learning via gradient fusion. In2022 IEEE International Parallel and Distributed Processing Symposium (IPDPS), pages 639–649, 2022
2022
-
[60]
The diversity bonus: Learning from dissimilar clients in personalized federated learning.IEEE Transactions on Neural Networks and Learning Systems, 2025
Xinghao Wu, Jianwei Niu, Xuefeng Liu, Guogang Zhu, Shaojie Tang, Wanyu Lin, and Jiannong Cao. The diversity bonus: Learning from dissimilar clients in personalized federated learning.IEEE Transactions on Neural Networks and Learning Systems, 2025
2025
-
[61]
Han Xiao, Kashif Rasul, and Roland V ollgraf. Fashion-mnist: a novel image dataset for benchmarking machine learning algorithms.CoRR, abs/1708.07747, 2017
Pith/arXiv arXiv 2017
-
[62]
Greenewald, Trong Nghia Hoang, and Yasaman Khazaeni
Mikhail Yurochkin, Mayank Agarwal, Soumya Ghosh, Kristjan H. Greenewald, Trong Nghia Hoang, and Yasaman Khazaeni. Bayesian nonparametric federated learning of neural networks. InProceedings of the 36th International Conference on Machine Learning, ICML, volume 97, pages 7252–7261. PMLR, 2019. Shiwei Lireceived the bachelor’s degree from Bei- jing Universi...
2019
-
[2015]
Stanford CS231n Course Project
-
[2019]
His research interests include decision making, deep learning, and optimization algorithms
He worked at Ant Group, China, on machine learning algorithms for recommender systems from 2019 to 2025. His research interests include decision making, deep learning, and optimization algorithms. Dr. Li received the Syracuse University Graduate Fellowship Award in 2014 and the All University Doctoral Prize in 2018 by Syracuse University for superior achi...
2019
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.