Pith. sign in

REVIEW 3 major objections 6 minor 72 references

A Robust Federated Learning Framework for Undependable Devices at Scale

T0 review · 3 major / 6 minor · reviewed 2026-08-10 · deepseek-v4-flash

Pith's one-line read FLUDE keeps federated learning accurate and fast when many devices drop out mid-training.

desk verdict Useful systems paper with a plausible design and real hardware, but the headline numbers are single draws from a stochastic process and need repeated trials before the ordering over baselines is settled. read the letter →

arxiv 2412.19991 v1 pith:HX2MVHYZ submitted 2024-12-28 cs.LG cs.DC

classification cs.LGcs.DC
keywords federatedlearningdeviceundependabilityparticipantselectionmodelcachingstaleness-awaredistributionresourceefficiencynon-IIDdatamobileedgetraining
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

This paper tries to show that federated learning can stay accurate, fast, and cheap even when a large share of participant devices repeatedly drop out mid-training. It proposes FLUDE, a framework that predicts each device's probability of finishing a training round from its history, selects dependable devices while balancing how often each device is chosen, keeps interrupted training progress in a local cache, and sends the fresh global model only to devices whose cached model is too stale. On four tasks with smartphone and edge-device hardware, the paper reports 2.28%-7.43% higher final accuracy, 1.2x-3.2x faster time-to-accuracy, and 23.71%-40.71% lower communication cost than four existing FL systems. If the results hold, FLUDE would make FL practical in exactly the environments where it is now considered unreliable, and would let model training use devices with useful data that current systems exclude.

What carries the argument

The load-bearing object is a per-device dependability score $R(i)$, estimated as the expected value of a Beta distribution $\mathrm{Beta}(\alpha, \beta)$ updated by Bayesian counting of completed versus interrupted training attempts. This score feeds a selection priority $P(i) = R(i) \times (Q/q_i)^{\mathbb{1}(Q < q_i)} \times \sigma$, which applies a participation-frequency penalty, and a multi-armed-bandit exploration term keeps unobserved devices in the running. A local model cache preserves the latest training state so interrupted devices resume from a checkpoint, and a staleness-aware distributor uses an adaptive threshold $W_{\text{new}}$ to decide which cached models are too stale and must be refreshed with the global model. Round termination uses the sum over selected devices of predicted dependability, $|S| \times R$, as the expected number of uploads, so the server stops waiting when the likely useful work is done.

What would settle it

Run FLUDE in a scenario where undependability is caused by a shared external event, such as a regional network outage that knocks out many devices at once, and compare its time-to-accuracy and final accuracy against a random-selection baseline; if the predicted number of completed uploads $|S| \times R$ systematically overshoots actual arrivals and FLUDE's advantage over Oort disappears, the robustness claim fails.

Watch

Extended reading notes

Core claim

The paper's central claim is that device undependability should be treated as a measurable, learnable property rather than a reason to exclude devices. FLUDE estimates each device's dependability as the expected value of a Beta distribution over success and failure counts, re-prioritizes devices so that high-dependability devices are preferred yet no device participates too often, explores unfamiliar devices with a bandit-style fraction of selections, caches local training state so an interrupted device resumes instead of restarting, and adaptively chooses which rejoining devices must download the latest global model based on a moving staleness threshold. The paper reports that this combination, implemented on 120 physical devices across image classification, speech recognition, and click-through-rate prediction, beats four synchronous and asynchronous FL baselines in final accuracy, wall-clock time to target accuracy, and communication cost.

Load-bearing premise

The framework assumes each device has a fixed probability of finishing a round and that this probability can be learned from past successes and failures; if failures are correlated across devices or shift unexpectedly over time, the dependability estimates, the predicted upload count, and the round-termination rule can all be wrong.

Editorial extensions

If this is right

  • FL systems can keep training in environments where roughly 30-40% of devices are undependable without excluding them, recovering accuracy lost to dropped updates.
  • Wall-clock time to a target accuracy falls by 1.2x-3.2x, so fixed training budgets in hours buy more accuracy.
  • Communication cost to reach a target accuracy falls by roughly a quarter to two-fifths, mainly because cached checkpoints remove repeated global-model downloads.
  • Balancing participation frequency reduces bias toward frequently available devices, so the global model generalizes better across classes and devices with little participation.
  • The same caching mechanism also reduces wasted computation from restarting local training from scratch after interruptions.

Reading between the lines

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

  • The dependability score could double as a fairness or incentive signal: devices that prove reliable earn more selection, while operators could compensate less-dependable devices differently, something the paper does not discuss.
  • The staleness-threshold adjuster could transfer to asynchronous FL protocols that currently use fixed staleness cutoffs; this paper only tests it in its own synchronous-with-deadline scheme.
  • Because the evaluation generates failures from fixed per-device probabilities matching the estimator's generative model, the reported gains may shrink under correlated failures such as regional outages; a test with such correlations would be the natural next experiment.
  • The Beta prior's initial parameters are a free input, and the paper suggests setting them from manufacturer statistics, so a practitioner could tune them from fleet data, making part of the benefit depend on prior quality.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

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

Referee Report

3 major / 6 minor

Summary. The paper proposes FLUDE, a federated learning framework designed for environments in which devices are undependable, i.e., they may drop out during local training or be offline at round start. The framework has three main mechanisms: (1) an adaptive device selector that estimates each device's dependability with a Beta-Bernoulli Bayesian model, balances participation frequency with a penalty term, and uses epsilon-greedy exploration; (2) a local model caching mechanism that preserves training progress on devices that fail mid-round; and (3) a staleness-aware model distribution strategy that decides whether a selected device receives the latest global model or resumes from its cached model. The authors implement FLUDE on 40 OPPO smartphones and 80 NVIDIA Jetson devices and evaluate it on CIFAR-10, CIFAR-100, Google Speech, and Avazu against Oort, AsyncFedED, SAFA, and FedSEA, reporting 2.28%–7.43% higher final accuracy, 1.2x–3.2x time-to-accuracy improvements, and 23.71%–40.71% communication-cost reductions. The paper also includes ablation studies of the selector and the model distributor, and robustness experiments varying offline and undependability rates.

Significance. If the reported results hold, FLUDE would be a practically valuable system for federated learning on unreliable mobile and edge fleets. The physical testbed with 120 heterogeneous devices, the four diverse tasks, and the component-wise ablations are genuine strengths: they test the framework under realistic bandwidth dynamics and device heterogeneity rather than in a pure simulator. The component ablations in Section 5.4 give some confidence that each mechanism contributes, and the robustness analysis in Section 5.5 directly targets the paper's core claim. However, the central quantitative claims are currently supported by single runs of a highly stochastic process, and the evaluation's failure model coincides with the estimator's generative assumption. These issues are load-bearing because the paper's headline contribution is precisely a quantitative improvement in accuracy, speed, and communication cost under stochastic undependability.

major comments (3)
  1. [Section 5.2, Table 1, Figure 4] The headline quantitative claims rest on a single run of a stochastic process. In the setup of Section 5.2, each device's undependability is randomly realized each round, online/offline states flip every 10 minutes, WiFi bandwidth fluctuates between 1 and 30 Mb/s, Algorithm 1 uses randomized epsilon-greedy exploration, and Algorithm 2 terminates rounds at a random number of received uploads. Yet no seeds, confidence intervals, or repeated runs are reported for any table or figure. Several margins are small: FLUDE exceeds FedSEA by only 0.30 percentage points on Google Speech and by 1.29 percentage points over Oort on CIFAR-100 in Table 1. If run-to-run variance is comparable to these margins, the claimed ordering of methods is not statistically established. This is load-bearing because the abstract and introduction claim specific quantitative improvements. Please report multiple independent runs per configuration with means and variances (or a similar statistical summary), and where the claim is an ordering, include a significance test or state why the process variance is negligible.
  2. [Section 5.2 vs. Section 4.1, Eq. (1)] The evaluation generates device failures from a model that matches the estimator's assumptions. In Section 5.2, each device is assigned a fixed undependability rate drawn from a normal distribution, and each round the device fails with that fixed probability. This is exactly the fixed-probability Beta-Bernoulli generative model assumed by the dependability estimator in Section 4.1, Eq. (1). The estimator is therefore tested on its own model class. The robustness claim in Section 5.5 would be considerably stronger if the failure process were made non-stationary (e.g., dependability rates drifting over time) or correlated across devices (e.g., regional network outages), and if the sensitivity of Algorithm 2's round termination rule, which uses predicted uploads based on the estimated dependability, were measured under such mismatch.
  3. [Section 5.2, Eq. (4), Algorithm 1] Several key hyperparameters that directly control the core mechanisms are hand-set, and no sensitivity analysis is reported. These include the participation-frequency penalty sigma=0.5, the staleness-adjustment coefficients lambda=1 and mu=0.5 in Eq. (4), the exploration-factor schedule, and the Beta(2,2) prior. The device selector and the staleness-aware distributor depend on these values, so it is currently unknown whether the reported gains are robust to reasonable parameter changes. Please add a sensitivity study over these parameters, or provide a theoretical argument that the framework's performance is insensitive to their values.
minor comments (6)
  1. [Section 5.3, Tables 1 and 2] FLUDE's own CIFAR-10 time-to-accuracy is 2.68 hours in Table 1 but 2.39 hours in Table 2 for the same final accuracy of 87.52%; please reconcile the numbers or state whether the stopping criterion differs between the two tables.
  2. [Section 5.3 vs. Abstract/Introduction] The text in Section 5.3 reports that FLUDE reduces communication cost by 23.71%–49.7%, while the abstract and the introduction state 23.71%–40.71%; these ranges need to be reconciled.
  3. [Section 5.5 vs. Section 5.2] The robustness study in Section 5.5 uses a normal distribution with variance 0.05, whereas Section 5.2 sets the variance to 0.04; please clarify whether this difference is intentional.
  4. [Section 4.1, Eq. (1)] In Eq. (1), s and f are described as the number of successes and failures, but it is not stated whether they are counts since the previous update or cumulative counts; if cumulative, repeated updates would double-count observations, so please state explicitly that they are the counts since the last update.
  5. [Section 4.3, Eq. (4)] The staleness-threshold update in Eq. (4) divides by H_old and N_old, but no handling is specified for initial rounds in which H_old or N_old is zero; please add a boundary condition.
  6. [Algorithm 2, Lines 6-11] The while loop for budget adjustment has no explicit termination guarantee if the predicted cost B_pred does not fall below B_max after an iteration; please add a bound on the number of iterations or a fallback when the budget cannot be met.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the reported improvements are measured against external baselines, and FLUDE's dependability estimator is not fitted to the target metrics.

full rationale

The paper's central claims—final accuracy, time-to-accuracy, and communication cost—are obtained by comparing FLUDE against four external baselines (Oort, AsyncFedED, SAFA, FedSEA) on the same datasets and under the same simulated undependable environment; no parameter is fitted to the reported target accuracies or to the baseline results. The dependability estimator in Eq. (1) is a standard Beta-Bernoulli Bayesian update for a device's probability of completing local training, and the selection priority in Eq. (2) and round-termination rule in Algorithm 2 use this estimate internally, but those internal quantities are not the evaluation metrics themselves. The simulation in Section 5.2 draws per-device undependability rates from a normal distribution and realizes failures as Bernoulli events; this is consistent with the estimator's likelihood, which is a reasonable test-design choice rather than a circular reduction, because all methods are evaluated under the same stochastic process and the accuracy gains are measured on held-out test data. The only overlapping-author citation, [17], is used as an example of prior FL work and is not load-bearing for any claimed result. No self-definitional relationship, fitted-input-as-prediction step, or imported uniqueness theorem can be exhibited, so there is no significant circularity.

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

FLUDE introduces no new physical or conceptual entities; the model cache and staleness threshold are system components, not postulated entities. The central claim rests on a fixed-probability model of device dependability, a cache-resumption validity assumption, and several hand-set coefficients.

free parameters (5)
  • sigma (participation frequency penalty) = 0.5
    Hand-set coefficient in Eq. (2) reducing priority of devices that participate too often; the paper gives no sensitivity analysis, and this value affects which devices are selected each round.
  • lambda (staleness adjustment coefficient) = 1.0
    Coefficient in Eq. (4) scaling the reaction of the staleness threshold to changes in average staleness; set to 1 without sensitivity study.
  • mu (communication cost adjustment coefficient) = 0.5
    Coefficient in Eq. (4) scaling the reaction of the staleness threshold to changes in the number of model distributions; set to 0.5 without sensitivity study.
  • exploration factor schedule = initial 0.9, decay 0.98, floor 0.2
    Exploration fraction in Algorithm 1; the schedule is stated as a popular choice but no robustness analysis is provided.
  • Beta prior hyperparameters = alpha=2, beta=2
    Prior in Eq. (1) used for new devices; chosen as a neutral starting point, though the paper notes it could be set from manufacturer statistics.
assumptions (4)
  • domain assumption Device dependability R(i) follows a Beta distribution and is updated by Bayesian counting of training successes and failures.
    Section 4.1, Eq. 1. The participant selector is built on this model; if real dependability is non-stationary or bursty, the posterior mean may lag reality.
  • domain assumption Training outcomes are independent Bernoulli events with a per-device success probability equal to R(i).
    Algorithm 2 uses |S| times average R as the expected number of completed uploads and as the round termination condition; correlated failures would invalidate this count.
  • domain assumption Continuing local training from a cached checkpoint is as valid as training from the latest global model as long as staleness is below the adaptive threshold.
    Sections 4.2 and 4.3 assume resumption from cache preserves progress; the paper provides no convergence analysis for stale cached models.
  • standard math Bayesian theorem and Beta-Bernoulli conjugacy are standard mathematics.
    Used in Eq. (1); this is a standard modeling tool, not in question.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Robust Federated Learning Framework for Undependable Devices at Scale." pith.science (2026). https://pith.science/paper/HX2MVHYZ

@misc{pith2026241219991,
  author       = {Pith},
  title        = {Pith review of: A Robust Federated Learning Framework for Undependable Devices at Scale},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/HX2MVHYZ}},
  note         = {Machine review of arXiv:2412.19991}
}
read the original abstract

In a federated learning (FL) system, many devices, such as smartphones, are often undependable (e.g., frequently disconnected from WiFi) during training. Existing FL frameworks always assume a dependable environment and exclude undependable devices from training, leading to poor model performance and resource wastage. In this paper, we propose FLUDE to effectively deal with undependable environments. First, FLUDE assesses the dependability of devices based on the probability distribution of their historical behaviors (e.g., the likelihood of successfully completing training). Based on this assessment, FLUDE adaptively selects devices with high dependability for training. To mitigate resource wastage during the training phase, FLUDE maintains a model cache on each device, aiming to preserve the latest training state for later use in case local training on an undependable device is interrupted. Moreover, FLUDE proposes a staleness-aware strategy to judiciously distribute the global model to a subset of devices, thus significantly reducing resource wastage while maintaining model performance. We have implemented FLUDE on two physical platforms with 120 smartphones and NVIDIA Jetson devices. Extensive experimental results demonstrate that FLUDE can effectively improve model performance and resource efficiency of FL training in undependable environments.

Figures

Figures reproduced from arXiv: 2412.19991 by the authors.

Figure 1
Figure 1. Training performance comparison under depend￾able and undependable environments. (a) The global model accuracy. (b) The model accuracy (bars) and volumes of data involved in federated training (lines) across data classes. (c) The model accuracy (bars) and participation frequency (lines) across devices. in Depend., respectively. The reason is that undependable devices in FL fail to upload their local models to the ce… view at source ↗
Figure 2
Figure 2. Communication costs to reach the target accuracy of 45% for training CNN on CIFAR-10. However, due to less participation of data from classes #{1, 2, 3}, the global model suffers from significantly low model accuracies of 26.5%-30.5% on these classes. Moreover, the devices (e.g., #[40-50]) with higher participation frequencies can achieve test accuracies of 69.12%-76.23%. Conversely, devices #[1-10], which barely pa… view at source ↗
Figure 3
Figure 3. Overview and workflow of FLUDE. or their locally cached models. These devices periodically update their local model caches and report their status dur￾ing local training to the central server. Once local training is completed, the local model parameters are uploaded to the central server. At the end of each training round, the model aggregator ( 4 ) conducts model aggregation on the received local models to update t… view at source ↗
Figures from the paper (6 more)
Figure 4
Figure 4. Figure 4: Performance comparison of time-to-accuracy between FLUDE and the baselines. to the deviceID feature domain, with each part represent￾ing the data of a device. Since the number of data parts is larger than that of smartphones, we assign several data parts to each smartp…
Figure 5
Figure 5. Figure 5: Comparison of communication costs between FLUDE and the baselines. with CIFAR-100, FLUDE demonstrates a speedup of 1.4× to 2.4× [PITH_FULL_IMAGE:figures/full_fig_p010_5.png]
Figure 7
Figure 7. Figure 7: Impact of model distributor in FLUDE on final accuracy and communication cost. with adaptive model distribution (native FLUDE) signifi￾cantly reduces communication costs. Specifically, adaptive model distribution helps to reduce 30% and 25% communi￾cation costs on the …
Figure 6
Figure 6. Figure 6: Impact of device selector in FLUDE on time-to￾accuracy. undependable devices, which negatively impacts the final accuracy of the global model. FLUDE guarantees system performance and balances participation frequencies among devices via the adap￾tive device selection. W…
Figure 8
Figure 8. Figure 8: Impact of device offline rate on final accuracy. l ow medi um h i gh 64 68 72 76 A c c u r a c y ( % ) U n depen dabi l i ty Rate Level FLU DE Oort (a) CIFAR-100 l ow medi um h i gh 76 78 80 82 84 A c c u r a c y ( % ) U n depen dabi l i ty Rate Level FLU DE Oort (b) G…
Figure 9
Figure 9. Figure 9: Impact of device undependability rate on final accuracy. offline rate changes from medium to high, the final accuracy of FLUDE on the Google Speech dataset decreases by only 1.77%, whereas Oort’s accuracy decreases by 3.22%. These results demonstrate that FLUDE effecti…

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

72 extracted references · 51 canonical work pages

  1. [1]

    Deep learning

    Yann LeCun, Yoshua Bengio, and Geoffrey Hinton. Deep learning. nature, 521(7553):436–444, 2015

  2. [2]

    Natu- ral language processing: state of the art, current trends and challenges

    Diksha Khurana, Aditya Koli, Kiran Khatter, and Sukhdev Singh. Natu- ral language processing: state of the art, current trends and challenges. Multimedia tools and applications , 82(3):3713–3744, 2023

  3. [3]

    Dif- ferentially private image classification by learning priors from random processes

    Xinyu Tang, Ashwinee Panda, Vikash Sehwag, and Prateek Mittal. Dif- ferentially private image classification by learning priors from random processes. In A. Oh, T. Naumann, A. Globerson, K. Saenko, M. Hardt, and S. Levine, editors, Advances in Neural Information Processing Sys- tems, volume 36, pages 35855–35877. Curran Associates, Inc., 2023

  4. [4]

    Federated learning for generalization, robustness, fairness: A survey and benchmark

    Wenke Huang, Mang Ye, Zekun Shi, Guancheng Wan, He Li, Bo Du, and Qiang Yang. Federated learning for generalization, robustness, fairness: A survey and benchmark. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2024

  5. [5]

    Vertical federated learning: Concepts, advances, and challenges

    Yang Liu, Yan Kang, Tianyuan Zou, Yanhong Pu, Yuanqin He, Xiaozhou Ye, Ye Ouyang, Ya-Qin Zhang, and Qiang Yang. Vertical federated learning: Concepts, advances, and challenges. IEEE Transactions on Knowledge and Data Engineering , 2024

  6. [6]

    Billion-scale federated learning on mobile clients: A submodel design with tunable privacy

    Chaoyue Niu, Fan Wu, Shaojie Tang, Lifeng Hua, Rongfei Jia, Chengfei Lv, Zhihua Wu, and Guihai Chen. Billion-scale federated learning on mobile clients: A submodel design with tunable privacy. InProceedings of the 26th Annual International Conference on Mobile Computing and Networking, pages 1–14, 2020

  7. [7]

    Applications of federated learning in smart cities: recent advances, taxonomy, and open challenges

    Zhaohua Zheng, Yize Zhou, Yilong Sun, Zhang Wang, Boyi Liu, and Keqiu Li. Applications of federated learning in smart cities: recent advances, taxonomy, and open challenges. Connection Science, 34(1):1– 28, 2022

  8. [8]

    Federated learning for smart healthcare: A survey

    Dinh C Nguyen, Quoc-Viet Pham, Pubudu N Pathirana, Ming Ding, Aruna Seneviratne, Zihuai Lin, Octavia Dobre, and Won-Joo Hwang. Federated learning for smart healthcare: A survey. ACM Computing Surveys (Csur), 55(3):1–37, 2022

Show all 72 references
  1. [9]

    Towards federated learning at scale: System design

    Keith Bonawitz, Hubert Eichner, Wolfgang Grieskamp, Dzmitry Huba, Alex Ingerman, Vladimir Ivanov, Chloe Kiddon, Jakub Konečn`y, Ste- fano Mazzocchi, Brendan McMahan, et al. Towards federated learning at scale: System design. Proceedings of machine learning and systems , 1:374–...

  2. [10]

    Communication-efficient learning of deep networks from decentralized data

    Brendan McMahan, Eider Moore, Daniel Ramage, Seth Hampson, and Blaise Aguera y Arcas. Communication-efficient learning of deep networks from decentralized data. InArtificial intelligence and statistics, pages 1273–1282. PMLR, 2017

  3. [11]

    Safa: A semi-asynchronous protocol for fast federated learning with low overhead.IEEE Transactions on Computers, 70(5):655– 668, 2020

    Wentai Wu, Ligang He, Weiwei Lin, Rui Mao, Carsten Maple, and Stephen Jarvis. Safa: A semi-asynchronous protocol for fast federated learning with low overhead.IEEE Transactions on Computers, 70(5):655– 668, 2020

  4. [12]

    Oort: Efficient federated learning via guided participant selection

    Fan Lai, Xiangfeng Zhu, Harsha V Madhyastha, and Mosharaf Chowd- hury. Oort: Efficient federated learning via guided participant selection. In 15th{USENIX} Symposium on Operating Systems Design and Imple- mentation ({OSDI} 21), pages 19–35, 2021

  5. [13]

    Hermes: an efficient federated learning framework for heterogeneous mobile clients

    Ang Li, Jingwei Sun, Pengcheng Li, Yu Pu, Hai Li, and Yiran Chen. Hermes: an efficient federated learning framework for heterogeneous mobile clients. In Proceedings of the 27th Annual International Confer- ence on Mobile Computing and Networking , pages 420–437, 2021

  6. [14]

    Pyramidfl: A fine-grained client selection framework for efficient federated learning

    Chenning Li, Xiao Zeng, Mi Zhang, and Zhichao Cao. Pyramidfl: A fine-grained client selection framework for efficient federated learning. In Proceedings of the 28th Annual International Conference on Mobile Computing And Networking, pages 158–171, 2022

  7. [15]

    Fedsea: A semi-asynchronous federated learning framework for extremely heterogeneous devices

    Jingwei Sun, Ang Li, Lin Duan, Samiul Alam, Xuliang Deng, Xin Guo, Haiming Wang, Maria Gorlatova, Mi Zhang, Hai Li, et al. Fedsea: A semi-asynchronous federated learning framework for extremely heterogeneous devices. In Proceedings of the 20th ACM Conference on Embedded Networ...

  8. [16]

    Asyncfeded: Asynchronous federated learning with euclidean distance based adaptive weight aggregation

    Qiyuan Wang, Qianqian Yang, Shibo He, Zhiguo Shi, and Jiming Chen. Asyncfeded: Asynchronous federated learning with euclidean distance based adaptive weight aggregation. arXiv preprint arXiv:2205.13797, 2022

  9. [17]

    Bose: Block-wise federated learning in het- erogeneous edge computing

    Lun Wang, Yang Xu, Hongli Xu, Zhida Jiang, Min Chen, Wuyang Zhang, and Chen Qian. Bose: Block-wise federated learning in het- erogeneous edge computing. IEEE/ACM Transactions on Networking, 2023

  10. [18]

    Efficient federated learning for modern nlp

    Dongqi Cai, Yaozong Wu, Shangguang Wang, Felix Xiaozhu Lin, and Mengwei Xu. Efficient federated learning for modern nlp. In Proceed- ings of the 29th Annual International Conference on Mobile Computing and Networking, pages 1–16, 2023

  11. [19]

    Federated few-shot learning for mobile nlp

    Dongqi Cai, Shangguang Wang, Yaozong Wu, Felix Xiaozhu Lin, and Mengwei Xu. Federated few-shot learning for mobile nlp. In Proceed- ings of the 29th Annual International Conference on Mobile Computing and Networking, pages 1–17, 2023

  12. [20]

    Aut- ofed: Heterogeneity-aware federated multimodal learning for robust autonomous driving

    Tianyue Zheng, Ang Li, Zhe Chen, Hongbo Wang, and Jun Luo. Aut- ofed: Heterogeneity-aware federated multimodal learning for robust autonomous driving. In Proceedings of the 29th Annual International Conference on Mobile Computing and Networking , pages 1–15, 2023

  13. [21]

    In 2024 USENIX Annual Technical Conference (USENIX ATC 24), pages 579–596, 2024

    Mengwei Xu, Dongqi Cai, Yaozong Wu, Xiang Li, and Shangguang Wang.{FwdLLM}: Efficient federated finetuning of large language models with perturbed inferences. In 2024 USENIX Annual Technical Conference (USENIX ATC 24), pages 579–596, 2024

  14. [22]

    Federated learning with non-iid data

    Yue Zhao, Meng Li, Liangzhen Lai, Naveen Suda, Damon Civin, and Vikas Chandra. Federated learning with non-iid data. arXiv preprint arXiv:1806.00582, 2018

  15. [23]

    Imagenet classification with deep convolutional neural networks

    Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. Advances in neural information processing systems , 25, 2012

  16. [24]

    Learning multiple layers of features from tiny images

    Alex Krizhevsky, Geoffrey Hinton, et al. Learning multiple layers of features from tiny images. 2009

  17. [25]

    Multitude of beta distributions with applications

    Saralees Nadarajah and Samuel Kotz. Multitude of beta distributions with applications. Statistics, 41(2):153–179, 2007

  18. [26]

    Bayesian theory, volume 405

    José M Bernardo and Adrian FM Smith. Bayesian theory, volume 405. John Wiley & Sons, 2009

  19. [27]

    Finite-time analysis of the multiarmed bandit problem

    Peter Auer, Nicolo Cesa-Bianchi, and Paul Fischer. Finite-time analysis of the multiarmed bandit problem. Machine learning, 47:235–256, 2002

  20. [28]

    Towards efficient and stable k-asynchronous federated learning with unbounded stale gradients on non-iid data

    Zihao Zhou, Yanan Li, Xuebin Ren, and Shusen Yang. Towards efficient and stable k-asynchronous federated learning with unbounded stale gradients on non-iid data. IEEE Transactions on Parallel and Distributed Systems, 33(12):3291–3305, 2022. 13 25, xxxxxx/xx/xx Shilong Wang 1, ...

  21. [29]

    Fleet: Online federated learning via staleness awareness and performance prediction

    Georgios Damaskinos, Rachid Guerraoui, Anne-Marie Kermarrec, Vlad Nitu, Rhicheek Patra, and Francois Taiani. Fleet: Online federated learning via staleness awareness and performance prediction. ACM Transactions on Intelligent Systems and Technology (TIST) , 13(5):1–30, 2022

  22. [30]

    Fedpa: An adaptively partial model aggregation strategy in federated learning

    Juncai Liu, Jessie Hui Wang, Chenghao Rong, Yuedong Xu, Tao Yu, and Jilong Wang. Fedpa: An adaptively partial model aggregation strategy in federated learning. Computer Networks, 199:108468, 2021

  23. [31]

    Robust asynchronous federated learning with time-weighted and stale model aggregation

    Yinbin Miao, Ziteng Liu, Xinghua Li, Meng Li, Hongwei Li, Kim- Kwang Raymond Choo, and Robert H Deng. Robust asynchronous federated learning with time-weighted and stale model aggregation. IEEE Transactions on Dependable and Secure Computing , 2023

  24. [32]

    Hiflash: Communication-efficient hi- erarchical federated learning with adaptive staleness control and heterogeneity-aware client-edge association

    Qiong Wu, Xu Chen, Tao Ouyang, Zhi Zhou, Xiaoxi Zhang, Shusen Yang, and Junshan Zhang. Hiflash: Communication-efficient hi- erarchical federated learning with adaptive staleness control and heterogeneity-aware client-edge association. IEEE Transactions on Parallel and Distribu...

  25. [33]

    https://www.oppo.com/en/smartphones/

    Oppo smart phones. https://www.oppo.com/en/smartphones/

  26. [34]

    https://github.com/alibaba/MNN?tab=readme-ov-file

    Mnn. https://github.com/alibaba/MNN?tab=readme-ov-file

  27. [35]

    https://docs.nvidia.com/jetson/

    Nvidia jetson devices. https://docs.nvidia.com/jetson/

  28. [36]

    Docker: lightweight linux containers for consistent development and deployment

    Dirk Merkel et al. Docker: lightweight linux containers for consistent development and deployment. Linux j, 239(2):2, 2014

  29. [37]

    Pytorch: An imperative style, high-performance deep learning library

    Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Brad- bury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, et al. Pytorch: An imperative style, high-performance deep learning library. Advances in neural information processing sys- tems,...

  30. [38]

    http://dast.nlanr.net/ Projects/Iperf/

    Iperf: The tcp/udp bandwidth measurement tool. http://dast.nlanr.net/ Projects/Iperf/

  31. [39]

    Deep convolutional neural net- works for image classification: A comprehensive review

    Waseem Rawat and Zenghui Wang. Deep convolutional neural net- works for image classification: A comprehensive review. Neural com- putation, 29(9):2352–2449, 2017

  32. [40]

    https://github.com/ymliao98/PS_socket/blob/main/models.py

    Vgg-9. https://github.com/ymliao98/PS_socket/blob/main/models.py

  33. [41]

    Deep residual learning for image recognition

    Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition , pages 770–778, 2016

  34. [42]

    Biosignal sensors and deep learning-based speech recognition: A review

    Wookey Lee, Jessica Jiwon Seong, Busra Ozlu, Bong Sup Shim, Azizbek Marakhimov, and Suan Lee. Biosignal sensors and deep learning-based speech recognition: A review. Sensors, 21(4):1399, 2021

  35. [43]

    https://pytorch

    A cnn network with 4 1-d convolution layers. https://pytorch. org/tutorials/intermediate/speech_command_classification_with_ torchaudio_tutorial.html

  36. [44]

    Speech commands: A dataset for limited-vocabulary speech recognition

    Pete Warden. Speech commands: A dataset for limited-vocabulary speech recognition. arXiv preprint arXiv:1804.03209, 2018

  37. [45]

    On-device recommender systems: A comprehensive survey

    Hongzhi Yin, Liang Qu, Tong Chen, Wei Yuan, Ruiqi Zheng, Jing Long, Xin Xia, Yuhui Shi, and Chengqi Zhang. On-device recommender systems: A comprehensive survey. arXiv preprint arXiv:2401.11441 , 2024

  38. [46]

    Wide & deep learning for recommender systems

    Heng-Tze Cheng, Levent Koc, Jeremiah Harmsen, Tal Shaked, Tushar Chandra, Hrishi Aradhye, Glen Anderson, Greg Corrado, Wei Chai, Mustafa Ispir, et al. Wide & deep learning for recommender systems. In Proceedings of the 1st workshop on deep learning for recommender systems, pag...

  39. [47]

    https://www.kaggle.com/c/avazu-ctr-prediction/ data

    The avazu dataset. https://www.kaggle.com/c/avazu-ctr-prediction/ data

  40. [48]

    Decentralized federated learning: Fundamentals, state of the art, frameworks, trends, and challenges

    Enrique Tomás Martínez Beltrán, Mario Quiles Pérez, Pedro Miguel Sánchez Sánchez, Sergio López Bernal, Gérôme Bovet, Manuel Gil Pérez, Gregorio Martínez Pérez, and Alberto Huertas Cel- drán. Decentralized federated learning: Fundamentals, state of the art, frameworks, trends, ...

  41. [49]

    Fedlab: A flexible federated learning framework

    Dun Zeng, Siqi Liang, Xiangjing Hu, Hui Wang, and Zenglin Xu. Fedlab: A flexible federated learning framework. Journal of Machine Learning Research, 24(100):1–7, 2023

  42. [50]

    Federated learning for internet of things: Recent advances, taxonomy, and open challenges

    Latif U Khan, Walid Saad, Zhu Han, Ekram Hossain, and Choong Seon Hong. Federated learning for internet of things: Recent advances, taxonomy, and open challenges. IEEE Communications Surveys & Tutorials, 23(3):1759–1799, 2021

  43. [51]

    Federated learning: Opportunities and challenges

    Priyanka Mary Mammen. Federated learning: Opportunities and challenges. arXiv preprint arXiv:2101.05428, 2021

  44. [52]

    Federated optimization in heterogeneous networks

    Tian Li, Anit Kumar Sahu, Manzil Zaheer, Maziar Sanjabi, Ameet Tal- walkar, and Virginia Smith. Federated optimization in heterogeneous networks. Proceedings of Machine learning and systems , 2:429–450, 2020

  45. [53]

    Adaptive federated optimization

    Sashank J Reddi, Zachary Charles, Manzil Zaheer, Zachary Garrett, Keith Rush, Jakub Konečn`y, Sanjiv Kumar, and Hugh Brendan McMa- han. Adaptive federated optimization. In International Conference on Learning Representations

  46. [54]

    Fedur: Federated learning optimization through adaptive centralized learning optimizers

    Hengrun Zhang, Kai Zeng, and Shuai Lin. Fedur: Federated learning optimization through adaptive centralized learning optimizers. IEEE Transactions on Signal Processing , 2023

  47. [55]

    Fedala: Adaptive local aggregation for person- alized federated learning

    Jianqing Zhang, Yang Hua, Hao Wang, Tao Song, Zhengui Xue, Ruhui Ma, and Haibing Guan. Fedala: Adaptive local aggregation for person- alized federated learning. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pages 11237–11244, 2023

  48. [56]

    Towards personalized federated learning via heterogeneous model reassembly

    Jiaqi Wang, Xingyi Yang, Suhan Cui, Liwei Che, Lingjuan Lyu, Dongkuan DK Xu, and Fenglong Ma. Towards personalized federated learning via heterogeneous model reassembly. Advances in Neural Information Processing Systems, 36, 2024

  49. [57]

    Flow: per-instance personalized federated learning

    Kunjal Panchal, Sunav Choudhary, Nisarg Parikh, Lijun Zhang, and Hui Guan. Flow: per-instance personalized federated learning. Ad- vances in Neural Information Processing Systems , 36, 2024

  50. [58]

    Fedas: Bridging inconsis- tency in personalized federated learning

    Xiyuan Yang, Wenke Huang, and Mang Ye. Fedas: Bridging inconsis- tency in personalized federated learning. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages 11986– 11995, 2024

  51. [59]

    Communication efficiency in federated learning: Achievements and challenges

    Osama Shahid, Seyedamin Pouriyeh, Reza M Parizi, Quan Z Sheng, Gautam Srivastava, and Liang Zhao. Communication efficiency in federated learning: Achievements and challenges. arXiv preprint arXiv:2107.10996, 2021

  52. [60]

    Uveqfed: Universal vector quantization for federated learning

    Nir Shlezinger, Mingzhe Chen, Yonina C Eldar, H Vincent Poor, and Shuguang Cui. Uveqfed: Universal vector quantization for federated learning. IEEE Transactions on Signal Processing , 69:500–514, 2020

  53. [61]

    Adaptive quantization of model updates for communication- efficient federated learning

    Divyansh Jhunjhunwala, Advait Gadhikar, Gauri Joshi, and Yonina C Eldar. Adaptive quantization of model updates for communication- efficient federated learning. In ICASSP 2021-2021 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) , pages 3110–3...

  54. [62]

    Towards mitigating device heterogeneity in federated learning via adaptive model quantization

    Ahmed M Abdelmoniem and Marco Canini. Towards mitigating device heterogeneity in federated learning via adaptive model quantization. In Proceedings of the 1st Workshop on Machine Learning and Systems , pages 96–103, 2021

  55. [63]

    Neural network quantization in federated learn- ing at the edge

    Nicola Tonellotto, Alberto Gotta, Franco Maria Nardini, Daniele Gadler, and Fabrizio Silvestri. Neural network quantization in federated learn- ing at the edge. Information Sciences, 575:417–436, 2021

  56. [64]

    Federated learning with quantized global model updates

    Mohammad Mohammadi Amiri, Deniz Gunduz, Sanjeev R Kulkarni, and H Vincent Poor. Federated learning with quantized global model updates. arXiv preprint arXiv:2006.10672, 2020

  57. [65]

    Model compression for communication efficient federated learning

    Suhail Mohmad Shah and Vincent KN Lau. Model compression for communication efficient federated learning. IEEE Transactions on Neural Networks and Learning Systems , 2021

  58. [66]

    Fedzip: A compression framework for communication- efficient federated learning

    Amirhossein Malekijoo, Mohammad Javad Fadaeieslam, Hanieh Malek- ijou, Morteza Homayounfar, Farshid Alizadeh-Shabdiz, and Reza Rawassizadeh. Fedzip: A compression framework for communication- efficient federated learning. arXiv preprint arXiv:2102.01593, 2021

  59. [67]

    Zichen Tang, Junlin Huang, Rudan Yan, Yuxin Wang, Zhenheng Tang, Shaohuai Shi, Amelie Chi Zhou, and Xiaowen Chu. Bandwidth-aware 14 A Robust Federated Learning Framework for Undependable Devices at Scale 25, xxxxxx/xx/xx and overlap-weighted compression for communication-effic...

  60. [68]

    Fedmd: Heterogenous federated learning via model distillation

    Daliang Li and Junpu Wang. Fedmd: Heterogenous federated learning via model distillation. arXiv preprint arXiv:1910.03581, 2019

  61. [69]

    Data-free knowledge distillation for heterogeneous federated learning

    Zhuangdi Zhu, Junyuan Hong, and Jiayu Zhou. Data-free knowledge distillation for heterogeneous federated learning. In International conference on machine learning , pages 12878–12889. PMLR, 2021

  62. [70]

    Communication-efficient federated learning via knowledge distil- lation

    Chuhan Wu, Fangzhao Wu, Lingjuan Lyu, Yongfeng Huang, and Xing Xie. Communication-efficient federated learning via knowledge distil- lation. Nature communications, 13(1):2032, 2022

  63. [71]

    Fedfed: Feature distillation against data heterogeneity in federated learning

    Zhiqin Yang, Yonggang Zhang, Yu Zheng, Xinmei Tian, Hao Peng, Tongliang Liu, and Bo Han. Fedfed: Feature distillation against data heterogeneity in federated learning. Advances in Neural Information Processing Systems, 36, 2024

  64. [72]

    Dfrd: Data-free robustness distillation for heterogeneous federated learning

    Shuai Wang, Yexuan Fu, Xiang Li, Yunshi Lan, Ming Gao, et al. Dfrd: Data-free robustness distillation for heterogeneous federated learning. Advances in Neural Information Processing Systems , 36, 2024. 15

Pith tools

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