REVIEW 3 major objections 5 minor 28 references
Visual prompt tokens can realign non-IID features so a single closed-form least-squares solve works for one-shot federated learning.
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-10 08:36 UTC pith:ABZ4YC4H
load-bearing objection Solid engineering patch that makes analytic one-shot FL usable under non-IID by treating shallow visual prompts as local feature rectifiers; the math is standard, the gains are real, and the residual prompt-mismatch risk is the only real soft spot. the 3 major comments →
FedOPAL: One-Shot Federated Learning via Analytic Visual Prompt Tuning
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
When visual prompt tokens are optimized locally under a proximal constraint and then averaged, they act as distribution modulators that map heterogeneous client features onto a common linearly separable manifold; the classic analytic federated-learning closed form therefore remains valid and yields competitive accuracy after a single round.
What carries the argument
FedOPAL’s dual aggregation: clients upload both the optimized visual prompts and the local matrices R_k, C_k; the server averages the prompts element-wise and solves W* = (sum R_k + λI)^(-1)(sum C_k).
Load-bearing premise
Averaging a handful of locally optimized prompt tokens is enough to restore a single linearly separable feature space for every client, so that one global least-squares solve is still optimal.
What would settle it
On a non-IID partition where the averaged global prompt leaves client-wise feature clouds still misaligned (measurable by a large increase in the condition number of the summed R matrix or by a sharp drop in linear separability of held-out client features), the closed-form classifier accuracy would fall well below iterative baselines.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. FedOPAL addresses one-shot federated learning under Non-IID data by combining shallow visual prompt tuning (VPT) with analytic (closed-form least-squares) classifier aggregation. Clients freeze a CLIP ViT-B/16 backbone, optimize a small set of visual prompt tokens under a proximal CE objective (Eq. 6), then extract autocorrelation and cross-correlation statistics (Eq. 7) from the prompt-rectified features. The server averages the prompts (Eq. 8) and solves the regularized least-squares problem for a global linear head (Eq. 9). The paper claims this restores the linear-separability assumption of analytic FL, yields large gains over pure analytic baselines (AFL, FedCGS, FedPFT) on CIFAR-10/100 and DTD across Dirichlet heterogeneity levels, and matches or exceeds KD/generator OFL methods while keeping a single communication round and zero server-side training cost.
Significance. If the central claim holds, the work supplies a practical engineering pattern for deploying large foundation models in bandwidth-constrained edge settings: clients perform only lightweight prompt adaptation, the server performs pure linear algebra, and communication is limited to one round of statistics plus tiny prompts. The closed-form aggregation is correctly stated, the empirical gains over pure analytic baselines are large and consistent on natural-image and texture benchmarks, and the design cleanly separates feature rectification from classifier learning. Code is promised. These strengths make the paper a useful contribution to the one-shot FL literature even if residual prompt-feature misalignment remains incompletely characterized.
major comments (3)
- §III.B (Eqs. 6–9) and inference (Eq. 10): each client’s statistics R_k, C_k are extracted under a distinct local prompt P_k, yet the server solves the global least-squares problem on the sum of those heterogeneous statistics while separately averaging the prompts into P_global. At test time every client extracts features with P_global. Consequently W* is exactly optimal only for the mixture of local feature maps, not necessarily for the single map induced by P_global. The proximal term is intended to keep the P_k close, but the manuscript never reports prompt distances, feature MMD/CKA between local and global prompts, or an ablation that re-extracts statistics under the averaged prompt. Without such evidence the explanation that VPT “restores the linear-separability assumption of AFL” remains incompletely verified and is load-bearing for the central claim.
- Tables I–III: all reported accuracies lack error bars, multi-seed averages, or statistical significance tests. Given that local prompt optimization is stochastic and the Dirichlet partitions are random, single-run numbers (especially the large claimed margins over FedCGS on CIFAR-100 and DTD) cannot be assessed for reliability. At least three independent seeds with standard deviations are needed for the main tables.
- Table II, SVHN rows: FedOPAL underperforms FedCGS by a substantial margin (e.g., 47.05 vs 57.45 at α=0.1). The text attributes this to CLIP’s domain gap, yet the same frozen backbone is used for all methods; the discrepancy therefore also questions how generally “shallow VPT + prompt averaging” restores a common linearly separable manifold. A short analysis of feature alignment (or failure thereof) on SVHN would strengthen the paper’s claims about when the method succeeds.
minor comments (5)
- Abstract and §I claim “accuracy comparable to state-of-the-art iterative methods,” yet Table I shows Co-Boosting and DENSE collapsing under Non-IID; the comparison set should include stronger recent iterative OFL or multi-round prompt-FL baselines for a fairer statement.
- §III.A.2 and Eq. (5): the precise insertion point of the M=10 prompt tokens (between class token and patches after positional embedding) is described, but the effect of alternative insertion strategies (deep VPT, prefix vs. infix) is never ablated; a one-sentence justification or pointer would help.
- Table III header states “default configuration is μ=0.1, E=5, λ=0,” yet the text and other tables use λ=10^{-6}; reconcile the default value.
- Code link points to “FLICS” rather than “FedOPAL”; clarify repository name and ensure the release matches the described algorithm.
- Typographical issues: “basic models” → “foundation models” (abstract); “graph regularization parameter r_g is set to 0” appears without definition; occasional missing spaces after periods.
Circularity Check
No circularity: classical closed-form least-squares aggregation after independent local VPT; empirical results do not reduce to fitted inputs or self-defined quantities.
full rationale
FedOPAL is an empirical systems paper. The global classifier is the textbook ridge-regression closed form (Eqs. 2/9) obtained by summing client autocorrelation and cross-correlation matrices; this identity holds for any features and is not derived from, nor fitted to, the reported accuracies. Local prompts are optimized by ordinary CE + proximal loss (Eq. 6) and then frozen before statistics are extracted; the subsequent element-wise average (Eq. 8) and analytic solve are algebraic post-processing steps, not predictions that recover a quantity already used in the fit. Hyper-parameters (µ, λ, E) are ablated on held-out accuracy tables rather than smuggled into a claimed first-principles result. Citations to AFL, VPT and prior OFL surveys supply background or baselines; none is a uniqueness theorem or ansatz that forces the present claims. The paper therefore contains no self-definitional loop, no fitted-input-called-prediction, and no load-bearing self-citation chain. Residual prompt-feature misalignment after averaging is a possible correctness risk, not circularity.
Axiom & Free-Parameter Ledger
free parameters (5)
- proximal coefficient μ =
0.1
- analytic regularization λ =
1e-6
- number of visual prompt tokens M =
10
- local epochs E =
5
- Dirichlet concentration α and client count C =
C=10, α=0.1 (default)
axioms (4)
- domain assumption When features h = f(x) from a frozen backbone are high-quality and linearly separable, the global L2-regularized MSE classifier has the closed-form solution W* = (Σ R_k + λI)^{-1} (Σ C_k).
- ad hoc to paper Shallow visual prompts inserted between the class token and patch embeddings can steer a frozen ViT so that heterogeneous client features become sufficiently aligned for that closed-form solution.
- ad hoc to paper Element-wise averaging of client prompts yields a global prompt that preserves task-aligned subspaces because clients share the same pretrained embedding space.
- domain assumption CLIP ViT-B/16 pretrained features provide a sufficiently strong prior for natural-image and texture classification under one-shot federation.
invented entities (2)
-
FedOPAL dual-aggregation pipeline (proximal VPT + analytic statistics)
no independent evidence
-
Visual prompts as distribution modulators / feature rectifiers
no independent evidence
read the original abstract
With the widespread deployment of basic models in edge intelligence, communication bandwidth has become a core bottleneck restricting the scalability of federated learning. Although one-shot federated learning alleviates this problem by minimizing communication rounds, existing iterative fine-tuning or knowledge distillation methods still face challenges such as high server-side computational costs and hyperparameter sensitivity. Analytical federated learning achieves efficient gradientfree aggregation using least-squares closed-form solutions, but in environments with non-independent and identically distributed data, its static feature assumptions fail, leading to feature manifold misalignment and severely impairing model performance. To address this contradiction, this paper proposes the FedOPAL framework. This framework adapts the visual prompts as feature rectifiers, actively correcting the feature distribution of heterogeneous data to a linearly separable space by applying local proximal constraints, thereby satisfying the theoretical assumptions of analytical federated learning. Experimental results show that FedOPAL not only significantly outperforms the original analytical methods on several benchmarks, but also achieves accuracy comparable to state-of-the-art iterative methods while maintaining zero server-side training costs, providing a new engineering paradigm for efficient collaboration of large models on the edge.
Figures
Reference graph
Works this paper leans on
-
[1]
Federated learning and differential privacy for medical image analysis,
M. Adnan, S. Kalra, J. C. Cresswell, G. W. Taylor, and H. R. Tizhoosh, “Federated learning and differential privacy for medical image analysis,” Scientific reports, vol. 12, no. 1, p. 1953, 2022
work page 1953
-
[2]
J. Whitmore, P. Mehra, J. Yang, and E. Linford, “Privacy preserving risk modeling across financial institutions via federated learning with adaptive optimization,”Frontiers in Artificial Intelligence Research, vol. 2, no. 1, pp. 35–43, 2025
work page 2025
-
[3]
Federated learning for the internet of things: Applications, challenges, and opportunities,
T. Zhang, L. Gao, C. He, M. Zhang, B. Krishnamachari, and A. S. Avestimehr, “Federated learning for the internet of things: Applications, challenges, and opportunities,”IEEE Internet of Things Magazine, vol. 5, no. 1, pp. 24–29, 2022
work page 2022
-
[4]
An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale
A. Dosovitskiy, L. Beyer, A. Kolesnikov, D. Weissenborn, X. Zhai, T. Unterthiner, M. Dehghani, M. Minderer, G. Heigold, S. Gelly, J. Uszkoreit, and N. Houlsby, “An image is worth 16x16 words: Trans- formers for image recognition at scale,”ArXiv, vol. abs/2010.11929, 2020
work page internal anchor Pith review Pith/arXiv arXiv 2010
-
[5]
Learning transferable visual models from natural language supervision,
A. Radford, J. W. Kim, C. Hallacy, A. Ramesh, G. Goh, S. Agarwal, G. Sastry, A. Askell, P. Mishkin, J. Clark,et al., “Learning transferable visual models from natural language supervision,” inInternational conference on machine learning, pp. 8748–8763, PmLR, 2021
work page 2021
-
[6]
Efficient partitioning vision transformer on edge devices for distributed inference,
X. Liu, Y . Song, X. Li, Y . Sun, H. Lan, Z. Liu, L. Jiang, and J. Li, “Efficient partitioning vision transformer on edge devices for distributed inference,” in2025 IEEE 45th International Conference on Distributed Computing Systems (ICDCS), pp. 286–296, IEEE, 2025
work page 2025
-
[7]
Federated learning for cyber physical systems: a comprehensive survey,
M. K. Quan, P. N. Pathirana, M. Wijayasundara, S. Setunge, D. C. Nguyen, C. G. Brinton, D. J. Love, and H. V . Poor, “Federated learning for cyber physical systems: a comprehensive survey,”IEEE Communications Surveys & Tutorials, 2025
work page 2025
-
[8]
Towards one-shot federated learning: Advances, chal- lenges, and future directions,
F. Amato, L. Qiu, M. Tanveer, S. Cuomo, D. Annunziata, F. Giampaolo, and F. Piccialli, “Towards one-shot federated learning: Advances, chal- lenges, and future directions,”Neurocomputing, vol. 664, p. 132088, 2026
work page 2026
-
[9]
One-shot Federated Learning via Synthetic Distiller-Distillate Communication
J. Zhang, S. Liu, and X. Wang, “One-shot federated learn- ing via synthetic distiller-distillate communication,”arXiv preprint arXiv:2412.05186, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[10]
Dense: Data-free one-shot federated learning,
J. Zhang, C. Chen, B. Li, L. Lyu, S. Wu, S. Ding, C. Shen, and C. Wu, “Dense: Data-free one-shot federated learning,”Advances in Neural Information Processing Systems, vol. 35, pp. 21414–21428, 2022
work page 2022
-
[11]
M. Kang, P. Chikontwe, S. Kim, K. H. Jin, E. Adeli, K. M. Pohl, and S. H. Park, “One-shot federated learning on medical data using knowl- edge distillation with image synthesis and client model adaptation,” in International Conference on Medical Image Computing and Computer- Assisted Intervention, pp. 521–531, Springer, 2023
work page 2023
-
[12]
One-Shot Heterogeneous Federated Learning with Local Model-Guided Diffusion Models
M. Yang, S. Su, B. Li, and X. Xue, “One-shot federated learning with classifier-guided diffusion models,”ArXiv, vol. abs/2311.08870, 2023
work page internal anchor Pith review Pith/arXiv arXiv 2023
-
[13]
Capture global feature statistics for one-shot federated learning,
Z. Guan, Y . Zhou, and X. Gu, “Capture global feature statistics for one-shot federated learning,” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 39, pp. 16942–16950, 2025
work page 2025
-
[14]
Afl: A single-round analytic approach for federated learning with pre-trained models,
R. He, K. Tong, D. Fang, H. Sun, Z. Zeng, H. Li, T. Chen, and H. Zhuang, “Afl: A single-round analytic approach for federated learning with pre-trained models,” inProceedings of the Computer Vision and Pattern Recognition Conference, pp. 4988–4998, 2025
work page 2025
-
[15]
Data-free knowledge distillation for het- erogeneous federated learning,
Z. Zhu, J. Hong, and J. Zhou, “Data-free knowledge distillation for het- erogeneous federated learning,” inInternational conference on machine learning, pp. 12878–12889, PMLR, 2021
work page 2021
-
[16]
Federated learning via decentralized dataset distillation in resource-constrained edge environments,
R. Song, D. Liu, D. Z. Chen, A. Festag, C. Trinitis, M. Schulz, and A. Knoll, “Federated learning via decentralized dataset distillation in resource-constrained edge environments,” in2023 International Joint Conference on Neural Networks (IJCNN), pp. 1–10, IEEE, 2023
work page 2023
-
[17]
Enhancing One-Shot Federated Learning Through Data and Ensemble Co-Boosting
R. Dai, Y . Zhang, A. Li, T. Liu, X. Yang, and B. Han, “Enhancing one- shot federated learning through data and ensemble co-boosting,”arXiv preprint arXiv:2402.15070, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[18]
Navigating Heterogeneity and Privacy in One-Shot Federated Learning with Diffusion Models
M. Mendieta, G. Sun, and C. Chen, “Navigating heterogeneity and privacy in one-shot federated learning with diffusion models,”arXiv preprint arXiv:2405.01494, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[19]
One-shot federated learning with label differential privacy,
Z. Chen, C. Zhou, and Z. Jiang, “One-shot federated learning with label differential privacy,”Electronics, vol. 13, no. 10, p. 1815, 2024
work page 2024
-
[20]
XOR Mixup: Privacy-Preserving Data Augmentation for One-Shot Federated Learning
M. Shin, C. Hwang, J. Kim, J. Park, M. Bennis, and S.-L. Kim, “Xor mixup: Privacy-preserving data augmentation for one-shot federated learning,”arXiv preprint arXiv:2006.05148, 2020
work page internal anchor Pith review Pith/arXiv arXiv 2006
-
[21]
Learning to prompt for vision- language models,
K. Zhou, J. Yang, C. C. Loy, and Z. Liu, “Learning to prompt for vision- language models,”International journal of computer vision, vol. 130, no. 9, pp. 2337–2348, 2022
work page 2022
-
[22]
Global and local prompts coop- eration via optimal transport for federated learning,
H. Li, W. Huang, J. Wang, and Y . Shi, “Global and local prompts coop- eration via optimal transport for federated learning,” inProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pp. 12151–12161, 2024
work page 2024
-
[23]
T. Guo, S. Guo, J. Wang, X. Tang, and W. Xu, “Promptfl: Let federated participants cooperatively learn prompts instead of models–federated learning in age of foundation model,”IEEE Transactions on Mobile Computing, vol. 23, no. 5, pp. 5179–5194, 2023
work page 2023
-
[24]
Pfedprompt: Learning personalized prompt for vision-language models in federated learning,
T. Guo, S. Guo, and J. Wang, “Pfedprompt: Learning personalized prompt for vision-language models in federated learning,” inProceed- ings of the ACM Web Conference 2023, pp. 1364–1374, 2023
work page 2023
-
[25]
Deepafl: Deep analytic federated learning,
J. Tang, Y . Huang, K. Fan, F. Han, J. Li, J. Xu, R. He, A. Liu, H. H. Song, H. Zhuang,et al., “Deepafl: Deep analytic federated learning,” arXiv preprint arXiv:2603.00579, 2026
-
[26]
M. Jia, L. Tang, B.-C. Chen, C. Cardie, S. Belongie, B. Hariharan, and S.-N. Lim, “Visual prompt tuning,” inEuropean Conference on Computer Vision (ECCV), pp. 709–727, Springer, 2022
work page 2022
-
[27]
Markov chain sampling methods for dirichlet process mixture models,
R. M. Neal, “Markov chain sampling methods for dirichlet process mixture models,”Journal of computational and graphical statistics, vol. 9, no. 2, pp. 249–265, 2000
work page 2000
-
[28]
Parametric Feature Transfer: One-shot Federated Learning with Foundation Models
M. Beitollahi, A. Bie, S. Hemati, L. M. Brunswic, X. Li, X. Chen, and G. Zhang, “Parametric feature transfer: One-shot federated learning with foundation models,”arXiv preprint arXiv:2402.01862, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.