Pith. sign in

REVIEW 4 major objections 4 minor 29 references

Cluster-Aware Multi-Round Update for Wireless Federated Learning in Heterogeneous Environments

T0 review · 4 major / 4 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read This paper claims that throttling low-contribution clusters to one local update per round suppresses bias accumulation and accelerates convergence of wireless federated learning.

desk verdict Useful heuristic and clean experiments, but the central convergence argument in Theorem 1 has a sign error that reverses the claimed mechanism. read the letter →

arxiv 2505.06268 v2 pith:OCIIVNO7 submitted 2025-05-06 cs.LG cs.AI

classification cs.LGcs.AI
keywords wirelessfederatedlearningnon-IIDdataclustercontributionthresholdlocalupdatefrequencyconvergenceanalysisresourceallocationreinforcementoptimization
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

Federated learning over wireless links degrades when devices have different data and communication quality. This paper groups similar devices into clusters and then lets only high-contribution clusters run several local training rounds per global aggregation, holding low-contribution clusters to a single round. The authors derive a convergence upper bound whose contraction factor is reduced when low-contribution clusters are throttled, and they jointly optimize each cluster's local-round count and transmit power under an energy budget. If the analysis holds, the scheme would improve model accuracy and convergence in exactly the heterogeneous, resource-limited settings where plain federated averaging degrades.

What carries the argument

The load-bearing object is the cluster contribution $\vartheta_c = |D_c| e^{1/W_c}$, where $W_c$ is the Wasserstein distance between the cluster's label distribution and the global label distribution. A threshold $\vartheta_{\mathrm{th}}$ switches each cluster's local update frequency $N_c = 1 + S_c n_c$, with $S_c=1$ if $\vartheta_c \geq \vartheta_{\mathrm{th}}$ and $S_c=0$ otherwise. This contribution score determines which clusters may spend computation on multiple local rounds; the convergence-rate constant $A$ in Theorem 1 is the mechanism through which that choice changes the contraction, and the energy constraint couples $N_c$ to transmit power $p_c$ in the optimization objective.

What would settle it

On the paper's reported MNIST or Fashion-MNIST setup, measure the ratio $\|\nabla F_c(w_c^{[t,n]})\|^2 / \|\nabla F(w^{[t]})\|^2$ over the $n$ local rounds; if any cluster's ratio exceeds $\delta^2$ for $n>0$, inequality (41) fails and the claimed contraction factor $A$ is unsupported.

Watch

Extended reading notes

Core claim

The paper's central claim is Theorem 1: under L-smoothness, μ-strong convexity, and a δ-local dissimilarity assumption, the expected optimality gap after T aggregation rounds satisfies $$\mathbb{E}[F(w[t+1])-F(w^*)] \leq A^T \mathbb{E}[F(w[0])-F(w^*)] + \frac{1-A^T}{1-A}\sum_{c} \frac{$G_c^{2}$ \$sigma_n^{2}$}{$p_c^{2}$ \|h_c\|^2},$$ with $$A = 1 + \sum_{c} N_c\left(\mu L \$lambda^{2}$ \$delta^{2}$ $G_c^{2}$ \$delta_c^{2}$ \sum_{k} G_{k,c}^2 - 2\mu \$\lambda$ \delta G_c \delta_c \sum_{k} G_{k,c}\right).$$ Because low-contribution clusters are taken to have larger dissimilarity factors, forcing their update frequency to $N_c=1$ removes their multi-round bias contribution from $A$; the paper argues this yields a smaller $A$ and faster convergence. The paper further claims that this makes the joint allocation of per-cluster transmit power and local update frequency under a total energy budget a well-posed optimization that can be solved with an actor-critic reinforcement-learning optimizer.

Load-bearing premise

The convergence bound assumes that every local update's gradient stays within a fixed multiple of the global gradient, even after several local rounds; if dissimilarity grows along the local trajectories, the bound and the optimization built on it are not justified.

Editorial extensions

If this is right

  • If the theorem is correct, a cluster below the contribution threshold contributes no multi-round term to the convergence-rate constant, so holding it to one local update reduces the bias-accumulation component of the global error bound.
  • The joint optimization of local update frequency and transmit power gives a concrete answer to the computation-communication tradeoff: within the same total energy budget, solving for both quantities outperforms fixing power and optimizing only local rounds.
  • The two-stage clustering, by SNR first and label distribution second, creates near-IID intra-cluster subsystems, so the corollary's condition $\delta G_c < 1$ can be met by downweighting heterogeneous clusters during aggregation.
  • In highly non-IID settings, the strategy's advantage over unrestricted multi-round updates grows, matching the reported MNIST and Fashion-MNIST accuracy gains over the baselines.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because the contribution threshold is based only on label-distribution distance and sample count, a natural extension is to make the threshold adaptive over training or to define contribution from observed gradient norms rather than a priori data statistics.
  • The proof assumes error-free intra-cluster transmission; a testable extension is to relax that assumption and see where the convergence advantage erodes when cluster-leader links are noisy or bandwidth-limited.
  • The same contribution-threshold mechanism could be applied to client selection rather than update frequency, excluding low-contribution clusters entirely in some global rounds.
  • The convergence bound predicts a specific dependence of the optimality gap on $p_c$ and $N_c$, so a direct check is to fit the measured loss trajectory to the bound and compare the estimated contraction factor with the formula for $A$.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 4 minor

Summary. The paper studies wireless federated learning (FL) with heterogeneous devices and communication channels. It proposes a two-step clustering mechanism that groups devices by communication quality and data distribution, and then introduces a Cluster-Aware Multi-round Update (CAMU) strategy: clusters whose contribution to the global update, measured by |D_c|e^{1/W_c}, falls below a threshold are forced to N_c=1 local update per global round, while other clusters perform N_c=1+n_c updates. A convergence upper bound is derived in Theorem 1, and a joint optimization problem (P1) over local update frequencies and transmission powers is formulated and solved with PPO. Simulations on MNIST and Fashion-MNIST with a CNN compare the proposed method against several baselines and report accuracy improvements.

Significance. The problem is timely, and the idea of using a data-driven contribution measure to gate the local update frequency is practically motivated. The paper makes its theoretical dependency explicit by stating a convergence theorem and a proof, and the experimental setup is described in enough detail to be reproduced. If the convergence analysis and the claimed rate-reduction mechanism were correct, the resource-allocation formulation would be a useful contribution to wireless FL. However, as detailed below, the central theoretical claim about how N_c affects the convergence rate contradicts the paper's own sufficient condition, and the proof contains a gap in the use of the dissimilarity assumption. These are load-bearing issues for the main contribution, not local presentation problems.

major comments (4)
  1. [Section III-C, Eqs. (18), (20), (46)] The central claim that setting N_c=1 for low-contribution clusters reduces A is contradicted by the paper's own sufficient condition. Define B_c = µLλ²δ²G_c²δ_c²Σ_k G_{k,c}² − 2µλδG_cδ_cΣ_k G_{k,c}; then A = 1 + Σ_c N_c B_c (Eq. (46)). Condition (18) is equivalent to LλδG_cδ_cΣ_k G_{k,c}² < 2Σ_k G_{k,c}, i.e. exactly B_c<0. Under (18), A decreases as each N_c increases, so forcing N_c to 1 increases A, which is the opposite of the claimed effect. If instead low-contribution clusters have B_c>0, then they violate (18), and the A<1 guarantee and the bound (17) are not available. Eq. (20)'s statement that low-contribution clusters “obtain a smaller A” does not follow; the sign of δ_c does not determine the sign of B_c, and the P1 objective (23) could favor larger N_c for all clusters. This invalidates the theoretical rationale for the CAMU gating rule.
  2. [Appendix I, Eq. (41)] Assumption A4 is stated at the global iterate w[t] for each local loss function, but Eq. (41) applies it to every local iterate w_c^{[t,n]} along the multi-round trajectory, bounding each term by δ²||∇F(w[t])||². This extension requires a uniform dissimilarity bound along the local paths, which is neither assumed nor proved. Without such an assumption, the intermediate bound after Eq. (41) and the convergence result in Theorem 1 are not established.
  3. [Appendix I, Eqs. (44)-(45) and Theorem 1, Eq. (17)] The Taylor expansion (37) produces, in Eq. (44), a noise term with coefficient L/2, namely (L/2)Σ_c G_c²σ_n²/(p_c²||h_c||²). This factor L/2 is missing from the statement of Theorem 1 in Eq. (17) and from the optimization objective in P1, Eq. (23a). Since P1 is derived from the convergence bound, the theorem and the optimization problem do not match the proof.
  4. [Section III-C, Assumptions A1-A4; Section V-A] Assumption A2 requires each local loss F_k to be µ-strongly convex, and the text in Section III-C says that the cross-entropy function is strongly convex. The experiments, however, train a CNN with cross-entropy loss, which is neither strongly convex nor convex as a function of the network parameters. The convergence guarantee of Theorem 1 therefore does not apply to the evaluated system, and the statement that cross-entropy is strongly convex is incorrect.
minor comments (4)
  1. [Section II-B and Appendix I] The channel notation is inconsistent: h_k appears as a vector in Eq. (6) and later as ||h_c|| in the convergence bound, while the SNR γ_k in Eq. (7) uses |h_k|² without clarifying whether this is the squared Euclidean norm. The noise power is denoted both σ²_{n0} and σ²_n; please unify the notation.
  2. [Section V, Figs. 4-6] The reported curves appear to be single runs without error bars or confidence intervals; this makes it difficult to assess the statistical significance of the claimed performance improvements, which are often small (below 6%).
  3. [References] Reference [29] duplicates reference [4] (same title and author list); this duplicate citation should be corrected.
  4. [Section III-B and P1] The local update frequency is defined as N_c = 1 + S_c·n_c in Eq. (15), but the domain of n_c is not specified. Since P1 optimizes n_c, the paper should state integer or real bounds and explain how the PPO action projection enforces them.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the convergence bound and PPO objective are derived in-paper from explicit assumptions; the self-citations are comparative, not load-bearing.

full rationale

I walked the derivation chain from the clustering/weight construction (Eqs. (3)-(4)), through Theorem 1 (Eq. (17) and the Appendix I proof), to the optimization problem P1 (Eq. (23)) and the PPO reward (Eqs. (26)-(27)). The cluster contribution ϑ_c in Eq. (14) is the unnormalized numerator of the aggregation weight G_c in Eq. (4), but that is a design choice defining the heuristic threshold, not a fitted parameter renamed as a prediction. No quantity in Theorem 1 is calibrated to the experimental accuracies; the PPO reward is simply the negative of the derived GAP, so the RL objective is a surrogate built from the theorem rather than a restatement of the desired conclusion. The paper's self-citations ([1], [4]/[29]) compare prior clustering schemes or components and do not supply the proof of Theorem 1 or any uniqueness result; hence they are not load-bearing. The A4-to-local-trajectory extension in Eq. (41) and the sign issue in the claimed 'smaller A' mechanism (under condition (18), B_c<0 makes N_c=1 increase A) are substantive correctness or consistency concerns, but they are not circular reductions: Eq. (46) defines A from assumptions A1-A4 independently of the CAMU gating claim, and the claim is an algebraic inference from that definition, not a presupposition of the theorem. I therefore find no circular step requiring a nonzero score.

Assumptions & free parameters 4 free parameters · 4 assumptions · 0 invented entities

The central claim rests on four unproved premises: the convexity/smoothness assumptions that the CNN experiments violate; the extension of delta-local dissimilarity along local trajectories; the server's knowledge of label distributions; and error-free intra-cluster transmission. The convergence bound also depends on unmeasured constants delta and delta_c, and the strategy's threshold is hand-chosen. These are common assumptions in FL theory but all are load-bearing here.

free parameters (4)
  • Cluster contribution threshold theta_th = 0.5e4, 1.0e4, 1.5e4 (swept)
    Controls which clusters may perform multi-round updates; central to CAMU; selected by hand and swept in simulations, with no data-driven criterion.
  • Inter-cluster dissimilarity delta = not reported
    Appears in A and in the convergence condition (18); needed to compute GAP in the PPO reward but no estimation procedure or value is given.
  • Intra-cluster dissimilarity delta_c = not reported
    Appears in A, Theorem 1, and Corollary 1; no estimation procedure or value is given.
  • PPO penalty coefficient alpha = not reported
    Controls the constraint-violation penalty in the reward (27); affects the learned allocation and is not specified.
assumptions (4)
  • domain assumption A1-A3: local loss functions are L-smooth, mu-strongly convex, and twice continuously differentiable (Section III-C).
    The simulations train a CNN with ReLU and cross-entropy, which is neither mu-strongly convex nor guaranteed L-smooth; the theorem therefore applies to a restricted problem class not matching the experiments.
  • ad hoc to paper A4 delta-local dissimilarity holds at every local iterate along the multi-round trajectory (extension used in Eq. 41).
    The assumption is stated only at w[t], but the proof bounds every local gradient in the trajectory by delta^2 ||nabla F(w[t])||^2 without comment; this extension is unproven and load-bearing.
  • domain assumption The server knows the label-distribution PMFs of all devices to compute Wasserstein distances W_c, weights G_c, and contributions theta_c (Eqs. 3, 4, 14).
    Real FL typically hides local label distributions; this prior knowledge is assumed without a privacy-preserving estimation mechanism.
  • domain assumption Intra-cluster transmission is error-free, so communication error appears only at the leader-to-BS link (Appendix I).
    Appendix I assumes negligible intra-cluster error due to similar communication capacities and short distances; this simplifies the model but may not hold in general.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Cluster-Aware Multi-Round Update for Wireless Federated Learning in Heterogeneous Environments." pith.science (2026). https://pith.science/paper/OCIIVNO7

@misc{pith2026250506268,
  author       = {Pith},
  title        = {Pith review of: Cluster-Aware Multi-Round Update for Wireless Federated Learning in Heterogeneous Environments},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/OCIIVNO7}},
  note         = {Machine review of arXiv:2505.06268}
}
read the original abstract

The aggregation efficiency and accuracy of wireless Federated Learning (FL) are significantly affected by resource constraints, especially in heterogeneous environments where devices exhibit distinct data distributions and communication capabilities. This paper proposes a clustering strategy that leverages prior knowledge similarity to group devices with similar data and communication characteristics, mitigating performance degradation from heterogeneity. On this basis, a novel Cluster- Aware Multi-round Update (CAMU) strategy is proposed, which treats clusters as the basic units and adjusts the local update frequency based on the clustered contribution threshold, effectively reducing update bias and enhancing aggregation accuracy. The theoretical convergence of the CAMU strategy is rigorously validated. Meanwhile, based on the convergence upper bound, the local update frequency and transmission power of each cluster are jointly optimized to achieve an optimal balance between computation and communication resources under constrained conditions, significantly improving the convergence efficiency of FL. Experimental results demonstrate that the proposed method effectively improves the model performance of FL in heterogeneous environments and achieves a better balance between communication cost and computational load under limited resources.

Figures

Figures reproduced from arXiv: 2505.06268 by the authors.

Figure 1
Figure 1. The hierarchical FL architecture based on device [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. Cluster-based local multi-round update mechanism. (a) [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. Distribution of the participating devices. [PITH_FULL_IMAGE:figures/full_fig_p009_3.png] view at source ↗
Figures from the paper (2 more)
Figure 4
Figure 4. Figure 4: FL convergence performance based on each aggregation scheme under different degree of data heterogeneity. [PITH_FULL_IMAGE:figures/full_fig_p010_4.png]
Figure 5
Figure 5. Figure 5: Comparison of aggregation performance between local [PITH_FULL_IMAGE:figures/full_fig_p011_5.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

29 extracted references · 23 canonical work pages

  1. [1]

    Reconfigurable intelligent surface-assisted wireless federated learning with imperfect aggregation,

    P. Sun, E. Liu, W. Ni, R. Wang, Z. Xing, B. Li, and A. Jamalipour, “Reconfigurable intelligent surface-assisted wireless federated learning with imperfect aggregation,” IEEE Transactions on Communications , vol. 73, no. 2, pp. 1058–1071, 2025. 14

  2. [2]

    Fractal: Data-aware clustering and communication optimization for decentralized federated learning,

    Q. Ma, J. Liu, H. Xu, Q. Jia, and R. Xie, “Fractal: Data-aware clustering and communication optimization for decentralized federated learning,” IEEE Transactions on Big Data , 2024

  3. [3]

    Active client selection for clustered federated learning,

    H. Huang, W. Shi, Y . Feng, C. Niu, G. Cheng, J. Huang, and Z. Liu, “Active client selection for clustered federated learning,” IEEE Trans- actions on Neural Networks and Learning Systems , 2023

  4. [5]

    Fedsa: A semi-asynchronous federated learning mechanism in heterogeneous edge computing,

    Q. Ma, Y . Xu, H. Xu, Z. Jiang, L. Huang, and H. Huang, “Fedsa: A semi-asynchronous federated learning mechanism in heterogeneous edge computing,” IEEE Journal on Selected Areas in Communications , vol. 39, no. 12, pp. 3654–3672, 2021

  5. [6]

    An adaptive synchronous parallel strategy for distributed machine learning,

    J. Zhang, H. Tu, Y . Ren, J. Wan, L. Zhou, M. Li, and J. Wang, “An adaptive synchronous parallel strategy for distributed machine learning,” IEEE Access, vol. 6, pp. 19 222–19 230, 2018

  6. [7]

    Adaptive batch size for federated learning in resource-constrained edge computing,

    Z. Ma, Y . Xu, H. Xu, Z. Meng, L. Huang, and Y . Xue, “Adaptive batch size for federated learning in resource-constrained edge computing,” IEEE Transactions on Mobile Computing , vol. 22, no. 1, pp. 37–53, 2021

  7. [8]

    Enorm: A framework for edge node resource management,

    N. Wang, B. Varghese, M. Matthaiou, and D. S. Nikolopoulos, “Enorm: A framework for edge node resource management,” IEEE Transactions on Services Computing , vol. 13, no. 6, pp. 1086–1099, 2017

  8. [9]

    Adaptive control of local updating and model compression for efficient federated learning,

    Y . Xu, Y . Liao, H. Xu, Z. Ma, L. Wang, and J. Liu, “Adaptive control of local updating and model compression for efficient federated learning,” IEEE Transactions on Mobile Computing , vol. 22, no. 10, pp. 5675– 5689, 2022

Show all 29 references
  1. [10]

    Asynchronous stochastic gradient descent with delay compensation,

    S. Zheng, Q. Meng, T. Wang, W. Chen, N. Yu, Z.-M. Ma, and T.-Y . Liu, “Asynchronous stochastic gradient descent with delay compensation,” in Proceedings of International Conference on Machine Learning (ICML) , pp. 4120–4129. PMLR, 2017

  2. [11]

    Asynchronous parallel stochastic gradient for nonconvex optimization,

    X. Lian, Y . Huang, Y . Li, and J. Liu, “Asynchronous parallel stochastic gradient for nonconvex optimization,” Advances in Neural Information Processing Systems, vol. 28, 2015

  3. [12]

    Distributed delayed stochastic optimiza- tion,

    A. Agarwal and J. C. Duchi, “Distributed delayed stochastic optimiza- tion,” Advances in Neural Information Processing Systems , vol. 24, 2011

  4. [13]

    Local sgd converges fast and communicates little,

    S. U. Stich, “Local sgd converges fast and communicates little,” ArXiv preprint at arXiv:1805.09767 , 2018

  5. [14]

    Adaptive federated learning in resource constrained edge com- puting systems,

    S. Wang, T. Tuor, T. Salonidis, K. K. Leung, C. Makaya, T. He, and K. Chan, “Adaptive federated learning in resource constrained edge com- puting systems,” IEEE Journal on Selected Areas in Communications , vol. 37, no. 6, pp. 1205–1221, 2019

  6. [15]

    Cost-effective federated learning design,

    B. Luo, X. Li, S. Wang, J. Huang, and L. Tassiulas, “Cost-effective federated learning design,” in Proceedings of IEEE Conference on Computer Communications (ICCC) , pp. 1–10. IEEE, 2021

  7. [16]

    Parallel restarted sgd with faster con- vergence and less communication: Demystifying why model averaging works for deep learning,

    H. Yu, S. Yang, and S. Zhu, “Parallel restarted sgd with faster con- vergence and less communication: Demystifying why model averaging works for deep learning,” in Proceedings of AAAI Conference on Artificial Intelligence, vol. 33, no. 01, pp. 5693–5700, 2019

  8. [17]

    Achieving linear speedup with partial worker participation in non-iid federated learning,

    H. Yang, M. Fang, and J. Liu, “Achieving linear speedup with partial worker participation in non-iid federated learning,” ArXiv preprint at arXiv:2101.11203, 2021

  9. [18]

    Fedpaq: A communication-efficient federated learning method with periodic averaging and quantization,

    A. Reisizadeh, A. Mokhtari, H. Hassani, A. Jadbabaie, and R. Pedarsani, “Fedpaq: A communication-efficient federated learning method with periodic averaging and quantization,” in Proceedings of International Conference on Artificial Intelligence and Statistics (ICAIS) , pp. 2021–

  10. [19]

    Toward energy- efficient federated learning over 5g+ mobile devices,

    D. Shi, L. Li, R. Chen, P. Prakash, M. Pan, and Y . Fang, “Toward energy- efficient federated learning over 5g+ mobile devices,” IEEE Wireless Communications, vol. 29, no. 5, pp. 44–51, 2022

  11. [20]

    Adaptive local update and neural composition for accelerating federated learning in heterogeneous edge networks,

    J. Liu, J. Yan, J. Qi, H. Xu, S. Wang, C. Qiao, and L. Huang, “Adaptive local update and neural composition for accelerating federated learning in heterogeneous edge networks,” IEEE Transactions on Networking , 2025

  12. [21]

    Time-sensitive federated learn- ing with heterogeneous training intensity: A deep reinforcement learning approach,

    W. Pan, X. Wang, P. Zhou, and W. Lin, “Time-sensitive federated learn- ing with heterogeneous training intensity: A deep reinforcement learning approach,” IEEE Transactions on Emerging Topics in Computational Intelligence, vol. 8, no. 2, pp. 1402–1415, 2024

  13. [22]

    Petrel: Heterogeneity-aware distributed deep learning via hybrid synchroniza- tion,

    Q. Zhou, S. Guo, Z. Qu, P. Li, L. Li, M. Guo, and K. Wang, “Petrel: Heterogeneity-aware distributed deep learning via hybrid synchroniza- tion,” IEEE Transactions on Parallel and Distributed Systems , vol. 32, no. 5, pp. 1030–1043, 2020

  14. [23]

    Fedmds: An efficient model discrepancy-aware semi-asynchronous clustered federated learning framework,

    Y . Zhang, D. Liu, M. Duan, L. Li, X. Chen, A. Ren, Y . Tan, and C. Wang, “Fedmds: An efficient model discrepancy-aware semi-asynchronous clustered federated learning framework,” IEEE Transactions on Parallel and Distributed Systems , vol. 34, no. 3, pp. 1007–1019, 2023

  15. [24]

    Data distribution-aware online client selection algorithm for federated learning in heterogeneous networks,

    J. Lee, H. Ko, S. Seo, and S. Pack, “Data distribution-aware online client selection algorithm for federated learning in heterogeneous networks,” IEEE Transactions on Vehicular Technology , vol. 72, no. 1, pp. 1127– 1136, 2022

  16. [25]

    Aou-based local update and user scheduling for semi-asynchronous online federated learning in wireless networks,

    J. Zheng, X. Liu, Z. Ling, and F. Hu, “Aou-based local update and user scheduling for semi-asynchronous online federated learning in wireless networks,” IEEE Internet of Things Journal , 2024

  17. [26]

    Adaptive clustering based straggler-aware federated learning in wireless edge networks,

    Y .-J. Liu, G. Feng, H. Du, Z. Qin, Y . Sun, J. Kang, X. Li, and D. Niyato, “Adaptive clustering based straggler-aware federated learning in wireless edge networks,” IEEE Transactions on Communications , 2024

  18. [27]

    Statistical aspects of wasserstein distances,

    V . M. Panaretos and Y . Zemel, “Statistical aspects of wasserstein distances,” Annual review of statistics and its application , vol. 6, no. 1, pp. 405–431, 2019

  19. [28]

    Clustering by passing messages between data points,

    B. J. Frey and D. Dueck, “Clustering by passing messages between data points,” Science, vol. 315, no. 5814, pp. 972–976, 2007

  20. [29]

    Dual-segment clustering strategy for hierarchical federated learning in heterogeneous environments,

    P. Sun, E. Liu, W. Ni, K. Yu, X. Qu, R. Wang, Y . Bi, C. Zhang, and A. Jamalipour, “Dual-segment clustering strategy for hierarchical federated learning in heterogeneous environments,” IEEE Wireless Com- munications Letters, 2025

  21. [30]

    Heterogeneous training in- tensity for federated learning: A deep reinforcement learning approach,

    M. Zeng, X. Wang, W. Pan, and P. Zhou, “Heterogeneous training in- tensity for federated learning: A deep reinforcement learning approach,” IEEE Transactions on Network Science and Engineering , vol. 10, no. 2, pp. 990–1002, 2022

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.