REVIEW 3 major objections 6 minor 83 references
Even after global correction, federated AdamW still over-trusts many coordinates; reallocating step sizes by a joint local-global trust score fixes that mismatch and lifts Transformer accuracy most under strong non-IID data.
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 · grok-4.5
2026-07-12 00:06 UTC pith:WFVHCD5U
load-bearing objection Solid, practical extension of federated AdamW: global-aware coordinate reweighting of a corrected direction, with broad empirical gains especially on Transformers under strong non-IID; theory is standard and the trust signal is heuristic but ablated. the 3 major comments →
FedACT: Federated Adaptive Coordinate Trust Modulation for Robust Transformer Training under Data Heterogeneity
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Coordinate trust mismatch is a real residual failure mode of federated AdamW: after round-level global-local correction, different coordinates of the corrected adaptive update remain highly uneven in reliability under heterogeneous data. FedACT shows that preserving that dense corrected direction while softly reallocating its magnitudes according to a global-aware trust score (product of corrected direction and current gradient) improves accuracy, communication efficiency and client-update consistency, especially for Transformers under strong non-IID partitions.
What carries the argument
Global-aware ACT: after forming the corrected AdamW direction u = (1-ρ) u_loc + ρ Δ_G, compute the coordinate trust score s = u ⊙ g, then apply a soft top-τ mask φ that multiplies high-score coordinates by α > 1 and the rest by γ ∈ (0,1), so the update becomes φ ⊙ u rather than uniform u.
Load-bearing premise
That the product of the corrected direction and the current stochastic gradient is a good enough trust signal to decide which coordinates deserve larger steps, and that a fixed soft top-τ reallocation works without adapting the trust ratio online.
What would settle it
On the same ViT or Swin CIFAR-100 Dir-0.1 runs, replace the trust score s = u ⊙ g with a random or purely local-gradient score while keeping every other hyper-parameter fixed; if the accuracy and direction-consistency gains over FedAdamW disappear, the claimed global-aware coordinate mechanism is not doing the work.
If this is right
- Federated AdamW pipelines for Transformers should treat coordinate-level magnitude reallocation as a standard complement to round-level global correction, not as an optional extra.
- Under strong Dirichlet heterogeneity the largest accuracy lifts appear precisely on vision Transformers and Swin variants, so practitioners can expect the biggest payoff on those architectures.
- Soft attenuation of low-trust coordinates is preferable to hard masking; keeping small non-zero steps preserves useful local signal while still reducing over-trust of the unreliable tail.
- The same mechanism improves both communication-round efficiency in LLM pre-training and objective metrics in LoRA-based federated instruction tuning and preference alignment.
Where Pith is reading between the lines
- If the trust score is reliable, online schedules that shrink the trusted fraction early and enlarge it later (or adapt τ from measured score concentration) could further reduce the stationary neighborhood in the analysis.
- Block- or matrix-aware analogues of ACT would be needed before the same idea can safely sit on top of matrix-structured optimizers that do not treat coordinates independently.
- The concentration of positive score mass observed even after FedAdamW suggests that other dense adaptive federated methods may silently over-trust long unreliable tails; a lightweight coordinate diagnostic could become a standard monitoring tool.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper identifies coordinate trust mismatch in federated AdamW training: after round-level global-local correction, coordinates of the corrected adaptive direction remain highly uneven in reliability under non-IID data. FedACT forms a globally corrected AdamW direction u = (1-ρ)u_loc + ρΔ_G and reallocates magnitudes via a coordinate-wise trust score s = u ⊙ g, amplifying the top-τ coordinates (factor α) while softly attenuating the rest (factor γ > 0). The method is evaluated on ViT-Tiny, Swin-Lite, ResNet-18, Llama2 pre-training (60M/130M/250M), and LoRA SFT/DPO fine-tuning, with ablations on FedACT-Local, τ, γ, and ρ, plus direction-consistency diagnostics. A nonconvex analysis recovers the standard O(1/√RK) rate under full participation, λ=0, and a predictable diagonal preconditioner.
Significance. If the empirical pattern holds, FedACT supplies a useful and complementary design axis for federated adaptive optimization of Transformers: coordinate-level trust allocation on top of existing round-level correction (FedAdamW/FedLADA-style). The experimental scope is a genuine strength—vision Transformers and CNNs under Dirichlet partitions, Chinchilla-matched LLM pre-training, and parameter-efficient SFT/DPO—together with mechanism plots (direction consistency, positive score ratio, top-p score mass) and ablations that separate local MGUP-style reweighting from global-aware selection. The contribution is primarily algorithmic and empirical rather than theoretical; the analysis does not establish a tighter neighborhood for ACT versus dense corrected AdamW, but the practical gains under strong heterogeneity would still matter for federated Transformer training.
major comments (3)
- Eq. (7)–(8) and the ACT construction: the central premise is that the instantaneous product s = u ⊙ g is a sufficiently reliable coordinate trust signal under non-IID stochastic gradients. Under client bias and high variance, this product can mark only transiently aligned coordinates. Table 4 already shows severe collapse at τ=0.3 and clear degradation at τ=0.7, so the fixed soft top-τ policy is load-bearing and brittle. The manuscript should either (i) add diagnostics that the selected coordinates remain stable across local steps/clients (e.g., Jaccard of top-τ sets, correlation of s with multi-step descent), or (ii) discuss failure modes and when s is expected to be noisy, rather than treating the default τ=0.5 as generally adequate.
- Theorem 1 / Appendix B: the analysis recovers the standard nonconvex O(1/√RK) rate under full participation, λ=0, and F_t-measurable H_t, with an ACT-dependent neighborhood term B_{ρ,τ} that does not improve on dense corrected AdamW. The claim that coordinate trust allocation “effectively complements” round-level correction is therefore empirical, not theoretical. The main text should state this limitation explicitly next to Theorem 1 (not only in Appendix F), and avoid language that suggests the rate or neighborhood analysis validates the ACT bias term.
- Table 3 and Figure 3 (FedACT-Local vs FedACT): the ablation is important and supports global-aware selection, but it is reported only on CIFAR-100 for ViT-Tiny/Swin-Lite. Given that the largest claimed gains are under Dir-0.1 and on Transformers/LLMs, the same Local vs full comparison should be extended at least to one strong-heterogeneity Transformer setting and one LLM setting so that the “global-aware” part of the claim is not under-supported relative to the accuracy tables.
minor comments (6)
- Default ACT scaling: the text says “MGUP-style default α=1/τ and γ=τ”, while Table 4 and the sensitivity discussion often use γ=0.5 with τ=0.5. Please state the exact default (α,γ,τ,ρ) used in all main tables in one place (e.g., Experimental Setup or Algorithm 1 caption).
- Figure 1 caption and panels (c)–(d): “Top-1 Score Mass” should be defined with the same p as Appendix A (Top-p); if p=0.01, say so in the figure caption to match Eq. (18).
- Algorithm 1 line 12: bias correction uses (1-β_2^t) with a global step t, while m uses k; a one-line note that t is the global Adam step counter would avoid confusion with local step k.
- Related Work: Magma (Joo et al. 2026) and MGUP are cited appropriately; a brief sentence on how FedACT differs from block-level Magma (coordinate vs block, federated global signal) would help readers place the method.
- Appendix F Limitations is candid (Muon, scale of LLMs, fixed hyperparameters, partial participation). Consider promoting a short paragraph of that content into the main Conclusion so the scope is visible without the appendix.
- Typos/consistency: abstract “globally corrected AdamW updatesmayremain” spacing; occasional missing spaces after commas in the motivation section; ensure Dir-0.6/0.3/0.1 notation is uniform in tables and figures.
Circularity Check
No significant circularity: FedACT is an independently defined algorithmic reweighting evaluated on external accuracy/PPL metrics; diagnostics motivate but do not force the claimed gains.
full rationale
The paper’s load-bearing chain is: (i) observe that even after round-level global–local correction, coordinate-wise products s = u ⊙ g remain highly non-uniform (motivation figures); (ii) define ACT reallocation of magnitudes of a dense corrected AdamW direction via a top-τ soft mask (Eqs. 7–9); (iii) report accuracy/perplexity gains vs. FedAdamW and other baselines on held-out vision and LLM tasks; (iv) show improved direction consistency as a post-hoc mechanism check; (v) prove a standard nonconvex O(1/√RK) rate under full participation and predictable preconditioner. None of these steps reduces a claimed prediction to its own inputs by construction. The trust score and ACT coefficients are design choices, not parameters fitted to the accuracy tables and then re-presented as predictions. Direction consistency, positive-score ratio, and top-p score mass are measured diagnostics, not objectives that the method is optimized to match. Self-citations to FedAdamW/FedLADA supply prior baselines and the global-correction scaffolding that FedACT extends; they are not uniqueness theorems that forbid alternatives or force the empirical margins. MGUP-style α=1/τ, γ=τ is an adopted centralized ansatz made global-aware, not a self-derived identity. Convergence recovers a classical rate and does not claim that the ACT bias term is uniquely optimal. The paper is therefore self-contained against external benchmarks with no circular derivation.
Axiom & Free-Parameter Ledger
free parameters (4)
- trust ratio τ =
0.5 (default)
- attenuation factor γ =
0.5 (default)
- global guidance strength ρ =
0.5 (default)
- amplification α =
1/τ
axioms (4)
- domain assumption L-smooth local and global objectives, unbiased stochastic gradients with bounded variance σ², bounded client heterogeneity ζ², and uniformly bounded stochastic gradients G.
- ad hoc to paper Full client participation and zero weight decay (λ=0) in the convergence analysis; predictable (F_t-measurable) diagonal AdamW preconditioner H_t.
- domain assumption Dirichlet label partitioning adequately models the relevant non-IID regime for vision and language federated tasks.
- domain assumption AdamW first- and second-moment updates with bias correction remain the correct local adaptive base under federated Transformer training.
invented entities (2)
-
coordinate trust mismatch
no independent evidence
-
global-aware coordinate trust score s = u ⊙ g
no independent evidence
read the original abstract
Federated Transformer training increasingly relies on local AdamW, whose adaptive updates can provide much stronger local progress than SGD-based training. However, under heterogeneous client data, even globally corrected AdamW updates may remain highly uneven in coordinate-wise reliability. We refer to this phenomenon as coordinate trust mismatch. Existing federated adaptive optimizers mainly address mismatch at the client-update or communication-round level, but still apply the corrected adaptive direction densely and uniformly across coordinates. In this paper, we propose FedACT, a global-aware coordinate trust modulation method for federated AdamW training. FedACT first forms a globally corrected adaptive direction and then reallocates update magnitudes according to a coordinate-wise trust score, assigning larger steps to coordinates jointly supported by local gradients and global correction, while preserving smaller non-zero updates on the remaining coordinates. Extensive experiments on federated vision Transformers, CNNs, LLM pre-training, and LLM fine-tuning show that FedACT consistently improves over strong federated adaptive baselines, with the largest gains on Transformer models under stronger data heterogeneity. Mechanism analyses further show that FedACT improves cross-client direction consistency, suggesting that coordinate-level trust allocation effectively complements round-level global-local correction. Code will be released.
Figures
Reference graph
Works this paper leans on
-
[4]
Chang, D.; and Yuan, G. 2025. MGUP: A Momentum-Gradient Alignment Update Policy for Stochastic Optimization. In The Thirty-ninth Annual Conference on Neural Information Processing Systems
2025
-
[6]
Chen, X.; Liang, C.; Huang, D.; Real, E.; Wang, K.; Pham, H.; Dong, X.; Luong, T.; Hsieh, C.-J.; Lu, Y.; et al. 2023. Symbolic discovery of optimization algorithms. Advances in neural information processing systems, 36: 49205--49233
2023
-
[7]
E.; et al
Chiang, W.-L.; Li, Z.; Lin, Z.; Sheng, Y.; Wu, Z.; Zhang, H.; Zheng, L.; Zhuang, S.; Zhuang, Y.; Gonzalez, J. E.; et al. 2023. Vicuna: An open-source chatbot impressing gpt-4 with 90\ See https://vicuna. lmsys. org (accessed 14 April 2023), 2(3): 6
2023
-
[10]
He, K.; Zhang, X.; Ren, S.; and Sun, J. 2016. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 770--778
2016
-
[13]
J.; Shen, Y.; Wallis, P.; Allen-Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; Chen, W.; et al
Hu, E. J.; Shen, Y.; Wallis, P.; Allen-Zhu, Z.; Li, Y.; Wang, S.; Wang, L.; Chen, W.; et al. 2022. Lora: Low-rank adaptation of large language models. Iclr, 1(2): 3
2022
-
[15]
Jordan, K.; Jin, Y.; Boza, V.; You, J.; Cesista, F.; Newhouse, L.; and Bernstein, J. 2024. Muon: An optimizer for hidden layers in neural networks
2024
-
[17]
P.; Kale, S.; Mohri, M.; Reddi, S.; Stich, S.; and Suresh, A
Karimireddy, S. P.; Kale, S.; Mohri, M.; Reddi, S.; Stich, S.; and Suresh, A. T. 2020 b . Scaffold: Stochastic controlled averaging for federated learning. In International conference on machine learning, 5132--5143. PMLR
2020
-
[18]
Kim, G.; Kim, J.; and Han, B. 2024. Communication-efficient federated learning with accelerated client gradient. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, 12385--12394
2024
-
[20]
Krizhevsky, A.; Hinton, G.; et al. 2009. Learning multiple layers of features from tiny images
2009
-
[21]
Le, Y.; Yang, X.; et al. 2015. Tiny imagenet visual recognition challenge. CS 231N, 7(7): 3
2015
-
[22]
K.; Zaheer, M.; Sanjabi, M.; Talwalkar, A.; and Smith, V
Li, T.; Sahu, A. K.; Zaheer, M.; Sanjabi, M.; Talwalkar, A.; and Smith, V. 2020. Federated optimization in heterogeneous networks. Proceedings of Machine learning and systems, 2: 429--450
2020
-
[24]
Liu, J.; Shang, F.; Liu, H.; Tian, Y.; Liu, Y.; Liu, J.; Zhu, K.; and Lin, Z. 2026. Fedadamw: A communication-efficient optimizer with convergence and generalization guarantees for federated large models. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 40, 23748--23756
2026
-
[26]
Liu, Z.; Lin, Y.; Cao, Y.; Hu, H.; Wei, Y.; Zhang, Z.; Lin, S.; and Guo, B. 2021. Swin transformer: Hierarchical vision transformer using shifted windows. In Proceedings of the IEEE/CVF international conference on computer vision, 10012--10022
2021
-
[28]
McMahan, B.; Moore, E.; Ramage, D.; Hampson, S.; and y Arcas, B. A. 2017. Communication-efficient learning of deep networks from decentralized data. In Artificial intelligence and statistics, 1273--1282. Pmlr
2017
-
[29]
Ozfatura, E.; Ozfatura, K.; and G \"u nd \"u z, D. 2021. Fedadc: Accelerated federated learning with drift control. In 2021 IEEE International Symposium on Information Theory (ISIT), 467--472. IEEE
2021
-
[30]
Raffel, C.; Shazeer, N.; Roberts, A.; Lee, K.; Narang, S.; Matena, M.; Zhou, Y.; Li, W.; and Liu, P. J. 2020. Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of machine learning research, 21(140): 1--67
2020
-
[32]
Sun, Y.; Shen, L.; Sun, H.; Ding, L.; and Tao, D. 2023. Efficient federated learning via local adaptive amended optimizer with linear speedup. IEEE Transactions on Pattern Analysis and Machine Intelligence, 45(12): 14453--14464
2023
-
[33]
Taori, R.; Gulrajani, I.; Zhang, T.; Dubois, Y.; Li, X.; Guestrin, C.; Liang, P.; and Hashimoto, T. B. 2023. Stanford alpaca: An instruction-following llama model
2023
-
[35]
Wang, J.; Liu, Q.; Liang, H.; Joshi, G.; and Poor, H. V. 2020. Tackling the objective inconsistency problem in heterogeneous federated optimization. Advances in neural information processing systems, 33: 7611--7623
2020
-
[37]
A.; Khashabi, D.; and Hajishirzi, H
Wang, Y.; Kordi, Y.; Mishra, S.; Liu, A.; Smith, N. A.; Khashabi, D.; and Hajishirzi, H. 2023. Self-instruct: Aligning language models with self-generated instructions. In Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: long papers), 13484--13508
2023
-
[38]
Wang, Y.; Lin, L.; and Chen, J. 2022. Communication-efficient adaptive federated learning. In International conference on machine learning, 22802--22838. PMLR
2022
-
[40]
Ye, R.; Ge, R.; Zhu, X.; Chai, J.; Du, Y.; Liu, Y.; Wang, Y.; and Chen, S. 2024 a . Fedllm-bench: Realistic benchmarks for federated learning of large language models. Advances in Neural Information Processing Systems, 37: 111106--111130
2024
-
[41]
Ye, R.; Wang, W.; Chai, J.; Li, D.; Li, Z.; Xu, Y.; Du, Y.; Wang, Y.; and Chen, S. 2024 b . Openfedllm: Training large language models on decentralized private data via federated learning. In Proceedings of the 30th ACM SIGKDD conference on knowledge discovery and data mining, 6137--6147
2024
-
[42]
Zhang, X.; Hong, M.; Dhople, S.; Yin, W.; and Liu, Y. 2021. FedPD: A federated learning framework with adaptivity to non-IID data. IEEE Transactions on Signal Processing, 69: 6055--6070
2021
-
[43]
Zhang, Y.; Chen, C.; Ding, T.; Li, Z.; Sun, R.; and Luo, Z.-Q. 2024 a . Why transformers need adam: A hessian perspective. Advances in neural information processing systems, 37: 131786--131823
2024
-
[45]
Zhou, P.; Feng, J.; Ma, C.; Xiong, C.; Hoi, S. C. H.; et al. 2020. Towards theoretically understanding why sgd generalizes better than adam in deep learning. Advances in Neural Information Processing Systems, 33: 21285--21296
2020
-
[46]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Fedadamw: A communication-efficient optimizer with convergence and generalization guarantees for federated large models , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[47]
Advances in neural information processing systems , volume=
Why transformers need adam: A hessian perspective , author=. Advances in neural information processing systems , volume=
-
[48]
Advances in Neural Information Processing Systems , volume=
Towards theoretically understanding why sgd generalizes better than adam in deep learning , author=. Advances in Neural Information Processing Systems , volume=
-
[49]
arXiv preprint arXiv:1412.6980 , year=
Adam: A method for stochastic optimization , author=. arXiv preprint arXiv:1412.6980 , year=
-
[50]
Advances in neural information processing systems , volume=
Symbolic discovery of optimization algorithms , author=. Advances in neural information processing systems , volume=
-
[51]
2024 , url =
Keller Jordan and Yuchen Jin and Vlado Boza and Jiacheng You and Franz Cesista and Laker Newhouse and Jeremy Bernstein , title =. 2024 , url =
2024
-
[52]
arXiv preprint arXiv:2510.27403 , year=
FedMuon: Accelerating Federated Learning with Matrix Orthogonalization , author=. arXiv preprint arXiv:2510.27403 , year=
-
[53]
arXiv preprint arXiv:2602.19271 , year=
Taming Preconditioner Drift: Unlocking the Potential of Second-Order Optimizers for Federated Learning on Non-IID Data , author=. arXiv preprint arXiv:2602.19271 , year=
-
[54]
arXiv preprint arXiv:1711.05101 , year=
Decoupled weight decay regularization , author=. arXiv preprint arXiv:1711.05101 , year=
-
[55]
IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=
Efficient federated learning via local adaptive amended optimizer with linear speedup , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=. 2023 , publisher=
2023
-
[56]
arXiv preprint arXiv:2411.16085 , year=
Cautious optimizers: Improving training with one line of code , author=. arXiv preprint arXiv:2411.16085 , year=
-
[57]
The Thirty-ninth Annual Conference on Neural Information Processing Systems , year=
MGUP: A Momentum-Gradient Alignment Update Policy for Stochastic Optimization , author=. The Thirty-ninth Annual Conference on Neural Information Processing Systems , year=
-
[58]
2009 , publisher=
Learning multiple layers of features from tiny images , author=. 2009 , publisher=
2009
-
[59]
CS 231N , volume=
Tiny imagenet visual recognition challenge , author=. CS 231N , volume=
-
[60]
Proceedings of the 2013 conference on empirical methods in natural language processing , pages=
Recursive deep models for semantic compositionality over a sentiment treebank , author=. Proceedings of the 2013 conference on empirical methods in natural language processing , pages=
2013
-
[61]
arXiv preprint arXiv:1909.06335 , year=
Measuring the effects of non-identical data distribution for federated visual classification , author=. arXiv preprint arXiv:1909.06335 , year=
Pith/arXiv arXiv 1909
-
[62]
Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
Deep residual learning for image recognition , author=. Proceedings of the IEEE conference on computer vision and pattern recognition , pages=
-
[63]
Proceedings of the IEEE/CVF international conference on computer vision , pages=
Swin transformer: Hierarchical vision transformer using shifted windows , author=. Proceedings of the IEEE/CVF international conference on computer vision , pages=
-
[64]
arXiv preprint arXiv:2010.11929 , year=
An image is worth 16x16 words: Transformers for image recognition at scale , author=. arXiv preprint arXiv:2010.11929 , year=
Pith/arXiv arXiv 2010
-
[65]
arXiv preprint arXiv:1907.11692 , year=
Roberta: A robustly optimized bert pretraining approach , author=. arXiv preprint arXiv:1907.11692 , year=
Pith/arXiv arXiv 1907
-
[66]
Artificial intelligence and statistics , pages=
Communication-efficient learning of deep networks from decentralized data , author=. Artificial intelligence and statistics , pages=. 2017 , organization=
2017
-
[67]
International conference on machine learning , pages=
Scaffold: Stochastic controlled averaging for federated learning , author=. International conference on machine learning , pages=. 2020 , organization=
2020
-
[68]
arXiv preprint arXiv:2106.10874 , year=
Fedcm: Federated learning with client-level momentum , author=. arXiv preprint arXiv:2106.10874 , year=
-
[69]
arXiv preprint arXiv:2003.00295 , year=
Adaptive federated optimization , author=. arXiv preprint arXiv:2003.00295 , year=
Pith/arXiv arXiv 2003
-
[70]
arXiv preprint arXiv:2502.02727 , year=
Gradient Correction in Federated Learning with Adaptive Optimization , author=. arXiv preprint arXiv:2502.02727 , year=
-
[71]
arXiv preprint arXiv:2406.16793 , year=
Adam-mini: Use fewer learning rates to gain more , author=. arXiv preprint arXiv:2406.16793 , year=
-
[72]
International conference on machine learning , pages=
Communication-efficient adaptive federated learning , author=. International conference on machine learning , pages=. 2022 , organization=
2022
-
[73]
Proceedings of Machine learning and systems , volume=
Federated optimization in heterogeneous networks , author=. Proceedings of Machine learning and systems , volume=
-
[74]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Communication-efficient federated learning with accelerated client gradient , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[75]
arXiv preprint arXiv:2509.26337 , year=
FedMuon: Federated Learning with Bias-corrected LMO-based Optimization , author=. arXiv preprint arXiv:2509.26337 , year=
-
[76]
Proceedings of the 30th ACM SIGKDD conference on knowledge discovery and data mining , pages=
Openfedllm: Training large language models on decentralized private data via federated learning , author=. Proceedings of the 30th ACM SIGKDD conference on knowledge discovery and data mining , pages=
-
[77]
Advances in Neural Information Processing Systems , volume=
Fedllm-bench: Realistic benchmarks for federated learning of large language models , author=. Advances in Neural Information Processing Systems , volume=
-
[78]
arXiv preprint arXiv:2307.09288 , year=
Llama 2: Open foundation and fine-tuned chat models , author=. arXiv preprint arXiv:2307.09288 , year=
-
[79]
, author=
Lora: Low-rank adaptation of large language models. , author=. Iclr , volume=
-
[80]
2023 , publisher=
Stanford alpaca: An instruction-following llama model , author=. 2023 , publisher=
2023
-
[81]
arXiv preprint arXiv:2304.12244 , year=
Wizardlm: Empowering large language models to follow complex instructions , author=. arXiv preprint arXiv:2304.12244 , year=
-
[82]
See https://vicuna
Vicuna: An open-source chatbot impressing gpt-4 with 90\ author=. See https://vicuna. lmsys. org (accessed 14 April 2023) , volume=
2023
-
[83]
Journal of machine learning research , volume=
Exploring the limits of transfer learning with a unified text-to-text transformer , author=. Journal of machine learning research , volume=
-
[84]
arXiv preprint arXiv:2203.15556 , volume=
Training compute-optimal large language models , author=. arXiv preprint arXiv:2203.15556 , volume=
-
[85]
arXiv preprint arXiv:2101.11203 , year=
Achieving linear speedup with partial worker participation in non-iid federated learning , author=. arXiv preprint arXiv:2101.11203 , year=
-
[86]
arXiv preprint arXiv:1907.02189 , year=
On the convergence of fedavg on non-iid data , author=. arXiv preprint arXiv:1907.02189 , year=
Pith/arXiv arXiv 1907
-
[87]
arXiv preprint arXiv:1808.07217 , year=
Don't use large mini-batches, use local SGD , author=. arXiv preprint arXiv:1808.07217 , year=
-
[88]
Advances in neural information processing systems , volume=
Accelerating stochastic gradient descent using predictive variance reduction , author=. Advances in neural information processing systems , volume=
-
[89]
Advances in neural information processing systems , volume=
Tackling the objective inconsistency problem in heterogeneous federated optimization , author=. Advances in neural information processing systems , volume=
-
[90]
IEEE Transactions on Signal Processing , volume=
FedPD: A federated learning framework with adaptivity to non-IID data , author=. IEEE Transactions on Signal Processing , volume=. 2021 , publisher=
2021
-
[91]
arXiv preprint arXiv:2111.04263 , year=
Federated learning based on dynamic regularization , author=. arXiv preprint arXiv:2111.04263 , year=
-
[92]
arXiv preprint arXiv:1910.00643 , year=
Slowmo: Improving communication-efficient distributed sgd with slow momentum , author=. arXiv preprint arXiv:1910.00643 , year=
Pith/arXiv arXiv 1910
-
[93]
2021 IEEE International Symposium on Information Theory (ISIT) , pages=
Fedadc: Accelerated federated learning with drift control , author=. 2021 IEEE International Symposium on Information Theory (ISIT) , pages=. 2021 , organization=
2021
-
[94]
arXiv preprint arXiv:1808.05671 , year=
On the convergence of adaptive gradient methods for nonconvex optimization , author=. arXiv preprint arXiv:1808.05671 , year=
-
[95]
arXiv preprint arXiv:2106.02969 , year=
FedNL: Making Newton-type methods applicable to federated learning , author=. arXiv preprint arXiv:2106.02969 , year=
-
[96]
International conference on machine learning , pages=
Distributed second order methods with fast rates and compressed communication , author=. International conference on machine learning , pages=. 2021 , organization=
2021
-
[97]
arXiv preprint arXiv:2602.15322 , year=
On Surprising Effectiveness of Masking Updates in Adaptive Optimizers , author=. arXiv preprint arXiv:2602.15322 , year=
-
[98]
arXiv preprint arXiv:2008.03606 , year=
Mime: Mimicking centralized stochastic algorithms in federated learning , author=. arXiv preprint arXiv:2008.03606 , year=
Pith/arXiv arXiv 2008
-
[99]
Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: long papers) , pages=
Self-instruct: Aligning language models with self-generated instructions , author=. Proceedings of the 61st annual meeting of the association for computational linguistics (volume 1: long papers) , pages=
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.