Pith. sign in

REVIEW 4 major objections 5 minor 298 references

Modular Federated Learning: A Meta-Framework Perspective

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

Pith's one-line read This survey claims that federated learning is a modular meta-framework, and that its central operator pair is Aggregation (merging client updates) and Alignment (constraining that merge for fairness, convergence, or robustness)…

desk verdict Useful FL survey with a genuinely organizational meta-framework; the Alignment novelty is overstated and Eq. (2) is not a faithful umbrella. read the letter →

arxiv 2505.08646 v1 pith:SEDH3BYA submitted 2025-05-13 cs.LG

classification cs.LG
keywords FederatedLearningDistributedDecentralisedOptimisationSurveyMeta-FrameworkAlignmentOperatorAggregation
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 survey claims that federated learning is best understood not as a family of algorithms but as a modular meta-framework: eight loosely independent components—infrastructure, communication, aggregation, data handling, model-agnostic design, security, privacy, and trustworthiness—that can be designed, improved, and recombined separately. Its core proposal is a new taxonomic division inside the aggregation step: an Aggregation operator, which merges client updates into a global model, and an Alignment operator, which constrains that merge to satisfy objectives such as fairness, convergence, or robustness. The paper formalizes this as a single constrained optimization template, Eq. (2), and argues that consensus FL, robust max-loss FL, personalized penalty methods, and bounded-divergence methods are all special cases. A sympathetic reader would care because a faithful common template would give the field one vocabulary for comparing, composing, and extending methods, and would tie modern FL back to the distributed-optimization literature from which it grew.

What carries the argument

The load-bearing object is Eq. (2), a constrained-optimization template proposed as the general federated-learning objective: minimize $\mathcal{S}(\mathcal{L}_1(\theta_1),\dots,\mathcal{L}_N(\theta_N),\mathcal{L}(\theta))$ subject to $\mathcal{A}(\theta,\{\theta_c\}) \le \epsilon$, with $\theta$ the global model, $\theta_c$ the client-local models, $\mathcal{S}$ the aggregation function, $\mathcal{A}$ the alignment operator, and $\epsilon$ a threshold that makes the constraint an inequality. The template does its work by enumeration: choosing $\mathcal{A}$ to enforce $\theta_i=\theta_j$ recovers consensus FL (Eq. 8); the same constraint with max-aggregation recovers robust FL (Eq. 9); substituting proximity penalties $\|\theta_c-\theta\|^2$ or $\|\theta_c-\theta\|$ recovers the personalized formulations (Eqs. 10-11); keeping consensus as a bounded inequality recovers Eq. (12); and a quadratic-penalty reformulation (Eq. 13) shows hard and soft alignment are interchangeable. The paper's organizational force rests on this template being a faithful umbrella over the methods it surveys.

What would settle it

Take three flagship methods the survey must cover—a token/random-walk protocol with no global model (the model hops between nodes), a vertically partitioned split-learning scheme where no client holds a complete model, and clustered FL with its two-level membership assignment—and attempt to write each as a triple $(\mathcal{S},\mathcal{A},\epsilon)$ in Eq. (2) without changing the published algorithm. If any of them forces a degenerate choice (an empty global parameter space, an identically-zero alignment operator, or a constraint that silently turns the problem into a different optimization), the claim that Eq. (2) is the general FL template fails; the claim stands or falls on how large a fraction of a broad catalog of FL methods admits a natural, non-degenerate representation.

Watch

Extended reading notes

Core claim

The central claim, on the paper's own terms, is that knowledge alignment between clients deserves to be an explicit, first-class operator in federated learning, co-equal with aggregation. Concretely, the paper asserts that essentially any FL procedure can be written as the constrained program $\min_{\theta,\{\theta_c\}} \mathcal{S}(\mathcal{L}_1(\theta_1),\dots,\mathcal{L}_N(\theta_N),\mathcal{L}(\theta))$ subject to $\mathcal{A}(\theta,\{\theta_c\}) \le \epsilon$, where $\mathcal{S}$ is the aggregation function (how local losses combine, e.g., average or max), $\mathcal{A}$ is the alignment operator (a possibly vector-valued measure of how the local models $\theta_c$ and the global model $\theta$ may relate), and $\epsilon$ is a threshold that can be set to zero for exact consensus, to a positive value for bounded divergence, or reversed to force distinct models. In this reading, FedAvg is the special case of weighted-average aggregation under exact consensus; robust model-agnostic FL uses max-aggregation under the same constraint; personalized FL replaces the hard constraint with proximity penalties such as $\|\theta_c-\theta\|^2$; and clustered FL learns several global models with clients partitioned by distance. The contribution is therefore taxonomic and architectural: it names the second operator, collects the field's methods under the pairing $(\mathcal{S},\mathcal{A},\epsilon)$, traces the template's roots in distributed optimization (consensus, ADMM, block coordinate descent), and surveys Python frameworks as partial implementations of the modular blueprint.

Load-bearing premise

The framework assumes that every useful federated-learning method can be faithfully rewritten as one constrained optimization problem of the form Eq. (2), in which an aggregation function $\mathcal{S}$ combines client losses and an alignment constraint $\mathcal{A}(\theta,\{\theta_c\})\le\epsilon$ governs how client models relate to the global model; methods that communicate only predictions or statistics, keep no shared global model, or solve a two-level clustering problem (as in Eqs. 15-16) may not fit the template without distortion.

Editorial extensions

If this is right

  • Every mainstream FL algorithm becomes a choice of aggregation function $\mathcal{S}$ and alignment operator $\mathcal{A}$ in Eq. (2): FedAvg, robust max-loss FL, personalized proximity-penalty methods, and bounded-divergence methods are all recovered as special cases, so a result proved for one instance can be translated to its siblings.
  • System builders can treat the eight modules as interchangeable parts—swapping compression, client selection, secure aggregation, or the alignment constraint independently—instead of adopting monolithic algorithms, which is the design pattern the surveyed Python FL frameworks are converging on.
  • The Alignment/Aggregation distinction gives a common vocabulary across subfields: fairness, robustness, personalization, and client prioritization each become a specific constraint $\mathcal{A}\le\epsilon$, making comparable methods that were previously described in incompatible terms.
  • The explicit lineage from distributed optimization—consensus, ADMM, block coordinate descent, token methods—means convergence analyses from that older literature can be imported into FL design, and FL formulations can in turn be analyzed with the older theory.
  • The framework turns open-problem identification into a modular audit: each of the eight modules has a known set of techniques and a known gap, so future work can target missing modules rather than re-invent whole systems.

Reading between the lines

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

  • My inference: if the template is accepted, the obvious untaken step is generative design—systematically pairing aggregation strategies (attention-weighted, median-based) with alignment constraints (fairness, bounded divergence) to produce new algorithms the survey itself does not enumerate.
  • My inference: the paper does not prove a unified convergence theory for Eq. (2); a natural testable extension is whether the convergence analyses of FedProx, SCAFFOLD, and robust FL can be recovered as instances of a single theory parameterized by properties of $\mathcal{A}$, such as its convexity or smoothness constants.
  • My inference: the bilevel structure of clustered FL (Eqs. 15-16) is the most likely genuine exception to the umbrella; if CFL cannot be flattened into an $(\mathcal{S},\mathcal{A},\epsilon)$ triple, the meta-framework is best read as a partial taxonomy rather than a universal one.
  • My inference: the penalty reformulation (Eq. 13) shows hard constraints and soft penalties are two encodings of the same alignment intent, so the threshold form $\mathcal{A}\le\epsilon$ is a presentation choice; that suggests the operator itself, not the inequality, is the durable contribution.
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 / 5 minor

Summary. The paper is a survey of Federated Learning organized around a proposed 'meta-framework' of eight modules (infrastructure, communication, aggregation, data, model, security, privacy, trustworthiness). Its central intellectual claim is that Federated Learning should be understood through two equally fundamental operators: aggregation, which combines client updates, and a newly named 'Alignment' operator, which constrains and guides aggregation toward objectives such as fairness, convergence, or robustness. The survey formalizes this in Section 2.2 as a single constrained optimization template, Eq. (2), and then uses that template to organize a broad literature review covering historical background, aggregation methods, communication strategies, data handling, security, privacy, trustworthiness, Python frameworks, applications, and future directions.

Significance. If the formal template and the Modular Alignment framing were fully faithful, the paper would provide a useful organizing perspective for a fragmented literature. The survey is broad and generally well-referenced, and it does not claim a numerical evaluation, so its value lies in the taxonomy and the historical and practical systematization. The comparison tables for FL frameworks and the coverage of topics such as split learning, token-based aggregation, and trustworthy FL are useful starting points for newcomers. However, the formal core is currently not reliable enough to support the paper's strongest claims: Eq. (2) is presented as a general template for FL optimization, but several FL families discussed in the same paper do not fit it without substantial reinterpretation, and the accompanying formal definitions contain mathematical errors. These are load-bearing issues for the paper's identity as a 'meta-framework' and for the claimed novelty of the Alignment operator, so they need to be repaired or the claims need to be narrowed.

major comments (4)
  1. [§2.2, Eq. (2)] The claim that Eq. (2) is a general template for FL optimization is not supported by the paper's own material. Eq. (2) contains a single global parameter θ, per-client parameters θ_c, an aggregation function S over losses, and one alignment constraint A ≤ ε. However, Clustered FL (Eqs. (15)–(16)) involves K global models and discrete cluster-membership variables; there is no discrete variable and no per-cluster θ_k in Eq. (2). Heterogeneous-model distillation methods (Section 4.2.3, e.g., RHFL) align clients that have no common parameter space, so an alignment operator defined on θ and {θ_c} as in Eqs. (5)–(7) does not describe them. Token-based decentralized aggregation (Section 4.2.4) has no persistent global model, and vertical FL with split networks concatenates client embeddings into a server-side model, which is not an instance of S over client losses. The paper neither proves that every FL method reduces to Eq. (2) nor shows how the acknowledged bilevel CFL objective is embedded. I recommend either restricting the template claim to a well-defined subclass (e.g., server-client FL with a shared parameter space) or explicitly presenting Eq. (2) as one canonical formulation among several, rather than as the unifying umbrella.
  2. [§2.2, Eqs. (5)–(7)] Eqs. (5)–(7) are written as function definitions but contain inequalities. For example, Eq. (5) states 'A(θ,{θ_c}) := ||θ − θ_c|| ≤ ε, c = 1,...,N,' which is a constraint, not a definition of A as a function. The same issue appears in Eq. (7). This matters because Eq. (2) uses A as a function with a componentwise inequality A ≤ ε. The text should define A as a vector-valued function, e.g., A(θ,{θ_c}) = (||θ − θ_1||, ..., ||θ − θ_N||), and then state the constraint separately. The subsequent examples in Eqs. (8)–(12) should be brought into the same notation so that the formal framework is internally consistent.
  3. [§2.2, Eq. (13)] The penalty in Eq. (13) has the wrong sign. The term g(A) := max(−(A − ε),0)^2 penalizes values of A that are below ε, i.e., feasible points of the constraint A ≤ ε, and leaves violating points with A > ε unpenalized. The correct penalty for the constraint A ≤ ε is max(A − ε,0)^2. Since the surrounding paragraph claims a relation between Eq. (13) and Eq. (10), this error directly affects the formal basis of the paper's treatment of alignment as a soft constraint. Please correct the sign and recheck the stated relationship.
  4. [§1 and §4.2.7] The paper repeatedly describes the Alignment operator as 'novel' and as 'as fundamental as aggregation,' but the formal content of A in Eq. (2) is a constraint or regularizer already present in the cited personalization and consensus literature (e.g., references [103, 11, 19] and formulations (8)–(12)). The paper does not provide a criterion distinguishing an 'alignment operator' from an ordinary constraint, nor does it show that the taxonomy yields predictions or design rules that existing surveys do not offer. I would therefore recommend repositioning the contribution: the Alignment perspective is a useful organizing viewpoint, but describing it as a novel operator overstates the formal novelty and should be toned down or supported by a sharper definition with clear scope conditions.
minor comments (5)
  1. [§2.1.1, Eq. (1)] The notation D := ⋃_{c=1}^N D_c with |D| = Σ |D_c| implicitly assumes that the local datasets are disjoint; this assumption should be stated explicitly, since overlapping datasets would change the cardinality identity.
  2. [§2.2.1, Eq. (17)] Eq. (17) bundles the server aggregation rule and the local SGD update into one line; the aggregation update θ ← Σ (|D_c|/|D|) θ_c and the local update θ_c^{s+1} ← θ_c^s − η∇ℓ(θ_c^s) should be numbered or separated to avoid confusion about what is being updated in each step.
  3. [§4.7.3] The text directs the reader to 'Fig. 6' for an overview of Federated Learning algorithms concerning privacy, but Fig. 6 is the Split-NN architecture figure; the cross-reference appears to be incorrect and should be fixed or removed.
  4. [§5, Table 8] The starred quality ratings in Table 8 are not defined; a short rubric explaining what distinguishes (*) from (***) would make the comparison more objective and useful.
  5. [§4.2.4 and §4.3.3] The token in token-based aggregation is described both as 'the global model' and as a local artifact that 'acts as the global model' while hopping between nodes; this ambiguity should be clarified, since it bears directly on whether token-based FL can be represented by Eq. (2) with a single persistent θ.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity: the Alignment operator is a definitional taxonomy contribution, and no claimed result reduces to its own inputs.

full rationale

This is a survey and meta-framework paper, not a derivation of empirical predictions. Section 2.2 defines Eq. (2) with an aggregation function S and an alignment function A, and Section 4.2.7 recalls Eq. (23) as the same constrained objective and names A the Alignment operator. This is a naming and formalization move, not a claim that A is derived from S or from the survey's own structure. The only author self-citation in the historical section ([119], attributed to Jakovetic et al.) supports a historical remark about distributed Nesterov methods and is not load-bearing for the taxonomy. The paper's Eq. (13) contains a sign error (it penalizes A below epsilon rather than above), but this is a correctness issue, not a circular step. The framework's validity depends on whether Eq. (2) faithfully covers all FL variants, which is a modeling and coverage concern rather than a self-referential derivation; no fitted parameters are renamed as predictions and no load-bearing claim reduces to its own input.

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

The paper is a survey, so the ledger contains no fitted parameters. The central conceptual load rests on the assumption that FL reduces to Eq. (2), that eight modules are the right decomposition, and that 'alignment' is a meaningful new primitive. These are domain assumptions, not mathematical axioms. The only invented entity is the alignment operator, which has no external evidence.

assumptions (4)
  • domain assumption Federated learning can be modeled as one constrained optimisation problem of the form Eq. (2).
    Section 2.2 states that a Federated Learning problem can usually be considered an optimisation problem and formalizes all variants through S, A, and epsilon. This is used as the foundation of the meta-framework.
  • ad hoc to paper The eight modules (infrastructure, communication, aggregation, data, model, security, privacy, trustworthiness) are an adequate and near-exhaustive decomposition of FL.
    Section 2.4 introduces the modules without a derivation or a comparison against alternative decompositions. The utility claim rests on reader acceptance.
  • domain assumption Existing FL methods can be partitioned by the formal alignment operator without loss of meaning.
    Section 4.2.7 claims that alignment generalizes works [103, 11, 19], but no mapping or evaluation shows that the taxonomy preserves algorithmic content.
  • standard math Standard optimization assumptions used in the cited literature, such as convexity, smoothness, the Polyak-Lojasiewicz condition, and bounded gradient noise, are correct where invoked.
    Section 2.2.2 surveys convergence results and relies on those published proofs rather than re-deriving them.
invented entities (1)
  • Alignment operator A
    purpose: Conceptual operator that constrains aggregation to enforce fairness, robustness, or personalized similarity in FL.
    No falsifiable prediction or algorithmic implementation is attached. Its examples are rearranged constraints from existing FL papers, so it functions as a renaming with no independent empirical handle.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Modular Federated Learning: A Meta-Framework Perspective." pith.science (2026). https://pith.science/paper/SEDH3BYA

@misc{pith2026250508646,
  author       = {Pith},
  title        = {Pith review of: Modular Federated Learning: A Meta-Framework Perspective},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/SEDH3BYA}},
  note         = {Machine review of arXiv:2505.08646}
}
read the original abstract

Federated Learning (FL) enables distributed machine learning training while preserving privacy, representing a paradigm shift for data-sensitive and decentralized environments. Despite its rapid advancements, FL remains a complex and multifaceted field, requiring a structured understanding of its methodologies, challenges, and applications. In this survey, we introduce a meta-framework perspective, conceptualising FL as a composition of modular components that systematically address core aspects such as communication, optimisation, security, and privacy. We provide a historical contextualisation of FL, tracing its evolution from distributed optimisation to modern distributed learning paradigms. Additionally, we propose a novel taxonomy distinguishing Aggregation from Alignment, introducing the concept of alignment as a fundamental operator alongside aggregation. To bridge theory with practice, we explore available FL frameworks in Python, facilitating real-world implementation. Finally, we systematise key challenges across FL sub-fields, providing insights into open research questions throughout the meta-framework modules. By structuring FL within a meta-framework of modular components and emphasising the dual role of Aggregation and Alignment, this survey provides a holistic and adaptable foundation for understanding and advancing FL research and deployment.

Figures

Figures reproduced from arXiv: 2505.08646 by the authors.

Figure 1
Figure 1. Standard centralised Federated Learning Setting. Each client 𝑐 learns a local model and shares it with a central server, aggregating the individual model parameters and then sending this new global model back to the clients. This process is repeated for several rounds until a certain criterion is met. Server Cross-Device Cross-Silo Hierarchical FL Server Server Server Server Server ∑ ∑ ∑ [PITH_FULL_IMAGE:figures/fu… view at source ↗
Figure 2
Figure 2. Contrasting different infrastructure meta-types of Federated Learning architectures. Cross-Device FL utilises low-resource devices with uncontrollable training availability (e.g. smartphones, microcontrollers). Cross-Silo is based on a reliable infrastructure such as a collection of servers. Hierarchical FL mixes Cross-Device and Cross-Silo FL infrastructure. Client0 Feat 0 Feat 1 Feat n ... Client c Feat 0 Feat 1 F… view at source ↗
Figure 3
Figure 3. Abstract overview of the main differences between Horizontal and Vertical Federated Learning. Horizontal Federated Learning (left) expects the same features across clients, while Vertical Federated Learning (right) involves clients with different features. Frederico Vicente et al. Page 64 of 63 [PITH_FULL_IMAGE:figures/full_fig_p064_3.png] view at source ↗
Figures from the paper (20 more)
Figure 4
Figure 4. Figure 4: Meta-Framework overview of the Federated Learning paradigm as a fusion of key modules categorised into Infrastructure, Data, Threat Protection, Distributed Optimisation, and Model Design. Client Client Server / Cluster Input Output Heavy Computation [PITH_FULL_IMAGE:f…
Figure 5
Figure 5. Figure 5: Abstract depiction of Split Learning, which shares a neural network model computational execution between clients and more computational-powered servers. X1 𝞱1 h1 (𝞱1 ) Xn 𝞱n hn (𝞱n ) A(•) ••• h0 𝞱0 f(𝞱0 ) [PITH_FULL_IMAGE:figures/full_fig_p065_5.png]
Figure 6
Figure 6. Figure 6: Split-NN architecture overview. Distributed Learning network where each client trains an intermediate representation and shares it with a server, which then fuses them, applies backpropagation, and defuses the update with the clients. Frederico Vicente et al. Page 65 o…
Figure 7
Figure 7. Figure 7: Comparison of distributed network topologies: (Left) Centralised server-client star schema with a single control point. (Middle) Decentralised peer-to-peer system with direct client communication. (Right) Semi-decentralised topology combining peer-to-peer and server co…
Figure 8
Figure 8. Figure 8: Impact of stragglers on Synchronous vs Asynchronous Federated Learning. Initially, both approaches behave similarly, but after cohort formation, asynchronous servers/clients progress faster by not waiting for stragglers, leading to quicker convergence in fewer training…
Figure 9
Figure 9. Figure 9: Abstract overview over a federated clustering algorithm, which groups together clients in clusters (A: client 1,4; B: client 2,5; C: client 3) according to how similar their data distributions are. The circles represent the class distributions when considering a classi…
Figure 10
Figure 10. Figure 10: Popular data preparation techniques involve using Sharding (left), the Dirichlet distribution (middle), and a combination of the Dirichlet distribution and manipulating the number of elements in the datasets (right). The different colors represent distinct features, w…
Figure 11
Figure 11. Figure 11: Overview of Horizontal vs. Vertical Reinforcement Federated Learning. (Left) Horizontal FL, where each node explores a different environment. (Right) Vertical FL, with multiple clients observing a shared environment. Adapted from Qi et al. [211]. Average Gradient Well…
Figure 12
Figure 12. Figure 12: Byzantine Gradient Attack. Showcasing how a gradient attack can affect the update of the FedSGD algorithm. Server/Client Model Untrusted Client TEE Data ML Algorithms ML Model Training Procedure Inference Procedure [PITH_FULL_IMAGE:figures/full_fig_p067_12.png]
Figure 13
Figure 13. Figure 13 [PITH_FULL_IMAGE:figures/full_fig_p067_13.png]
Figure 14
Figure 14. Figure 14: Abstract example of how Secure Aggregation mechanism can be applied to Federated Learning. Each client holds one or more masks which are added to the model weights, conditioned that the sum of all masks from the different clients must add up to 0, so they cancel out. …
Figure 15
Figure 15. Figure 15: Showcasing the capabilities of the Gradient Inversion technique extracted from gradients obtained from a Federated Learning setting. Adapted from GradInversion [314]. Client Model Parameters Loss Function Input Data Optimiser M(d1 ) M(d2 ) [PITH_FULL_IMAGE:figures/fu…
Figure 16
Figure 16. Figure 16: Differential Privacy mechanism and its possible applications (e.g. Model Parameters, Loss Function, Optimiser, Input Data). Frederico Vicente et al. Page 68 of 63 [PITH_FULL_IMAGE:figures/full_fig_p068_16.png]
Figure 17
Figure 17. Figure 17: We present a FHE framework applied to a neural network use case. Notice that after a homomorphic operation, noise is additionally added to the encrypted input. Above a certain threshold of noise, FHE execution starts deteriorating the correctness of the decryption pro…
Figure 18
Figure 18. Figure 18: We present four different time-evolving types of data distribution shifts occurring in a Federation, also known as Clients Concept Drift. Each colour represents a different concept distribution. Adapted from Jothimurugesan et al. [125]. Global Model (round r - 1) Glob…
Figure 19
Figure 19. Figure 19: Clients Models drifting when their intrinsic concept distribution changes. Frederico Vicente et al. Page 69 of 63 [PITH_FULL_IMAGE:figures/full_fig_p069_19.png]
Figure 20
Figure 20. Figure 20: Two heterogeneous clients being modelled with Gaussians, depicting how poorly the FedAvg algorithm can be for aligning heterogeneous clients, in comparison with the FL Bayesian framework [164]. Frederico Vicente et al. Page 70 of 63 [PITH_FULL_IMAGE:figures/full_fig_…
Figure 21
Figure 21. Figure 21: An architectural overview of the modular options for building an FL framework is presented. The + operator indicates the possibility of stacking modules, while the | operator represents a modular design choice. Although we aimed to cover many modular possibilities in …
Figure 22
Figure 22. Figure 22: Standard Machine Learning Application life-cycle. Deployment Machine Learning pipelines, normally, have 3 main phases: 1. Data Management; 2. Model Training; 3. Model Deployment. To make the pipeline robust, the introduction of a cycle comes naturally with the help of…
Figure 23
Figure 23. Figure 23: According to Wu et al. [291], Federated Learning can have considerable CO2 emissions (carbon footprint), when compared with standard centralised Large Models training. Frederico Vicente et al. Page 72 of 63 [PITH_FULL_IMAGE:figures/full_fig_p072_23.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

298 extracted references · 32 canonical work pages

  1. [1]

    A survey on homomorphic encryption schemes: Theory and implementation

    Acar, A., Aksu, H., Uluagac, A.S., Conti, M., 2018. A survey on homomorphic encryption schemes: Theory and implementation. ACM Comput. Surv. 51. URL:https://doi.org/10.1145/3214303, doi:10.1145/3214303

  2. [2]

    Personalized federated learning with gaussian processes, in: Ranzato, M., Beygelzimer, A., Dauphin, Y., Liang, P., Vaughan, J.W

    Achituve, I., Shamsian, A., Navon, A., Chechik, G., Fetaya, E., 2021. Personalized federated learning with gaussian processes, in: Ranzato, M., Beygelzimer, A., Dauphin, Y., Liang, P., Vaughan, J.W. (Eds.), Advances in Neural Information Processing Sys- tems, Curran Associates, Inc.. pp. 8392–8406. URL:https://proceedings.neurips.cc/paper_files/paper/2021...

  3. [3]

    Prio+:Privacypreservingaggregatestatisticsviabooleanshares, in: Galdi, C., Jarecki, S

    Addanki,S.,Garbe,K.,Jaffe,E.,Ostrovsky,R.,Polychroniadou,A.,2022. Prio+:Privacypreservingaggregatestatisticsviabooleanshares, in: Galdi, C., Jarecki, S. (Eds.), Security and Cryptography for Networks, Springer International Publishing, Cham. pp. 516–539

  4. [4]

    Genetic cfl: Hyperparameter optimization in clustered federated learning

    Agrawal, S., Sarkar, S., Alazab, M., Maddikunta, P.K.R., Gadekallu, T.R., Pham, Q.V., 2021. Genetic cfl: Hyperparameter optimization in clustered federated learning. Computational Intelligence and Neuroscience 2021, 7156420. URL:https: //onlinelibrary.wiley.com/doi/abs/10.1155/2021/7156420, doi:https://doi.org/10.1155/2021/7156420, arXiv:https://onlinelib...

  5. [5]

    Membershield:Aframeworkforfederatedlearningwithmembershipprivacy

    Ahmed,F.,Sanchez,D.,Haddi,Z.,Domingo-Ferrer,J.,2025. Membershield:Aframeworkforfederatedlearningwithmembershipprivacy. Neural Networks 181, 106768. Frederico Vicente et al. Page 50 of 63 Modular Federated Learning: A Meta-Framework Perspective

  6. [6]

    Formal logic enabled personalized federated learning through property inference, in: Proceedings of the 38th AAAI Conference on Artificial Intelligence (AAAI’24)

    An, Z., Johnson, T.T., Ma, M., 2024. Formal logic enabled personalized federated learning through property inference, in: Proceedings of the 38th AAAI Conference on Artificial Intelligence (AAAI’24). doi:10.1609/aaai.v38i10.28962

  7. [7]

    Learning from noisy examples

    Angluin, D., Laird, P., 1988. Learning from noisy examples. Machine Learning 2, 343–370. URL:https://doi.org/10.1023/A: 1022873112823, doi:10.1023/A:1022873112823

  8. [8]

    A public domain dataset for human activity recognition using smartphones., in: Esann, p

    Anguita, D., Ghio, A., Oneto, L., Parra, X., Reyes-Ortiz, J.L., et al., 2013. A public domain dataset for human activity recognition using smartphones., in: Esann, p. 3

Show all 298 references
  1. [9]

    Largescaledistributedneuralnetworktrainingthroughonline distillation

    Anil,R.,Pereyra,G.,Passos,A.,Ormandi,R.,Dahl,G.E.,Hinton,G.E.,2018. Largescaledistributedneuralnetworktrainingthroughonline distillation. arXiv preprint arXiv:1804.03235

  2. [10]

    Common voice: A massively-multilingual speech corpus, in: ProceedingsoftheTwelfthLanguageResourcesandEvaluationConference,EuropeanLanguageResourcesAssociation,Marseille,France

    Ardila, R., Branson, M., Davis, K., Kohler, M., Meyer, J., et al., 2020. Common voice: A massively-multilingual speech corpus, in: ProceedingsoftheTwelfthLanguageResourcesandEvaluationConference,EuropeanLanguageResourcesAssociation,Marseille,France. pp. 4218–4222. URL:https://...

  3. [11]

    Personalized federated learning via convex clustering, in: 2022 IEEE International Smart Cities Conference (ISC2), pp

    Armacki, A., Bajovic, D., Jakovetic, D., Kar, S., 2022. Personalized federated learning via convex clustering, in: 2022 IEEE International Smart Cities Conference (ISC2), pp. 1–7. doi:10.1109/ISC255366.2022.9921863

  4. [12]

    Awan,S.,Luo,B.,Li,F.,2021. Contra:Defendingagainstpoisoningattacksinfederatedlearning,in:ComputerSecurity–ESORICS2021: 26thEuropeanSymposiumonResearchinComputerSecurity,Darmstadt,Germany,October4–8,2021,Proceedings,PartI,Springer-Verlag, Berlin, Heidelberg. p. 455–475. URL:htt...

  5. [13]

    URL:https://openreview.net/pdf?id=ozN92d7CHX

    Azam,S.S.,Pelikan,M.,Feldman,V.,Talwar,K.,Silovsky,H.,Likhomanenko,T.,2023.Federatedlearningforspeechrecognition:Revisiting current trends towards large-scale asr, in: NeurIPS. URL:https://openreview.net/pdf?id=ozN92d7CHX

  6. [14]

    Openfhe:Open- sourcefullyhomomorphicencryptionlibrary

    Badawi,A.A.,Bates,J.,Bergamaschi,F.,Cousins,D.B.,Erabelli,S.,Genise,N.,Halevi,S.,Hunt,H.,Kim,A.,Lee,Y.,Liu,Z.,Micciancio, D.,Quah,I.,Polyakov,Y.,R.V.,S.,Rohloff,K.,Saylor,J.,Suponitsky,D.,Triplett,M.,Vaikuntanathan,V.,Zucca,V.,2022. Openfhe:Open- sourcefullyhomomorphicencrypti...

  7. [15]

    Differential privacy has disparate impact on model accuracy

    Bagdasaryan, E., Poursaeed, O., Shmatikov, V., 2019. Differential privacy has disparate impact on model accuracy. Curran Associates Inc., Red Hook, NY, USA

  8. [16]

    Membership inference attacks and defenses in federated learning: A survey

    Bai, L., Hu, H., Ye, Q., Li, H., Wang, L., Xu, J., 2024. Membership inference attacks and defenses in federated learning: A survey. ACM Computing Surveys 57, 1–35

  9. [17]

    Entropy-based logic explanations of neural networks

    Barbiero, P., Ciravegna, G., Giannini, F., Lió, P., Gori, M., Melacci, S., 2022. Entropy-based logic explanations of neural networks. Proceedings of the AAAI Conference on Artificial Intelligence 36, 6046–6054. URL:https://ojs.aaai.org/index.php/AAAI/ article/view/20551, doi:1...

  10. [18]

    A little is enough: Circumventing defenses for distributed learning 32

    Baruch, G., Baruch, M., Goldberg, Y., 2019. A little is enough: Circumventing defenses for distributed learning 32. URL:https: //proceedings.neurips.cc/paper_files/paper/2019/file/ec1c59141046cd1866bbbcdfb6ae31d4-Paper.pdf

  11. [19]

    Fedbc: Calibrating global and local models via federated learning beyond consensus

    Bedi, A.S., Fan, C., Koppel, A., Sahu, A.K., Sadler, B.M., Huang, F., Manocha, D., 2022. Fedbc: Calibrating global and local models via federated learning beyond consensus. arXiv preprint arXiv:2206.10815

  12. [20]

    Behera, M.R., upadhyay, s., Shetty, S., Otter, R., 2021. Federated learning using peer-to-peer network for decentralized orchestration of model weights URL:http://dx.doi.org/10.36227/techrxiv.14267468.v1, doi:10.36227/techrxiv.14267468.v1

  13. [21]

    Scionfl:Efficientandrobustsecurequantizedaggregation,in:2024IEEEConferenceonSecureandTrustworthyMachineLearning(SaTML), IEEE

    Ben-Itzhak, Y., Möllering, H., Pinkas, B., Schneider, T., Suresh, A., Tkachenko, O., Vargaftik, S., Weinert, C., Yalame, H., Yanai, A., 2024. Scionfl:Efficientandrobustsecurequantizedaggregation,in:2024IEEEConferenceonSecureandTrustworthyMachineLearning(SaTML), IEEE. pp. 490–511

  14. [22]

    Parallel and Distributed Computation: Numerical Methods

    Bertsekas, D.P., Tsitsiklis, J.N., 1997. Parallel and Distributed Computation: Numerical Methods. Athena Scientific

  15. [23]

    Flower: A friendly federated learning research framework

    Beutel,D.J.,Topal,T.,Mathur,A.,Qiu,X.,Fernandez-Marques,J.,Gao,Y.,Sani,L.,Li,K.H.,Parcollet,T.,deGusmão,P.P.B.,etal.,2020. Flower: A friendly federated learning research framework. arXiv preprint arXiv:2007.14390

  16. [24]

    Experiment tracking with weights and biases

    Biewald, L., 2020. Experiment tracking with weights and biases. URL:https://www.wandb.com/. software available from wandb.com

  17. [25]

    Sok: Technical implementation and human impact of internet privacy regulations, in: 2024 IEEE Symposium on Security and Privacy (SP), IEEE

    Birrell, E., Rodolitz, J., Ding, A., Lee, J., McReynolds, E., Hutson, J., Lerner, A., 2024. Sok: Technical implementation and human impact of internet privacy regulations, in: 2024 IEEE Symposium on Security and Privacy (SP), IEEE. pp. 673–696

  18. [26]

    Machine learning with adversaries: Byzantine tolerant gradient descent, in: Guyon, I., Luxburg, U.V., Bengio, S., Wallach, H., Fergus, R., Vishwanathan, S., Garnett, R

    Blanchard, P., El Mhamdi, E.M., Guerraoui, R., Stainer, J., 2017. Machine learning with adversaries: Byzantine tolerant gradient descent, in: Guyon, I., Luxburg, U.V., Bengio, S., Wallach, H., Fergus, R., Vishwanathan, S., Garnett, R. (Eds.), Advances in Neural Information Pro...

  19. [27]

    Towards federated learning at scale: System design, in: Talwalkar, A., Smith, V., Zaharia, M

    Bonawitz, K., Eichner, H., Grieskamp, W., Huba, D., Ingerman, A., Ivanov, V., Kiddon, C., Konečný, J., Mazzocchi, S., McMahan, B., Van Overveldt, T., Petrou, D., Ramage, D., Roselander, J., 2019. Towards federated learning at scale: System design, in: Talwalkar, A., Smith, V.,...

  20. [28]

    Bonawitz, K., Ivanov, V., Kreuter, B., Marcedone, A., McMahan, H.B., Patel, S., Ramage, D., Segal, A., Seth, K., 2017. Practical secure aggregation for privacy-preserving machine learning, in: Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Securit...

  21. [29]

    Practical secure aggregation for federated learning on user-held data, in: NIPS Workshop on Private Multi-Party Machine Learning

    Bonawitz, K.A., Ivanov, V., Kreuter, B., Marcedone, A., McMahan, H.B., Patel, S., Ramage, D., Segal, A., Seth, K., 2016. Practical secure aggregation for federated learning on user-held data, in: NIPS Workshop on Private Multi-Party Machine Learning. URL:https: //arxiv.org/abs...

  22. [30]

    Asymptotic agreement in distributed estimation

    Borkar, V., Varaiya, P., 1982. Asymptotic agreement in distributed estimation. IEEE transactions on automatic control 27, 650–655

  23. [31]

    Orbit decentralized autonomous organization using blockchain-based consensus mechanisms

    Boumghar, R., Riccardi, A., Guzmán Alvarez, C., Ameen, S., 2023. Orbit decentralized autonomous organization using blockchain-based consensus mechanisms. Frederico Vicente et al. Page 51 of 63 Modular Federated Learning: A Meta-Framework Perspective

  24. [32]

    Distributed optimization and statistical learning via the alternating direction method of multipliers

    Boyd, S., Parikh, N., Chu, E., Peleato, B., Eckstein, J., 2011. Distributed optimization and statistical learning via the alternating direction method of multipliers. Foundations and Trends®in Machine Learning 3, 1–122. URL:http://dx.doi.org/10.1561/2200000016, doi:10.1561/2200000016

  25. [33]

    Fate, flower, pysyft & co

    Braungardt, A., 2023. Fate, flower, pysyft & co. — federated learning frameworks in python.https://medium.com/elca-it/ flower-pysyft-co-federated-learning-frameworks-in-python-b1a8eda68b0d. Accessed: 2024-01-23

  26. [34]

    Cai,H.,Gan,C.,MassachusettsInstituteofTechnology,L.Z.,MassachusettsInstituteofTechnology,S.H.,2020. Tinytl:reducememory,not parametersforefficienton-devicelearning,in:Proceedingsofthe34thInternationalConferenceonNeuralInformationProcessingSystems, Curran Associates Inc., Red H...

  27. [35]

    Leaf: A benchmark for federated settings

    Caldas, S., Duddu, S.M.K., Wu, P., Li, T., Konečn`y, J., McMahan, H.B., Smith, V., Talwalkar, A., 2018a. Leaf: A benchmark for federated settings. arXiv preprint arXiv:1812.01097

  28. [36]

    Expanding the reach of federated learning by reducing client resource requirements

    Caldas, S., Konečny, J., McMahan, H.B., Talwalkar, A., 2018b. Expanding the reach of federated learning by reducing client resource requirements. arXiv preprint arXiv:1812.07210

  29. [38]

    Bayesianfederatedlearning:Asurvey

    Cao,L.,Chen,H.,Fan,X.,Gama,J.,Ong,Y.S.,Kumar,V.,2023b. Bayesianfederatedlearning:Asurvey. arXivpreprintarXiv:2304.13267

  30. [39]

    Learning autoencoder ensembles for detecting mal- ware hidden communications in iot ecosystems

    Cassavia, N., Caviglione, L., Guarascio, M., Liguori, A., Zuppelli, M., 2023. Learning autoencoder ensembles for detecting mal- ware hidden communications in iot ecosystems. Journal of Intelligent Information Systems URL:https://doi.org/10.1007/ s10844-023-00819-8, doi:10.1007...

  31. [40]

    Diffusion recursive least-squares for distributed estimation over adaptive networks

    Cattivelli, F.S., Lopes, C.G., Sayed, A.H., 2008. Diffusion recursive least-squares for distributed estimation over adaptive networks. IEEE Transactions on Signal Processing 56, 1865–1877. doi:10.1109/TSP.2007.913164

  32. [41]

    Splitnn-driven vertical partitioning

    Ceballos, I., Sharma, V., Mugica, E., Singh, A., Roman, A., Vepakomma, P., Raskar, R., 2020. Splitnn-driven vertical partitioning. arXiv preprint arXiv:2008.04137

  33. [42]

    Chai, Z., Ali, A., Zawad, S., Truex, S., Anwar, A., Baracaldo, N., Zhou, Y., Ludwig, H., Yan, F., Cheng, Y., 2020. Tifl: A tier-based federated learning system, in: Proceedings of the 29th International Symposium on High-Performance Parallel and Distributed Computing, Associat...

  34. [43]

    A decentralized federated learning using reputation

    Chakraborty, O., Boudguiga, A., 2024. A decentralized federated learning using reputation. Cryptology ePrint Archive

  35. [44]

    Stochastic primal-dual hybrid gradient algorithm with arbitrary sampling and imaging applications

    Chambolle, A., Ehrhardt, M.J., Richtárik, P., Schönlieb, C.B., 2018. Stochastic primal-dual hybrid gradient algorithm with arbitrary sampling and imaging applications. SIAM Journal on Optimization 28, 2783–2808. URL:https://doi.org/10.1137/17M1134834, doi:10.1137/17M1134834,ar...

  36. [45]

    Chambolle,A.,Pock,T.,2011.Afirst-orderprimal-dualalgorithmforconvexproblemswithapplicationstoimaging.Journalofmathematical imaging and vision 40, 120–145

  37. [46]

    A blockchain-based federated learning method for smart healthcare

    Chang, Y., Fang, C., Sun, W., 2021. A blockchain-based federated learning method for smart healthcare. Computational Intelligence and Neuroscience 2021

  38. [47]

    A fast distributed proximal-gradient method

    Chen, A.I., Chen, A.I., Ozdaglar, A., Ozdaglar, A., 2012. A fast distributed proximal-gradient method. Allerton Conference on Communication, Control, and Computing doi:10.1109/allerton.2012.6483273

  39. [48]

    Asynchronous parallel incremental block-coordinate descent for decentralized machine learning

    Chen, H., Ye, Y., Xiao, M., Skoglund, M., 2023a. Asynchronous parallel incremental block-coordinate descent for decentralized machine learning. IEEE Transactions on Big Data 9, 1252–1259. doi:10.1109/TBDATA.2022.3230335

  40. [49]

    Revisiting distributed synchronous sgd

    Chen, J., Pan, X., Monga, R., Bengio, S., Jozefowicz, R., 2016. Revisiting distributed synchronous sgd. arXiv preprint arXiv:1604.00981

  41. [50]

    Feddual: Pair-wise gossip helps federated learning in large decentralized networks

    Chen, Q., Wang, Z., Wang, H., Lin, X., 2023b. Feddual: Pair-wise gossip helps federated learning in large decentralized networks. IEEE Transactions on Information Forensics and Security 18, 335–350. doi:10.1109/TIFS.2022.3222935

  42. [51]

    A simple framework for contrastive learning of visual representations, in: III, H.D., Singh, A

    Chen, T., Kornblith, S., Norouzi, M., Hinton, G., 2020. A simple framework for contrastive learning of visual representations, in: III, H.D., Singh, A. (Eds.), Proceedings of the 37th International Conference on Machine Learning, PMLR. pp. 1597–1607. URL:https: //proceedings.m...

  43. [52]

    Distributedstatisticalmachinelearninginadversarialsettings:Byzantinegradientdescent

    Chen,Y.,Su,L.,Xu,J.,2017. Distributedstatisticalmachinelearninginadversarialsettings:Byzantinegradientdescent. Proc.ACMMeas. Anal. Comput. Syst. 1. URL:https://doi.org/10.1145/3154503, doi:10.1145/3154503

  44. [53]

    Treescope: An agricultural robotics dataset for lidar-based mapping of trees in forests and orchards

    Cheng, D., Ojeda, F.C., Prabhu, A., Liu, X., Zhu, A., Green, P.C., Ehsani, R., Chaudhari, P., Kumar, V., 2023. Treescope: An agricultural robotics dataset for lidar-based mapping of trees in forests and orchards. arXiv preprint arXiv:2310.02162

  45. [54]

    Client selection in federated learning: Convergence analysis and power-of-choice selection strategies

    Cho, Y.J., Wang, J., Joshi, G., 2020. Client selection in federated learning: Convergence analysis and power-of-choice selection strategies. arXiv preprint arXiv:2010.01243

  46. [55]

    Exploiting shared representations for personalized federated learning, in: Meila, M., Zhang, T

    Collins, L., Hassani, H., Mokhtari, A., Shakkottai, S., 2021. Exploiting shared representations for personalized federated learning, in: Meila, M., Zhang, T. (Eds.), Proceedings of the 38th International Conference on Machine Learning, PMLR. pp. 2089–2099. URL: https://proceed...

  47. [56]

    Randprox: Primal-dual optimization algorithms with randomized proximal updates, in: The Eleventh International Conference on Learning Representations

    Condat, L., Richtárik, P., 2023. Randprox: Primal-dual optimization algorithms with randomized proximal updates, in: The Eleventh International Conference on Learning Representations. URL:https://openreview.net/forum?id=cB4N3G5udUS

  48. [57]

    Control, M., 2022. Friends – federated reconfigurable infrastructure via edge devices in space.https://nebula.esa.int/content/ beyond-mission-paradigm-federated-reconfigurable-infrastructure-edge-devices-space-friends. Accessed: 2024- 02-12

  49. [58]

    tinygrad.https://github.com/tinygrad/tinygrad

    tiny corp, 2020. tinygrad.https://github.com/tinygrad/tinygrad

  50. [59]

    Corrigan-Gibbs, H., Boneh, D., 2017. Prio: Private, robust, and scalable computation of aggregate statistics, in: 14th USENIX Symposium on Networked Systems Design and Implementation (NSDI 17), USENIX Association, Boston, MA. pp. 259–282. URL:https://www. usenix.org/conference...

  51. [60]

    Fed-biomed: open, transparent and trusted federated learning for real-world healthcare applications

    Cremonesi, F., Vesin, M., Cansiz, S., Bouillard, Y., Balelli, I., Innocenti, L., Silva, S., Ayed, S.S., Taiello, R., Kameni, L., et al., 2023. Fed-biomed: open, transparent and trusted federated learning for real-world healthcare applications. arXiv preprint arXiv:2304.12012

  52. [61]

    Cinic-10 is not imagenet or cifar-10.arXiv:1810.03505

    Darlow, L.N., Crowley, E.J., Antoniou, A., Storkey, A.J., 2018. Cinic-10 is not imagenet or cifar-10.arXiv:1810.03505

  53. [62]

    Faster non-convex federated learning via global and local momentum, in: Uncertainty in Artificial Intelligence, PMLR

    Das, R., Acharya, A., Hashemi, A., Sanghavi, S., Dhillon, I.S., Topcu, U., 2022. Faster non-convex federated learning via global and local momentum, in: Uncertainty in Artificial Intelligence, PMLR. pp. 496–506

  54. [63]

    Saga: A fast incremental gradient method with support for non-strongly convex composite objectives

    Defazio, A., Bach, F., Lacoste-Julien, S., 2014. Saga: A fast incremental gradient method with support for non-strongly convex composite objectives. Advances in neural information processing systems 27

  55. [64]

    Reaching a consensus

    DeGroot, M.H., 1974. Reaching a consensus. Journal of the American Statistical Association 69, 118–121. URL:http://www.jstor. org/stable/2285509

  56. [65]

    From distributed machine to distributed deep learning: a comprehensive survey

    Dehghani, M., Yazdanparast, Z., 2023. From distributed machine to distributed deep learning: a comprehensive survey. Journal of Big Data 10, 158. URL:https://doi.org/10.1186/s40537-023-00829-x, doi:10.1186/s40537-023-00829-x

  57. [66]

    Multiplediseasesandpestsdetectionbasedonfederatedlearningandimprovedfaster r-cnn

    Deng,F.,Mao,W.,Zeng,Z.,Zeng,H.,Wei,B.,2022. Multiplediseasesandpestsdetectionbasedonfederatedlearningandimprovedfaster r-cnn. IEEE Transactions on Instrumentation and Measurement 71, 1–11. doi:10.1109/TIM.2022.3201937

  58. [67]

    Imagenet: A large-scale hierarchical image database, in: 2009 IEEE Conference on Computer Vision and Pattern Recognition, pp

    Deng, J., Dong, W., Socher, R., Li, L.J., Li, K., Fei-Fei, L., 2009. Imagenet: A large-scale hierarchical image database, in: 2009 IEEE Conference on Computer Vision and Pattern Recognition, pp. 248–255. doi:10.1109/CVPR.2009.5206848

  59. [68]

    A friendly, non-technical introduction to differential privacy.https://desfontain.es/privacy/ friendly-intro-to-differential-privacy.html

    Desfontaines, D., 2021. A friendly, non-technical introduction to differential privacy.https://desfontain.es/privacy/ friendly-intro-to-differential-privacy.html. Ted is writing things (personal blog)

  60. [69]

    Confidential computing on h100 gpus for secure and trustworthy ai

    Developer, N., 2024. Confidential computing on h100 gpus for secure and trustworthy ai. URL:https://developer.nvidia.com/ blog/confidential-computing-on-h100-gpus-for-secure-and-trustworthy-ai/. accessed: 2025-02-07

  61. [70]

    Onnx runtime.https://onnxruntime.ai/

    developers, O.R., 2021. Onnx runtime.https://onnxruntime.ai/. Version: x.y.z

  62. [71]

    Leveraging function space aggregation for federated learning at scale

    Dhawan, N., Mitchell, N., Charles, Z., Garrett, Z., Dziugaite, G.K., 2023. Leveraging function space aggregation for federated learning at scale. arXiv preprint arXiv:2311.10291

  63. [72]

    Ant system: optimization by a colony of cooperating agents

    Dorigo, M., Maniezzo, V., Colorni, A., 1996. Ant system: optimization by a colony of cooperating agents. IEEE Transactions on Systems, Man, and Cybernetics, Part B (Cybernetics) 26, 29–41. doi:10.1109/3477.484436

  64. [73]

    Dipaco: Distributed path composition

    Douillard, A., Feng, Q., Rusu, A.A., Kuncoro, A., Donchev, Y., Chhaparia, R., Gog, I., Ranzato, M., Shen, J., Szlam, A., 2024. Dipaco: Distributed path composition

  65. [74]

    The algorithmic foundations of differential privacy

    Dwork, C., Roth, A., 2014. The algorithmic foundations of differential privacy. Found. Trends Theor. Comput. Sci. 9, 211–407. URL: https://doi.org/10.1561/0400000042, doi:10.1561/0400000042

  66. [75]

    Scalable federated machine learning with fedn

    Ekmefjord, M., Ait-Mlouk, A., Alawadi, S., Åkesson, M., Stoyanova, D., Spjuth, O., Toor, S., Hellander, A., 2021. Scalable federated machine learning with fedn. arXiv preprint arXiv:2103.00148

  67. [76]

    Federatedlearningforwaterconsumptionforecastinginsmartcities,in:ICC 2023 - IEEE International Conference on Communications, pp

    ElHanjri,M.,Kabbaj,H.,Kobbane,A.,Abouaomar,A.,2023. Federatedlearningforwaterconsumptionforecastinginsmartcities,in:ICC 2023 - IEEE International Conference on Communications, pp. 1798–1803. doi:10.1109/ICC45041.2023.10279576

  68. [77]

    Do you need a zero knowledge proof? Cryptology ePrint Archive

    Ernstberger, J., Chaliasos, S., Zhou, L., Jovanovic, P., Gervais, A., 2024. Do you need a zero knowledge proof? Cryptology ePrint Archive

  69. [78]

    Fan, S., Rong, Y., Meng, C., Cao, Z., Wang, S., Zheng, Z., Wu, C., Long, G., Yang, J., Xia, L., Diao, L., Liu, X., Lin, W., 2021. Dapple: a pipelineddataparallelapproachfortraininglargemodels,in:Proceedingsofthe26thACMSIGPLANSymposiumonPrinciplesandPractice of Parallel Program...

  70. [79]

    Robustfederatedlearningwithnoisyandheterogeneousclients,in:2022IEEE/CVFConferenceonComputerVision and Pattern Recognition (CVPR), pp

    Fang,X.,Ye,M.,2022. Robustfederatedlearningwithnoisyandheterogeneousclients,in:2022IEEE/CVFConferenceonComputerVision and Pattern Recognition (CVPR), pp. 10062–10071. doi:10.1109/CVPR52688.2022.00983

  71. [80]

    Feldman, V., Zhang, C., 2020. What neural networks memorize and why: discovering the long tail via influence estimation, in: Proceedings of the 34th International Conference on Neural Information Processing Systems, Curran Associates Inc., Red Hook, NY, USA

  72. [81]

    Crowdfl: A marketplace for crowdsourced federated learning

    Feng, D., Helena, C., Lim, W.Y.B., Ng, J.S., Jiang, H., Xiong, Z., Kang, J., Yu, H., Niyato, D., Miao, C., 2022. Crowdfl: A marketplace for crowdsourced federated learning. Proceedings of the AAAI Conference on Artificial Intelligence 36, 13164–13166. URL:https: //ojs.aaai.org...

  73. [82]

    Fedmultimodal: A benchmark for multimodal federated learning, in: Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pp

    Feng, T., Bose, D., Zhang, T., Hebbar, R., Ramakrishna, A., Gupta, R., Zhang, M., Avestimehr, S., Narayanan, S., 2023. Fedmultimodal: A benchmark for multimodal federated learning, in: Proceedings of the 29th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, pp. 4035–4045

  74. [83]

    Foley,P.,Sheller,M.J.,Edwards,B.,Pati,S.,Riviera,W.,Sharma,M.,Moorthy,P.N.,Wang,S.h.,Martin,J.,Mirhaji,P.,Shah,P.,Bakas,S.,

  75. [84]

    A selective federated reinforcement learning strategy for autonomous driving

    Fu, Y., Li, C., Yu, F.R., Luan, T.H., Zhang, Y., 2023. A selective federated reinforcement learning strategy for autonomous driving. IEEE Transactions on Intelligent Transportation Systems 24, 1655–1668. doi:10.1109/TITS.2022.3219644

  76. [85]

    Substra: a framework for privacy-preserving, traceable and collaborative machine learning

    Galtier, M.N., Marini, C., 2019. Substra: a framework for privacy-preserving, traceable and collaborative machine learning. arXiv preprint arXiv:1910.11567

  77. [86]

    P3: Distributed deep graph learning at scale, in: 15th USENIX Symposium on Operating Systems Design and Implementation (OSDI 21), USENIX Association

    Gandhi, S., Iyer, A.P., 2021. P3: Distributed deep graph learning at scale, in: 15th USENIX Symposium on Operating Systems Design and Implementation (OSDI 21), USENIX Association. pp. 551–568. URL:https://www.usenix.org/conference/osdi21/ presentation/gandhi

  78. [87]

    Physical unclonable functions

    Gao, Y., Al-Sarawi, S.F., Abbott, D., 2020. Physical unclonable functions. Nature Electronics 3, 81–91. URL:https://doi.org/10. 1038/s41928-020-0372-5, doi:10.1038/s41928-020-0372-5

  79. [88]

    Geiping, J., Bauermeister, H., Dröge, H., Moeller, M., 2020. Inverting gradients - how easy is it to break privacy in federated learning?, in: Proceedings of the 34th International Conference on Neural Information Processing Systems, Curran Associates Inc., Red Hook, NY, USA

  80. [89]

    zprobe: Zero peek robustness checks for federated learning, in: Proceedings of the IEEE/CVF International Conference on Computer Vision, pp

    Ghodsi, Z., Javaheripi, M., Sheybani, N., Zhang, X., Huang, K., Koushanfar, F., 2023. zprobe: Zero peek robustness checks for federated learning, in: Proceedings of the IEEE/CVF International Conference on Computer Vision, pp. 4860–4870. Frederico Vicente et al. Page 53 of 63 ...

  81. [90]

    An efficient framework for clustered federated learning

    Ghosh, A., Chung, J., Yin, D., Ramchandran, K., 2020. An efficient framework for clustered federated learning. Advances in Neural Information Processing Systems 33, 19586–19597

  82. [91]

    On Alternating Direction Methods of Multipliers: A Historical Perspective

    Glowinski, R., 2014. On Alternating Direction Methods of Multipliers: A Historical Perspective. Springer Netherlands, Dordrecht. pp. 59–82. URL:https://doi.org/10.1007/978-94-017-9054-3_4, doi:10.1007/978-94-017-9054-3_4

  83. [92]

    Proofs that yield nothing but their validity and a methodology of cryptographic protocol design.AssociationforComputingMachinery,NewYork,NY,USA

    Goldreich, O., Micali, S., Wigderson, A., 2019. Proofs that yield nothing but their validity and a methodology of cryptographic protocol design.AssociationforComputingMachinery,NewYork,NY,USA. p.285–306. URL:https://doi.org/10.1145/3335741.3335754

  84. [93]

    tensorflow-federated.https://github.com/google-parfait/tensorflow-federated

    Google, 2018. tensorflow-federated.https://github.com/google-parfait/tensorflow-federated

  85. [94]

    differential-privacy.https://github.com/google/differential-privacy

    Google, 2019. differential-privacy.https://github.com/google/differential-privacy

  86. [95]

    Litert.https://github.com/google-ai-edge/LiteRT

    Google, 2024. Litert.https://github.com/google-ai-edge/LiteRT

  87. [96]

    pfl: simulation framework for accelerating research in private federated learning

    Granqvist, F., Song, C., Áine Cahill, van Dalen, R., Pelikan, M., Chan, Y.S., Feng, X., Krishnaswami, N., Chitnis, M., Jina, V., 2024. pfl: simulation framework for accelerating research in private federated learning. URL:https://github.com/apple/pfl-research

  88. [97]

    Seeing is believing: Towards interactive visual exploration of data privacy in federated learning

    Guo, Y., Liu, F., Zhou, T., Cai, Z., Xiao, N., 2023. Seeing is believing: Towards interactive visual exploration of data privacy in federated learning. Information Processing & Management 60, 103162. URL:https://www.sciencedirect.com/science/article/pii/ S0306457322002631, doi...

  89. [98]

    Quantization robust federated learning for efficient inference on heterogeneous devices

    Gupta, K., Fournarakis, M., Reisser, M., Louizos, C., Nagel, M., 2022. Quantization robust federated learning for efficient inference on heterogeneous devices. arXiv preprint arXiv:2206.10844

  90. [99]

    Gupta,O.,Raskar,R.,2018.Distributedlearningofdeepneuralnetworkovermultipleagents.JournalofNetworkandComputerApplications 116, 1–8

  91. [100]

    Decentralized federated learning: A survey on security and privacy

    Hallaji, E., Razavi-Far, R., Saif, M., Wang, B., Yang, Q., 2024. Decentralized federated learning: A survey on security and privacy. IEEE Transactions on Big Data

  92. [101]

    Han,B.,Yao,Q.,Yu,X.,Niu,G.,Xu,M.,Hu,W.,Tsang,I.W.,Sugiyama,M.,2018. Co-teaching:robusttrainingofdeepneuralnetworkswith extremely noisy labels, in: Proceedings of the 32nd International Conference on Neural Information Processing Systems, Curran Associates Inc., Red Hook, NY, U...

  93. [102]

    Fedx:Unsupervisedfederatedlearningwithcrossknowledgedistillation, in: Computer Vision – ECCV 2022, Springer Nature Switzerland, Cham

    Han,S.,Park,S.,Wu,F.,Kim,S.,Wu,C.,Xie,X.,Cha,M.,2022. Fedx:Unsupervisedfederatedlearningwithcrossknowledgedistillation, in: Computer Vision – ECCV 2022, Springer Nature Switzerland, Cham. pp. 691–707

  94. [103]

    Lower bounds and optimal algorithms for personalized federated learning, in: Advances in Neural Information Processing Systems, Curran Associates, Inc

    Hanzely, F., Hanzely, S., Horváth, S., Richtarik, P., 2020. Lower bounds and optimal algorithms for personalized federated learning, in: Advances in Neural Information Processing Systems, Curran Associates, Inc.. pp. 2304–2315. URL:https://proceedings.neurips. cc/paper_files/p...

  95. [104]

    Federatedlearning for mobile keyboard prediction

    Hard,A.,Rao,K.,Mathews,R.,Ramaswamy,S.,Beaufays,F.,Augenstein,S.,Eichner,H.,Kiddon,C.,Ramage,D.,2018. Federatedlearning for mobile keyboard prediction. arXiv preprint arXiv:1811.03604

  96. [105]

    arXiv preprint arXiv:2004.08546

    He,C.,Annavaram,M.,Avestimehr,S.,2020a.Towardsnon-iidandinvisibledatawithfednas:Federateddeeplearningvianeuralarchitecture search. arXiv preprint arXiv:2004.08546

  97. [106]

    Fedgraphnn: A federated learning system and benchmark for graph neural networks

    He, C., Balasubramanian, K., Ceyani, E., Yang, C., Xie, H., et al., 2021. Fedgraphnn: A federated learning system and benchmark for graph neural networks. arXiv preprint arXiv:2104.07145

  98. [107]

    Fedml: A research library and benchmark for federated machine learning

    He, C., Li, S., So, J., Zeng, X., Zhang, M., et al., 2020b. Fedml: A research library and benchmark for federated machine learning. arXiv preprint arXiv:2007.13518

  99. [108]

    Gossip learning as a decentralized alternative to federated learning, in: Pereira, J., Ricci, L

    Hegedűs, I., Danner, G., Jelasity, M., 2019. Gossip learning as a decentralized alternative to federated learning, in: Pereira, J., Ricci, L. (Eds.), Distributed Applications and Interoperable Systems, Springer International Publishing, Cham. pp. 74–90

  100. [109]

    A principled framework for the design and analysis of token algorithms, in: Ruiz, F., Dy, J., van de Meent, J.W

    Hendrikx, H., 2023. A principled framework for the design and analysis of token algorithms, in: Ruiz, F., Dy, J., van de Meent, J.W. (Eds.), Proceedings of The 26th International Conference on Artificial Intelligence and Statistics, PMLR. pp. 470–489. URL:https: //proceedings....

  101. [110]

    Hong, M., Razaviyayn, M., Lee, J., 2018. Gradient primal-dual algorithm converges to second-order stationary solution for nonconvex distributed optimization over networks, in: International Conference on Machine Learning, PMLR. pp. 2009–2018

  102. [111]

    Measuring the effects of non-identical data distribution for federated visual classification

    Hsu, H., Qi, H., Brown, M., 2019. Measuring the effects of non-identical data distribution for federated visual classification. URL: https://arxiv.org/abs/1909.06335

  103. [112]

    Generalization bounds for federated learning: Fast rates, unparticipating clients and unbounded losses, in: The Eleventh International Conference on Learning Representations

    Hu, X., Li, S., Liu, Y., 2023. Generalization bounds for federated learning: Fast rates, unparticipating clients and unbounded losses, in: The Eleventh International Conference on Learning Representations

  104. [113]

    Fedtiny: Pruned federated learning towards specialized tiny models

    Huang, H., Zhang, L., Sun, C., Fang, R., Yuan, X., Wu, D., 2022. Fedtiny: Pruned federated learning towards specialized tiny models

  105. [114]

    Gpipe:Efficienttraining of giant neural networks using pipeline parallelism, in: Wallach, H., Larochelle, H., Beygelzimer, A., d'Alché-Buc, F., Fox, E., Garnett, R

    Huang,Y.,Cheng,Y.,Bapna,A.,Firat,O.,Chen,D.,Chen,M.,Lee,H.,Ngiam,J.,Le,Q.V.,Wu,Y.,Chen,z.,2019. Gpipe:Efficienttraining of giant neural networks using pipeline parallelism, in: Wallach, H., Larochelle, H., Beygelzimer, A., d'Alché-Buc, F., Fox, E., Garnett, R. (Eds.),Advancesi...

  106. [115]

    Papaya: Practical, private, and scalable federated learning, in: Marculescu, D., Chi, Y., Wu, C

    Huba, D., Nguyen, J., Malik, K., Zhu, R., Rabbat, M., Yousefpour, A., et al., 2022. Papaya: Practical, private, and scalable federated learning, in: Marculescu, D., Chi, Y., Wu, C. (Eds.), Proceedings of Machine Learning and Systems, pp. 814–832. URL:https: //proceedings.mlsys...

  107. [116]

    Hymel, S., Banbury, C., Situnayake, D., Elium, A., Ward, C., Kelcey, M., Baaijens, M., Majchrzycki, M., Plunkett, J., Tischler, D., et al.,

  108. [117]

    Editingmodelswithtaskarithmetic

    Ilharco,G.,Ribeiro,M.T.,Wortsman,M.,Gururangan,S.,Schmidt,L.,Hajishirzi,H.,Farhadi,A.,2022. Editingmodelswithtaskarithmetic. arXiv preprint arXiv:2212.04089

  109. [118]

    arXiv preprint arXiv:2212.03332

    Edge impulse: An mlops platform for tiny machine learning. arXiv preprint arXiv:2212.03332

  110. [119]

    Fast distributed gradient methods

    Jakovetić, D., Xavier, J., Moura, J.M., 2014. Fast distributed gradient methods. IEEE Transactions on Automatic Control 59, 1131–1146. Frederico Vicente et al. Page 54 of 63 Modular Federated Learning: A Meta-Framework Perspective

  111. [120]

    Coordination of groups of mobile autonomous agents using nearest neighbor rules

    Jadbabaie, A., Lin, J., Morse, A.S., 2003. Coordination of groups of mobile autonomous agents using nearest neighbor rules. IEEE Transactions on automatic control 48, 988–1001

  112. [121]

    Learning private neural language modeling with attentive aggregation, in: 2019 International joint conference on neural networks (IJCNN), IEEE

    Ji, S., Pan, S., Long, G., Li, X., Jiang, J., Huang, Z., 2019. Learning private neural language modeling with attentive aggregation, in: 2019 International joint conference on neural networks (IJCNN), IEEE. pp. 1–8

  113. [122]

    Communication-efficienton-devicemachinelearning:Federateddistillation and augmentation under non-iid private data

    Jeong,E.,Oh,S.,Kim,H.,Park,J.,Bennis,M.,Kim,S.L.,2018. Communication-efficienton-devicemachinelearning:Federateddistillation and augmentation under non-iid private data. arXiv preprint arXiv:1811.11479

  114. [123]

    A randomized incremental subgradient method for distributed optimization in networked systems

    Johansson, B., Rabi, M., Johansson, M., 2010. A randomized incremental subgradient method for distributed optimization in networked systems. SIAM Journal on Optimization 20, 1157–1170. URL:https://doi.org/10.1137/08073038X, doi:10.1137/08073038X, arXiv:https://doi.org/10.1137/...

  115. [124]

    Decentralized knowledge acquisition for mobile internet applications

    Jiang, J., Ji, S., Long, G., 2020. Decentralized knowledge acquisition for mobile internet applications. World Wide Web 23, 2653–2669

  116. [125]

    Jothimurugesan,E.,Hsieh,K.,Wang,J.,Joshi,G.,Gibbons,P.B.,2023. Federatedlearningunderdistributedconceptdrift,in:Ruiz,F.,Dy,J., vandeMeent,J.W.(Eds.),ProceedingsofThe26thInternationalConferenceonArtificialIntelligenceandStatistics,PMLR.pp.5834–5853. URL:https://proceedings.mlr....

  117. [126]

    Accelerating stochastic gradient descent using predictive variance reduction

    Johnson, R., Zhang, T., 2013. Accelerating stochastic gradient descent using predictive variance reduction. Advances in neural information processing systems 26

  118. [127]

    Decentralizedfederatedlearningthroughproxymodelsharing

    Kalra,S.,Wen,J.,Cresswell,J.C.,Volkovs,M.,Tizhoosh,H.R.,2023. Decentralizedfederatedlearningthroughproxymodelsharing. Nature Communications 14, 2899. URL:https://doi.org/10.1038/s41467-023-38569-4, doi:10.1038/s41467-023-38569-4

  119. [128]

    Advancesandopenproblemsinfederatedlearning

    Kairouz,P.,McMahan,H.B.,Avent,B.,Bellet,A.,Bennis,M.,etal.,2021. Advancesandopenproblemsinfederatedlearning. Foundations and Trends®in Machine Learning 14, 1–210. URL:http://dx.doi.org/10.1561/2200000083, doi:10.1561/2200000083

  120. [129]

    Federated benchmarking of medical artificial intelligence with medperf

    Karargyris, A., Umeton, R., Sheller, M.J., Aristizabal, A., George et al, J., 2023. Federated benchmarking of medical artificial intelligence with medperf. Nature Machine Intelligence 5, 799–810. URL:https://doi.org/10.1038/s42256-023-00652-2, doi:10.1038/ s42256-023-00652-2

  121. [130]

    Federated hypergradient descent

    Kan, A.K., 2022. Federated hypergradient descent. arXiv preprint arXiv:2211.02106

  122. [131]

    Gossip-based computation of aggregate information, in: 44th Annual IEEE Symposium on Foundations of Computer Science, 2003

    Kempe, D., Dobra, A., Gehrke, J., 2003. Gossip-based computation of aggregate information, in: 44th Annual IEEE Symposium on Foundations of Computer Science, 2003. Proceedings., IEEE. pp. 482–491

  123. [132]

    SCAFFOLD: Stochastic controlled averaging for federated learning, in: III, H.D., Singh, A

    Karimireddy, S.P., Kale, S., Mohri, M., Reddi, S., Stich, S., Suresh, A.T., 2020. SCAFFOLD: Stochastic controlled averaging for federated learning, in: III, H.D., Singh, A. (Eds.), Proceedings of the 37th International Conference on Machine Learning, PMLR. pp. 5132–5143. URL:h...

  124. [133]

    torchgpipe: On-the-fly pipeline parallelism for training giant models

    Kim, C., Lee, H., Jeong, M., Baek, W., Yoon, B., Kim, I., Lim, S., Kim, S., 2020. torchgpipe: On-the-fly pipeline parallelism for training giant models. arXiv preprint arXiv:2004.09910

  125. [134]

    Split ways: Privacy-preserving training of encrypted data using split learning

    Khan, T., Nguyen, K., Michalas, A., 2023. Split ways: Privacy-preserving training of encrypted data using split learning. arXiv preprint arXiv:2301.08778

  126. [135]

    Kim, S., Shin, W., Jang, S., Song, H., Yun, S.Y., 2022. Fedrn: Exploiting k-reliable neighbors towards robust federated learning, in: Proceedings of the 31st ACM International Conference on Information & Knowledge Management, Association for Computing Machinery, New York, NY, ...

  127. [136]

    SplitNet: Learning to semantically split deep networks for parameter reduction and model parallelization, in: Precup, D., Teh, Y.W

    Kim, J., Park, Y., Kim, G., Hwang, S.J., 2017. SplitNet: Learning to semantically split deep networks for parameter reduction and model parallelization, in: Precup, D., Teh, Y.W. (Eds.), Proceedings of the 34th International Conference on Machine Learning, PMLR. pp. 1866–

  128. [137]

    Federated optimization: Distributed machine learning for on-device intelligence

    Konečn`y, J., McMahan, H.B., Ramage, D., Richtárik, P., 2016. Federated optimization: Distributed machine learning for on-device intelligence. arXiv preprint arXiv:1610.02527

  129. [138]

    Flaas: Federated learning as a service, in: Proceedings of the 1st Workshop on Distributed Machine Learning, Association for Computing Machinery, New York, NY, USA

    Kourtellis, N., Katevas, K., Perino, D., 2020. Flaas: Federated learning as a service, in: Proceedings of the 1st Workshop on Distributed Machine Learning, Association for Computing Machinery, New York, NY, USA. p. 7–13. URL:https://doi.org/10.1145/3426745. 3431337, doi:10.114...

  130. [139]

    Mrfenergyminimizationandbeyondviadualdecomposition

    Komodakis,N.,Paragios,N.,Tziritas,G.,2010. Mrfenergyminimizationandbeyondviadualdecomposition. IEEEtransactionsonpattern analysis and machine intelligence 33, 531–552

  131. [140]

    Pefl: Deep privacy-encoding-based federated learning framework for smart agriculture

    Kumar, P., Gupta, G.P., Tripathi, R., 2022. Pefl: Deep privacy-encoding-based federated learning framework for smart agriculture. IEEE Micro 42, 33–40. doi:10.1109/MM.2021.3112476

  132. [141]

    Tinytrain:Deepneuralnetworktrainingattheextremeedge

    Kwon,Y.D.,Li,R.,Venieris,S.I.,Chauhan,J.,Lane,N.D.,Mascolo,C.,2023. Tinytrain:Deepneuralnetworktrainingattheextremeedge. arXiv preprint arXiv:2307.09988

  133. [142]

    Learning multiple layers of features from tiny images, Toronto, ON, Canada

    Krizhevsky, A., Hinton, G., et al., 2009. Learning multiple layers of features from tiny images, Toronto, ON, Canada

  134. [143]

    Enhanced federated anomaly detection through autoencoders using summary statistics-based thresholding

    Laridi, S., Palmer, G., Tam, K.M.M., 2024. Enhanced federated anomaly detection through autoencoders using summary statistics-based thresholding. Scientific Reports 14, 26704

  135. [144]

    Federated reinforcement learning for energy management of multiple smart homes with distributed energy resources

    Lee, S., Choi, D.H., 2022. Federated reinforcement learning for energy management of multiple smart homes with distributed energy resources. IEEE Transactions on Industrial Informatics 18, 488–497. doi:10.1109/TII.2020.3035451

  136. [145]

    The part-time parliament

    Lamport, L., 1998. The part-time parliament. ACM Trans. Comput. Syst. 16, 133–169. URL:https://doi.org/10.1145/279227. 279229, doi:10.1145/279227.279229

  137. [146]

    Fedmd: Heterogenous federated learning via model distillation

    Li, D., Wang, J., 2019. Fedmd: Heterogenous federated learning via model distillation. arXiv preprint arXiv:1910.03581

  138. [147]

    Li, H., Lin, H., Polychroniadou, A., Tessaro, S., 2023b. Lerna: Secure single-server aggregation via key-homomorphic masking, in: AdvancesinCryptology–ASIACRYPT2023:29thInternationalConferenceontheTheoryandApplicationofCryptologyandInformation Security, Guangzhou, China, Decem...

  139. [148]

    Towards interpretable federated learning.arXiv:2302.13473

    Li, A., Liu, R., Hu, M., Tuan, L.A., Yu, H., 2023a. Towards interpretable federated learning.arXiv:2302.13473

  140. [149]

    Parameter server for distributed machine learning, in: Big learning NIPS workshop, Lake Tahoe, CA

    Li, M., Zhou, L., Yang, Z., Li, A., Xia, F., Andersen, D.G., Smola, A., 2013. Parameter server for distributed machine learning, in: Big learning NIPS workshop, Lake Tahoe, CA

  141. [150]

    Fedtree:Afederatedlearningsystemfortrees,in:ProceedingsofMachine Learning and Systems

    Li,Q.,Wu,Z.,Cai,Y.,Han,Y.,Yung,C.M.,Fu,T.,He,B.,2023c. Fedtree:Afederatedlearningsystemfortrees,in:ProceedingsofMachine Learning and Systems

  142. [151]

    Robust federated learning over the air: Combating heavy-tailed noise with median anchored clipping

    Li, J., Chen, Z., Chong, K.F.E., Das, B., Quek, T.Q., Yang, H.H., 2024a. Robust federated learning over the air: Combating heavy-tailed noise with median anchored clipping. arXiv preprint arXiv:2409.15100 . Frederico Vicente et al. Page 55 of 63 Modular Federated Learning: A M...

  143. [152]

    A convergence theory for federated average: Beyond smoothness, in: 2022 IEEE International Conference on Big Data (Big Data), IEEE

    Li, X., Song, Z., Tao, R., Zhang, G., 2022a. A convergence theory for federated average: Beyond smoothness, in: 2022 IEEE International Conference on Big Data (Big Data), IEEE. pp. 1292–1297

  144. [153]

    Federated adversarial learning: A framework with convergence analysis, in: International Conference on Machine Learning, PMLR

    Li, X., Song, Z., Yang, J., 2023d. Federated adversarial learning: A framework with convergence analysis, in: International Conference on Machine Learning, PMLR. pp. 19932–19959

  145. [154]

    Federated optimization in heterogeneous networks, in: Dhillon, I.,Papailiopoulos,D.,Sze,V.(Eds.),ProceedingsofMachineLearningandSystems,pp.429–450

    Li, T., Sahu, A.K., Zaheer, M., Sanjabi, M., Talwalkar, A., Smith, V., 2020. Federated optimization in heterogeneous networks, in: Dhillon, I.,Papailiopoulos,D.,Sze,V.(Eds.),ProceedingsofMachineLearningandSystems,pp.429–450. URL:https://proceedings.mlsys. org/paper_files/paper...

  146. [155]

    Data heterogeneity-robust federated learning via group client selection in industrial iot

    Li, Z., He, Y., Yu, H., Kang, J., Li, X., Xu, Z., Niyato, D., 2022b. Data heterogeneity-robust federated learning via group client selection in industrial iot. IEEE Internet of Things Journal 9, 17844–17857. doi:10.1109/JIOT.2022.3161943

  147. [156]

    Byzantine-robust federated learning through spatial-temporal analysis of local model updates , 372–379doi:10.1109/ICPADS53394.2021.00052

    Li, Z., Liu, L., Zhang, J., Liu, J., 2021. Byzantine-robust federated learning through spatial-temporal analysis of local model updates , 372–379doi:10.1109/ICPADS53394.2021.00052

  148. [157]

    Federated multiagent deep reinforcement learning approach via physics-informed reward for multimicrogrid energy management

    Li, Y., He, S., Li, Y., Shi, Y., Zeng, Z., 2024b. Federated multiagent deep reinforcement learning approach via physics-informed reward for multimicrogrid energy management. IEEE Transactions on Neural Networks and Learning Systems 35, 5902–5914. doi:10.1109/TNNLS. 2022.3232630

  149. [158]

    Federated Transfer Reinforcement Learning for Autonomous Driving

    Liang, X., Liu, Y., Chen, T., Liu, M., Yang, Q., 2023b. Federated Transfer Reinforcement Learning for Autonomous Driving. Springer International Publishing, Cham. pp. 357–371. URL:https://doi.org/10.1007/978-3-031-11748-0_15, doi:10.1007/ 978-3-031-11748-0_15

  150. [159]

    Mcunet: Tiny deep learning on iot devices 33, 11711–11722

    Lin, J., Chen, W.M., Lin, Y., cohn, j., Gan, C., Han, S., 2020. Mcunet: Tiny deep learning on iot devices 33, 11711–11722. URL: https://proceedings.neurips.cc/paper_files/paper/2020/file/86c51678350f656dcc7f490a43946ee5-Paper.pdf

  151. [160]

    Fednoisy: Federated noisy label learning benchmark

    Liang, S., Huang, J., Zeng, D., Hong, J., Zhou, J., Xu, Z., 2023a. Fednoisy: Federated noisy label learning benchmark. arXiv preprint arXiv:2306.11650

  152. [161]

    Recent advances on federated learning: A systematic survey.arXiv:2301.01299

    Liu, B., Lv, N., Guo, Y., Li, Y., 2023. Recent advances on federated learning: A systematic survey.arXiv:2301.01299

  153. [162]

    Enhancing trust and privacy in distributed networks: a comprehensive survey on blockchain-based federated learning

    Liu, J., Chen, C., Li, Y., Sun, L., Song, Y., Zhou, J., Jing, B., Dou, D., 2024a. Enhancing trust and privacy in distributed networks: a comprehensive survey on blockchain-based federated learning. Knowledge and Information Systems , 1–27

  154. [163]

    On-device training under 256kb memory, in: Advances in Neural InformationProcessingSystems,CurranAssociates,Inc..pp.22941–22954

    Lin, J., Zhu, L., Chen, W.M., Wang, W.C., Gan, C., Han, S., 2022. On-device training under 256kb memory, in: Advances in Neural InformationProcessingSystems,CurranAssociates,Inc..pp.22941–22954. URL:https://proceedings.neurips.cc/paper_files/ paper/2022/file/90c56c77c6df45fc8e...

  155. [164]

    A bayesian federated learning framework with online laplace approximation

    Liu, L., Jiang, X., Zheng, F., Chen, H., Qi, G.J., Huang, H., Shao, L., 2024b. A bayesian federated learning framework with online laplace approximation. IEEE Transactions on Pattern Analysis and Machine Intelligence 46, 1–16. doi:10.1109/TPAMI.2023.3322743

  156. [165]

    Privacy-enhanced federated learning against poisoning adversaries

    Liu, X., Li, H., Xu, G., Chen, Z., Huang, X., Lu, R., 2021a. Privacy-enhanced federated learning against poisoning adversaries. IEEE Transactions on Information Forensics and Security 16, 4574–4588. doi:10.1109/TIFS.2021.3108434

  157. [166]

    Multitarget tracking in distributed sensor networks

    Liu, J., Chu, M., Reich, J.E., 2007. Multitarget tracking in distributed sensor networks. IEEE Signal Processing Magazine 24, 36–46. doi:10.1109/MSP.2007.361600

  158. [167]

    IEEE Transactions on Signal Processing 70, 4277–4290

    Liu,Y.,Zhang,X.,Kang,Y.,Li,L.,Chen,T.,Hong,M.,Yang,Q.,2022.Fedbcd:Acommunication-efficientcollaborativelearningframework for distributed features. IEEE Transactions on Signal Processing 70, 4277–4290. doi:10.1109/TSP.2022.3198176

  159. [168]

    Federatedlearningfromonlyunlabeleddatawithclass-conditional-sharing clients

    Lu,N.,Wang,Z.,Li,X.,Niu,G.,Dou,Q.,Sugiyama,M.,2022. Federatedlearningfromonlyunlabeleddatawithclass-conditional-sharing clients. arXiv preprint arXiv:2204.03304

  160. [169]

    Fate:Anindustrialgradeplatformforcollaborativelearningwithdataprotection

    Liu,Y.,Fan,T.,Chen,T.,Xu,Q.,Yang,Q.,2021b. Fate:Anindustrialgradeplatformforcollaborativelearningwithdataprotection. Journal of Machine Learning Research 22, 1–6. URL:http://jmlr.org/papers/v22/20-815.html

  161. [170]

    Privacy and robustness in federated learning: Attacks and defenses

    Lyu, L., Yu, H., Ma, X., Chen, C., Sun, L., Zhao, J., Yang, Q., Yu, P.S., 2022. Privacy and robustness in federated learning: Attacks and defenses. IEEE transactions on neural networks and learning systems 35, 8726–8746

  162. [171]

    Ppsfl: Privacy-preserving split federated learning via functional encryption

    Ma, J., Xixiang, L., Yu, Y., Sigg, S., 2023. Ppsfl: Privacy-preserving split federated learning via functional encryption. Authorea Preprints

  163. [172]

    Ibm federated learning: an enterprise framework white paper v0

    Ludwig, H., Baracaldo, N., Thomas, G., Zhou, Y., Anwar, A., Rajamoni, S., Ong, Y., Radhakrishnan, J., Verma, A., Sinn, M., et al., 2020. Ibm federated learning: an enterprise framework white paper v0. 1. arXiv preprint arXiv:2007.10987

  164. [173]

    Dimensionality-driven learning with noisy labels, in: Dy, J., Krause, A

    Ma, X., Wang, Y., Houle, M.E., Zhou, S., Erfani, S., Xia, S., Wijewickrema, S., Bailey, J., 2018. Dimensionality-driven learning with noisy labels, in: Dy, J., Krause, A. (Eds.), Proceedings of the 35th International Conference on Machine Learning, PMLR. pp. 3355–3364. URL: ht...

  165. [174]

    Researchprogressonsecurityandprivacyoffederatedlearning:Asurvey

    Ma,X.,Yan,M.,2024. Researchprogressonsecurityandprivacyoffederatedlearning:Asurvey. WirelessPersonalCommunications136, 2201–2242

  166. [175]

    Trustedmodelaggregationwithzero-knowledgeproofsinfederatedlearning

    Ma,R.,Hwang,K.,Li,M.,Miao,Y.,2024. Trustedmodelaggregationwithzero-knowledgeproofsinfederatedlearning. IEEETransactions on Parallel and Distributed Systems

  167. [176]

    Personalizedfederatedlearningthroughlocalmemorization,in:Chaudhuri,K.,Jegelka, S., Song, L., Szepesvari, C., Niu, G., Sabato, S

    Marfoq,O.,Neglia,G.,Vidal,R.,Kameni,L.,2022. Personalizedfederatedlearningthroughlocalmemorization,in:Chaudhuri,K.,Jegelka, S., Song, L., Szepesvari, C., Niu, G., Sabato, S. (Eds.), Proceedings of the 39th International Conference on Machine Learning, PMLR. pp. 15070–15092. UR...

  168. [177]

    Communication-efficient learning of deep networks from decentralized data, in: Singh, A., Zhu, J

    McMahan, B., Moore, E., Ramage, D., Hampson, S., Arcas, B.A.y., 2017. Communication-efficient learning of deep networks from decentralized data, in: Singh, A., Zhu, J. (Eds.), Proceedings of the 20th International Conference on Artificial Intelligence and Statistics, PMLR. pp....

  169. [178]

    Shieldfl: Mitigating model poisoning attacks in privacy-preserving federated learning

    Ma, Z., Ma, J., Miao, Y., Li, Y., Deng, R.H., 2022. Shieldfl: Mitigating model poisoning attacks in privacy-preserving federated learning. IEEE Transactions on Information Forensics and Security 17, 1639–1654. doi:10.1109/TIFS.2022.3169918

  170. [179]

    Kitsune:anensembleofautoencodersforonlinenetworkintrusiondetection

    Mirsky,Y.,Doitshman,T.,Elovici,Y.,Shabtai,A.,2018. Kitsune:anensembleofautoencodersforonlinenetworkintrusiondetection. arXiv preprint arXiv:1802.09089

  171. [180]

    Online federated learning, in: 2021 60th IEEE Conference on Decision and Control (CDC), pp

    Mitra, A., Hassani, H., Pappas, G.J., 2021. Online federated learning, in: 2021 60th IEEE Conference on Decision and Control (CDC), pp. 4083–4090. doi:10.1109/CDC45484.2021.9683589

  172. [181]

    Private federated statistics in an interactive setting

    McMillan, A., Javidbakht, O., Talwar, K., Briggs, E., Chatzidakis, M., Chen, J., Duchi, J., Feldman, V., Goren, Y., Hesse, M., et al., 2022. Private federated statistics in an interactive setting. arXiv preprint arXiv:2211.10082

  173. [182]

    Mo, F., Haddadi, H., Katevas, K., Marin, E., Perino, D., Kourtellis, N., 2021. Ppfl: privacy-preserving federated learning with trusted execution environments, in: Proceedings of the 19th Annual International Conference on Mobile Systems, Applications, and Services, Associatio...

  174. [183]

    Machine learning with confidential computing: A systematization of knowledge

    Mo, F., Tarkhani, Z., Haddadi, H., 2024. Machine learning with confidential computing: A systematization of knowledge. ACM Comput. Surv. URL:https://doi.org/10.1145/3670007, doi:10.1145/3670007. just Accepted

  175. [184]

    Model-agnostic federated learning, in: Euro-Par 2023: Parallel Processing, Springer Nature Switzerland, Cham

    Mittone, G., Riviera, W., Colonnelli, I., Birke, R., Aldinucci, M., 2023. Model-agnostic federated learning, in: Euro-Par 2023: Parallel Processing, Springer Nature Switzerland, Cham. pp. 383–396

  176. [185]

    A new distributed architecture for evaluating ai-based security systems at the edge: Network ton_iot datasets 72

    Moustafa, N., 2021. A new distributed architecture for evaluating ai-based security systems at the edge: Network ton_iot datasets 72

  177. [187]

    Text embeddings reveal (almost) as much as text, in: Bouamor, H., Pino, J., Bali, K

    Morris, J., Kuleshov, V., Shmatikov, V., Rush, A., 2023. Text embeddings reveal (almost) as much as text, in: Bouamor, H., Pino, J., Bali, K. (Eds.), Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, Association for Computational Linguisti...

  178. [188]

    Pipedream: generalizedpipelineparallelismfordnntraining,in:Proceedingsofthe27thACMSymposiumonOperatingSystemsPrinciples,Association for Computing Machinery, New York, NY, USA

    Narayanan, D., Harlap, A., Phanishayee, A., Seshadri, V., Devanur, N.R., Ganger, G.R., Gibbons, P.B., Zaharia, M., 2019. Pipedream: generalizedpipelineparallelismfordnntraining,in:Proceedingsofthe27thACMSymposiumonOperatingSystemsPrinciples,Association for Computing Machinery,...

  179. [189]

    Distributed subgradient methods for multi-agent optimization

    Nedic, A., Ozdaglar, A., 2009. Distributed subgradient methods for multi-agent optimization. IEEE Transactions on Automatic Control 54, 48–61. doi:10.1109/TAC.2008.2009515

  180. [190]

    Trustworthymachinelearning

    Mucsányi,B.,Kirchhof,M.,Nguyen,E.,Rubinstein,A.,Oh,S.J.,2023b. Trustworthymachinelearning. arXivpreprintarXiv:2310.08215

  181. [191]

    Federatedlearningforinternetofthings:Acomprehensive survey

    Nguyen,D.C.,Ding,M.,Pathirana,P.N.,Seneviratne,A.,Li,J.,Poor,H.V.,2021. Federatedlearningforinternetofthings:Acomprehensive survey. IEEE Communications Surveys & Tutorials 23, 1622–1658

  182. [192]

    Federated learning with buffered asynchronous aggregation, in: Proceedings of The 25th International Conference on Artificial Intelligence and Statistics, PMLR

    Nguyen, J., Malik, K., Zhan, H., Yousefpour, A., Rabbat, M., Malek, M., Huba, D., 2022. Federated learning with buffered asynchronous aggregation, in: Proceedings of The 25th International Conference on Artificial Intelligence and Statistics, PMLR. pp. 3581–3607. URL: https://...

  183. [193]

    Distributed optimization for control

    Nedić, A., Liu, J., 2018. Distributed optimization for control. Annual Review of Control, Robotics, and Autonomous Systems 1, 77–

  184. [194]

    URL:https://www.annualreviews.org/content/journals/10.1146/annurev-control-060117-105131, doi:https: //doi.org/10.1146/annurev-control-060117-105131

  185. [195]

    Modeling heart rate and activity data for personalized fitness recommendation, in: The World Wide Web Conference, Association for Computing Machinery, New York, NY, USA

    Ni, J., Muhlstein, L., McAuley, J., 2019. Modeling heart rate and activity data for personalized fitness recommendation, in: The World Wide Web Conference, Association for Computing Machinery, New York, NY, USA. p. 1343–1353. URL:https://doi.org/10.1145/ 3308558.3313643, doi:1...

  186. [196]

    Federated learning for wireless communications: Motivation, opportunities, and challenges

    Niknam, S., Dhillon, H.S., Reed, J.H., 2020. Federated learning for wireless communications: Motivation, opportunities, and challenges. IEEE Communications Magazine 58, 46–51. doi:10.1109/MCOM.001.1900461

  187. [197]

    Federated learning for asr based on wav2vec 2.0

    Nguyen, T., Mdhaffar, S., Tomashenko, N., Bonastre, J.F., Estève, Y., 2023. Federated learning for asr based on wav2vec 2.0. arXiv:2302.10790

  188. [198]

    Backdoorattacksanddefensesinfederatedlearning: Survey, challenges and future research directions

    Nguyen,T.D.,Nguyen,T.,LeNguyen,P.,Pham,H.H.,Doan,K.D.,Wong,K.S.,2024. Backdoorattacksanddefensesinfederatedlearning: Survey, challenges and future research directions. Engineering Applications of Artificial Intelligence 127, 107166

  189. [199]

    p2pfl.https://github.com/pguijas/p2pfl

    P2PFL, 2022. p2pfl.https://github.com/pguijas/p2pfl

  190. [200]

    Paddlefl.https://github.com/PaddlePaddle/PaddleFL

    PaddlePaddle, 2019. Paddlefl.https://github.com/PaddlePaddle/PaddleFL

  191. [201]

    Fedbabu: Towards enhanced representation for federated image classification

    Oh, J., Kim, S., Yun, S.Y., 2021. Fedbabu: Towards enhanced representation for federated image classification. arXiv preprint arXiv:2106.06042

  192. [202]

    In search of an understandable consensus algorithm, in: Proceedings of the 2014 USENIX Conference on USENIX Annual Technical Conference, USENIX Association, USA

    Ongaro, D., Ousterhout, J., 2014. In search of an understandable consensus algorithm, in: Proceedings of the 2014 USENIX Conference on USENIX Annual Technical Conference, USENIX Association, USA. p. 305–320

  193. [203]

    Fedpso: Federated learning using particle swarm optimization to reduce communication costs

    Park, S., Suh, Y., Lee, J., 2021. Fedpso: Federated learning using particle swarm optimization to reduce communication costs. Sensors 21, 600

  194. [204]

    Relational knowledge distillation, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)

    Park, W., Kim, D., Lu, Y., Cho, M., 2019. Relational knowledge distillation, in: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)

  195. [205]

    continuousinspectionschemes

    PAGE,E.S.,1954."continuousinspectionschemes".Biometrika41,100–115.URL:https://doi.org/10.1093/biomet/41.1-2.100, doi:10.1093/biomet/41.1-2.100,arXiv:https://academic.oup.com/biomet/article-pdf/41/1-2/100/1243987/41-1-2-100.pdf

  196. [206]

    Librispeech: An asr corpus based on public domain audio books, in: 2015 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pp

    Panayotov, V., Chen, G., Povey, D., Khudanpur, S., 2015. Librispeech: An asr corpus based on public domain audio books, in: 2015 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pp. 5206–5210. doi:10.1109/ICASSP.2015.7178964

  197. [207]

    Federated reinforcement learning in iot: Applications, opportunities and open challenges

    Pinto Neto, E.C., Sadeghi, S., Zhang, X., Dadkhah, S., 2023. Federated reinforcement learning in iot: Applications, opportunities and open challenges. Applied Sciences 13. URL:https://www.mdpi.com/2076-3417/13/11/6497, doi:10.3390/app13116497. Frederico Vicente et al. Page 57 ...

  198. [208]

    Spottinganomaliesattheedge:Outlierexposure-basedcross-silo federated learning for ddos detection

    Pourahmadi,V.,Alameddine,H.A.,Salahuddin,M.A.,Boutaba,R.,2022. Spottinganomaliesattheedge:Outlierexposure-basedcross-silo federated learning for ddos detection. IEEE Transactions on Dependable and Secure Computing 20, 4002–4015

  199. [209]

    Fedsplit: An algorithmic framework for fast federated optimization

    Pathak, R., Wainwright, M.J., 2020. Fedsplit: An algorithmic framework for fast federated optimization. Advances in neural information processing systems 33, 7057–7066

  200. [210]

    Modular deep learning

    Pfeiffer, J., Ruder, S., Vulić, I., Ponti, E.M., 2023. Modular deep learning. arXiv preprint arXiv:2302.11529

  201. [211]

    Federated reinforcement learning: Techniques, applications, and open challenges

    Qi, J., Zhou, Q., Lei, L., Zheng, K., 2021. Federated reinforcement learning: Techniques, applications, and open challenges. arXiv preprint arXiv:2108.11887

  202. [212]

    Modelaggregationtechniquesinfederatedlearning:Acomprehensive survey

    Qi,P.,Chiaro,D.,Guzzo,A.,Ianni,M.,Fortino,G.,Piccialli,F.,2024. Modelaggregationtechniquesinfederatedlearning:Acomprehensive survey. Future Generation Computer Systems 150, 272–293

  203. [213]

    Reconciling security and communication efficiency in federated learning

    Prasad, K., Ghosh, S., Cormode, G., Mironov, I., Yousefpour, A., Stock, P., 2022. Reconciling security and communication efficiency in federated learning. arXiv preprint arXiv:2207.12779

  204. [214]

    Prasad,V.K.,Bhattacharya,P.,Maru,D.,Tanwar,S.,Verma,A.,Singh,A.,Tiwari,A.K.,Sharma,R.,Alkhayyat,A.,T ,urcanu,F.E.,Raboaca, M.S.,2023.Federatedlearningfortheinternet-of-medical-things:Asurvey.Mathematics11.URL:https://www.mdpi.com/2227-7390/ 11/1/151, doi:10.3390/math11010151

  205. [215]

    arXiv preprint arXiv:2306.05112

    Rahulamathavan,Y.,Herath,C.,Liu,X.,Lambotharan,S.,Maple,C.,2023.Fhefl:Fullyhomomorphicencryptionfriendlyprivacy-preserving federated learning with byzantine users. arXiv preprint arXiv:2306.05112

  206. [216]

    Incremental stochastic subgradient algorithms for convex optimization

    Ram, S.S., Nedić, A., Veeravalli, V.V., 2009. Incremental stochastic subgradient algorithms for convex optimization. SIAM Journal on Optimization 20, 691–717. URL:https://doi.org/10.1137/080726380, doi:10.1137/080726380, arXiv:https://doi.org/10.1137/080726380

  207. [217]

    Chainfl: A simulation platform for joint federated learning and blockchain in edge/cloud computing environments

    Qu, G., Cui, N., Wu, H., Li, R., Ding, Y., 2022. Chainfl: A simulation platform for joint federated learning and blockchain in edge/cloud computing environments. IEEE Transactions on Industrial Informatics 18, 3572–3581. doi:10.1109/TII.2021.3117481

  208. [218]

    Fairness and privacy preserving in federated learning: A survey

    Rafi, T.H., Noor, F.A., Hussain, T., Chae, D.K., 2024. Fairness and privacy preserving in federated learning: A survey. Information Fusion 105, 102198

  209. [219]

    A dynamic and hierarchical access control for iot in multi-authority cloud storage

    Riad, K., Huang, T., Ke, L., 2020. A dynamic and hierarchical access control for iot in multi-authority cloud storage. Journal of Network and Computer Applications 160, 102633. URL:https://www.sciencedirect.com/science/article/pii/S1084804520301077, doi:https://doi.org/10.1016...

  210. [220]

    Dynamic federated learning, in: 2020 IEEE 21st International Workshop on Signal Processing Advances in Wireless Communications (SPAWC), pp

    Rizk, E., Vlaski, S., Sayed, A.H., 2020. Dynamic federated learning, in: 2020 IEEE 21st International Workshop on Signal Processing Advances in Wireless Communications (SPAWC), pp. 1–5. doi:10.1109/SPAWC48557.2020.9154327

  211. [221]

    Elsa: Secure aggregation for federated learning with malicious actors, in: 2023 IEEE Symposium on Security and Privacy (SP), pp

    Rathee, M., Shen, C., Wagh, S., Popa, R.A., 2023. Elsa: Secure aggregation for federated learning with malicious actors, in: 2023 IEEE Symposium on Security and Privacy (SP), pp. 1961–1979. doi:10.1109/SP46215.2023.10179468

  212. [222]

    Machinelearningsystemswithtinyml.https://harvard-edge.github.io/cs249r_book/

    Reddi,V.J.,2024. Machinelearningsystemswithtinyml.https://harvard-edge.github.io/cs249r_book/. Accessed:2024-01-24

  213. [223]

    vanRooyen,B.,Menon,A.,Williamson,R.C.,2015. Learningwithsymmetriclabelnoise:Theimportanceofbeingunhinged,in:Cortes,C., Lawrence,N.,Lee,D.,Sugiyama,M.,Garnett,R.(Eds.),AdvancesinNeuralInformationProcessingSystems,CurranAssociates,Inc. URL: https://proceedings.neurips.cc/paper_f...

  214. [224]

    Nvidiaflare:Federated learning from simulation to real-world

    Roth,H.R.,Cheng,Y.,Wen,Y.,Yang,I.,Xu,Z.,Hsieh,Y.T.,Kersten,K.,Harouni,A.,Zhao,C.,Lu,K.,etal.,2022. Nvidiaflare:Federated learning from simulation to real-world. arXiv preprint arXiv:2210.13291

  215. [225]

    Fedjax: Federated learning simulation with jax

    Ro, J.H., Suresh, A.T., Wu, K., 2021. Fedjax: Federated learning simulation with jax. arXiv preprint arXiv:2108.02117

  216. [226]

    Pyvertical: A vertical federated learning framework for multi-headed splitnn

    Romanini, D., Hall, A.J., Papadopoulos, P., Titcombe, T., Ismail, A., Cebere, T., Sandmann, R., Roehm, R., Hoeh, M.A., 2021. Pyvertical: A vertical federated learning framework for multi-headed splitnn. arXiv preprint arXiv:2104.00489

  217. [227]

    A tutorial on dual decomposition and lagrangian relaxation for inference in natural language processing

    Rush, A.M., Collins, M., 2012. A tutorial on dual decomposition and lagrangian relaxation for inference in natural language processing. Journal of Artificial Intelligence Research 45, 305–362

  218. [228]

    Federated automatic differentiation

    Rush, K., Charles, Z., Garrett, Z., 2023. Federated automatic differentiation. arXiv preprint arXiv:2301.07806

  219. [229]

    Braintorrent: A peer-to-peer environment for decentralized federated learning

    Roy, A.G., Siddiqui, S., Pölsterl, S., Navab, N., Wachinger, C., 2019. Braintorrent: A peer-to-peer environment for decentralized federated learning. arXiv preprint arXiv:1905.06731

  220. [230]

    RoyChowdhury,A.,Guo,C.,Jha,S.,vanderMaaten,L.,2022. Eiffel:Ensuringintegrityforfederatedlearning,in:Proceedingsofthe2022 ACM SIGSAC Conference on Computer and Communications Security, Association for Computing Machinery, New York, NY, USA. p. 2535–2549. URL:https://doi.org/10....

  221. [231]

    Game-theoreticmethodsforthesmartgrid:Anoverviewofmicrogridsystems,demand-side management, and smart grid communications

    Saad,W.,Han,Z.,Poor,H.V.,Basar,T.,2012. Game-theoreticmethodsforthesmartgrid:Anoverviewofmicrogridsystems,demand-side management, and smart grid communications. IEEE Signal Processing Magazine 29, 86–105. doi:10.1109/MSP.2012.2186410

  222. [232]

    Studyingtherobustnessofanti-adversarial federated learning models detecting cyberattacks in iot spectrum sensors

    Sánchez,P.M.S.,Celdrán,A.H.,Schenk,T.,Iten,A.L.B.,Bovet,G.,Pérez,G.M.,Stiller,B.,2022. Studyingtherobustnessofanti-adversarial federated learning models detecting cyberattacks in iot spectrum sensors. IEEE Transactions on Dependable and Secure Computing 21, 573–584

  223. [233]

    Fax: Scalable and differentiable federated primitives in jax.arXiv:2403.07128

    Rush, K., Charles, Z., Garrett, Z., 2024. Fax: Scalable and differentiable federated primitives in jax.arXiv:2403.07128

  224. [234]

    A generic framework for privacy preserving deep learning

    Ryffel, T., Trask, A., Dahl, M., Wagner, B., Mancuso, J., Rueckert, D., Passerat-Palmbach, J., 2018. A generic framework for privacy preserving deep learning. arXiv preprint arXiv:1811.04017

  225. [235]

    Minimizing finite sums with the stochastic average gradient

    Schmidt, M., Le Roux, N., Bach, F., 2017. Minimizing finite sums with the stochastic average gradient. Mathematical Programming 162, 83–112

  226. [236]

    CodeCarbon: Estimate and Track Carbon Emissions from Machine Learning Computing doi:10.5281/zenodo.4658424

    Schmidt, V., Goyal, K., Joshi, A., Feld, B., Conell, L., Laskaris, N., Blank, D., Wilson, J., Friedler, S., Luccioni, S., 2021. CodeCarbon: Estimate and Track Carbon Emissions from Machine Learning Computing doi:10.5281/zenodo.4658424

  227. [237]

    Fedtabdiff:Federatedlearningofdiffusionprobabilisticmodelsforsyntheticmixed-typetabular data generation

    Sattarov,T.,Schreyer,M.,Borth,D.,2024. Fedtabdiff:Federatedlearningofdiffusionprobabilisticmodelsforsyntheticmixed-typetabular data generation

  228. [238]

    Clustered federated learning: Model-agnostic distributed multitask optimization under privacy constraints

    Sattler, F., Müller, K.R., Samek, W., 2021. Clustered federated learning: Model-agnostic distributed multitask optimization under privacy constraints. IEEE Transactions on Neural Networks and Learning Systems 32, 3710–3722. doi:10.1109/TNNLS.2020.3015958

  229. [239]

    How to share a secret

    Shamir, A., 1979. How to share a secret. Commun. ACM 22, 612–613. URL:https://doi.org/10.1145/359168.359176, doi:10.1145/359168.359176

  230. [240]

    Shamir, O., Srebro, N., Zhang, T., 2014. Communication-efficient distributed optimization using an approximate newton-type method, in: Proceedings of the 31st International Conference on International Conference on Machine Learning - Volume 32, JMLR.org. p. II–1000–II–1008

  231. [241]

    1-bit stochastic gradient descent and its application to data-parallel distributed training of speech DNNs, in: Proc

    Seide, F., Fu, H., Droppo, J., Li, G., Yu, D., 2014. 1-bit stochastic gradient descent and its application to data-parallel distributed training of speech DNNs, in: Proc. Interspeech 2014, pp. 1058–1062. doi:10.21437/Interspeech.2014-274. Frederico Vicente et al. Page 58 of 63...

  232. [242]

    Stochastic dual coordinate ascent methods for regularized loss minimization

    Shalev-Shwartz, S., Zhang, T., 2013. Stochastic dual coordinate ascent methods for regularized loss minimization. Journal of Machine Learning Research 14

  233. [243]

    Extra: An exact first-order algorithm for decentralized consensus optimization

    Shi, W., Ling, Q., Wu, G., Yin, W., 2015. Extra: An exact first-order algorithm for decentralized consensus optimization. SIAM Journal on Optimization 25, 944–966

  234. [244]

    On the linear convergence of the admm in decentralized consensus optimization

    Shi, W., Ling, Q., Yuan, K., Wu, G., Yin, W., 2014. On the linear convergence of the admm in decentralized consensus optimization. IEEE Transactions on Signal Processing 62, 1750–1761. doi:10.1109/TSP.2014.2304432

  235. [245]

    Sharma,A.,Marchang,N.,2024.Probabilisticsignflippingattackinfederatedlearning,in:202415thInternationalConferenceonComputing Communication and Networking Technologies (ICCCNT), IEEE. pp. 1–6

  236. [246]

    Federated learning with noisy user feedback, in: NAACL 2022

    Sharma, R., Ramakrishna, A., MacLaughlin, A., Rumshisky, A., Majmudar, J., Chung, C., Avestimehr, S., Gupta, R., 2022. Federated learning with noisy user feedback, in: NAACL 2022. URL:https://www.amazon.science/publications/ federated-learning-with-noisy-user-feedback

  237. [247]

    Systematic analysis of the impact of label noise correction on ml fairness, in: Liu, T., Webb, G., Yue, L., Wang, D

    Silva, I.O.e., Soares, C., Sousa, I., Ghani, R., 2024. Systematic analysis of the impact of label noise correction on ml fairness, in: Liu, T., Webb, G., Yue, L., Wang, D. (Eds.), AI 2023: Advances in Artificial Intelligence, Springer Nature Singapore, Singapore. pp. 173–184

  238. [248]

    Byzantine-resilientsecurefederatedlearning

    So,J.,Güler,B.,Avestimehr,A.S.,2020. Byzantine-resilientsecurefederatedlearning. IEEEJournalonSelectedAreasinCommunications 39, 2168–2181

  239. [249]

    Towardsunderstandingandmitigatingdimensionalcollapseinheterogeneousfederated learning

    Shi,Y.,Liang,J.,Zhang,W.,Tan,V.Y.,Bai,S.,2022. Towardsunderstandingandmitigatingdimensionalcollapseinheterogeneousfederated learning. arXiv preprint arXiv:2210.00226

  240. [250]

    Megatron-lm: Training multi-billion parameter language models using model parallelism

    Shoeybi, M., Patwary, M., Puri, R., LeGresley, P., Casper, J., Catanzaro, B., 2019. Megatron-lm: Training multi-billion parameter language models using model parallelism. arXiv preprint arXiv:1909.08053

  241. [251]

    Semi-synchronous federated learning for energy-efficient training and accelerated convergence in cross-silo settings

    Stripelis, D., Thompson, P.M., Ambite, J.L., 2022. Semi-synchronous federated learning for energy-efficient training and accelerated convergence in cross-silo settings. ACM Trans. Intell. Syst. Technol. 13. URL:https://doi.org/10.1145/3524885, doi:10.1145/ 3524885

  242. [252]

    Convergence analysis of dual decomposition algorithm in distributed optimization: Asynchrony and inexactness

    Su, Y., Wang, Z., Cao, M., Jia, M., Liu, F., 2022. Convergence analysis of dual decomposition algorithm in distributed optimization: Asynchrony and inexactness. IEEE Transactions on Automatic Control

  243. [253]

    Ali, R., Guler, B., Avestimehr, S., 2022

    So, J., He, C., Yang, C.S., Li, S., Yu, Q., E. Ali, R., Guler, B., Avestimehr, S., 2022. Lightsecagg: a lightweight and versatile design for secure aggregation in federated learning, in: Marculescu, D., Chi, Y., Wu, C. (Eds.), Proceedings of Machine Learning and Systems, pp. 6...

  244. [254]

    Stripelis, D., Anastasiou, C., Toral, P., Asghar, A., Ambite, J.L., 2023. Metisfl: An embarrassingly parallelized controller for scalable & efficient federated learning workflows, in: Proceedings of the 4th International Workshop on Distributed Machine Learning, Association fo...

  245. [255]

    Dinh, C., Tran, N., Nguyen, J., 2020

    T. Dinh, C., Tran, N., Nguyen, J., 2020. Personalized federated learning with moreau envelopes, in: Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., Lin, H. (Eds.), Advances in Neural Information Processing Systems, Curran Associates, Inc.. pp. 21394–21405. URL: https://p...

  246. [256]

    Towards personalized federated learning

    Tan, A.Z., Yu, H., Cui, L., Yang, Q., 2022. Towards personalized federated learning. IEEE transactions on neural networks and learning systems 34, 9587–9603

  247. [257]

    Lazily aggregated quantized gradient innovation for communication-efficient federatedlearning

    Sun, J., Chen, T., Giannakis, G.B., Yang, Q., Yang, Z., 2022. Lazily aggregated quantized gradient innovation for communication-efficient federatedlearning. IEEETransactionsonPatternAnalysisandMachineIntelligence44,2031–2044. doi:10.1109/TPAMI.2020.3033286

  248. [258]

    Sun,L.,Qian,J.,Chen,X.,2021.Ldp-fl:Practicalprivateaggregationinfederatedlearningwithlocaldifferentialprivacy,in:Zhou,Z.H.(Ed.), ProceedingsoftheThirtiethInternationalJointConferenceonArtificialIntelligence,IJCAI-21,InternationalJointConferencesonArtificial Intelligence Organi...

  249. [259]

    Branchynet: Fast inference via early exiting from deep neural networks, in: 2016 23rd international conference on pattern recognition (ICPR), IEEE

    Teerapittayanon, S., McDanel, B., Kung, H.T., 2016. Branchynet: Fast inference via early exiting from deep neural networks, in: 2016 23rd international conference on pattern recognition (ICPR), IEEE. pp. 2464–2469

  250. [260]

    Waffle: Watermarking in federated learning, in: 2021 40th International Symposium on Reliable Distributed Systems (SRDS), IEEE

    Tekgul, B.G., Xia, Y., Marchal, S., Asokan, N., 2021. Waffle: Watermarking in federated learning, in: 2021 40th International Symposium on Reliable Distributed Systems (SRDS), IEEE. pp. 310–320

  251. [261]

    Fedrad: Heterogeneous federated learning via relational adaptive distillation

    Tang, J., Ding, X., Hu, D., Guo, B., Shen, Y., Ma, P., Jiang, Y., 2023. Fedrad: Heterogeneous federated learning via relational adaptive distillation. Sensors 23. URL:https://www.mdpi.com/1424-8220/23/14/6518, doi:10.3390/s23146518

  252. [262]

    Competitive-cooperative multi-agent reinforcement learning for auction-based federated learning, in: Elkind, E

    Tang, X., Yu, H., 2023. Competitive-cooperative multi-agent reinforcement learning for auction-based federated learning, in: Elkind, E. (Ed.), Proceedings of the Thirty-Second International Joint Conference on Artificial Intelligence, IJCAI-23, International Joint Conferences ...

  253. [263]

    Transformers with attentive federated aggregation for time series stock forecasting, in: 2023 International Conference on Information Networking (ICOIN), IEEE

    Thwal, C.M., Tun, Y.L., Kim, K., Park, S.B., Hong, C.S., 2023. Transformers with attentive federated aggregation for time series stock forecasting, in: 2023 International Conference on Information Networking (ICOIN), IEEE. pp. 499–504

  254. [264]

    Llama 2: Open foundation and fine-tuned chat models

    Touvron, H., Martin, L., Stone, K., Albert, P., Almahairi, A., Babaei, Y., Bashlykov, N., Batra, S., Bhargava, P., Bhosale, S., et al., 2023. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288

  255. [265]

    OgierduTerrail,J.,Leopold,A.,Joly,C.,Béguier,C.,Andreux,M.,Maussion,C.,Schmauch,B.,Tramel,E.W.,Bendjebbar,E.,Zaslavskiy, M.,Wainrib,G.,Milder,M.,Gervasoni,J.,Guerin,J.,Durand,T.,Livartowski,A.,Moutet,K.,Gautier,C.,Djafar,I.,Moisson,A.L.,Marini, C., Galtier, M., Balazard, F., D...

  256. [266]

    Distributedasynchronousdeterministicandstochasticgradientoptimizationalgorithms

    Tsitsiklis,J.,Bertsekas,D.,Athans,M.,1986. Distributedasynchronousdeterministicandstochasticgradientoptimizationalgorithms. IEEE Transactions on Automatic Control 31, 803–812. doi:10.1109/TAC.1986.1104412

  257. [267]

    URL:https://ojs.aaai.org/index.php/AAAI/article/view/20825, doi:10.1609/aaai.v36i8.20825

    Thapa,C.,MahawagaArachchige,P.C.,Camtepe,S.,Sun,L.,2022.Splitfed:Whenfederatedlearningmeetssplitlearning.Proceedingsofthe AAAI Conference on Artificial Intelligence 36, 8485–8493. URL:https://ojs.aaai.org/index.php/AAAI/article/view/20825, doi:10.1609/aaai.v36i8.20825

  258. [268]

    Decentralized detection, Massachusetts Institute of Technology, Laboratory for Information and Decision Systems

    Tsitsiklis, J.N., et al., 1989. Decentralized detection, Massachusetts Institute of Technology, Laboratory for Information and Decision Systems

  259. [269]

    Recognizing detailed human context in the wild from smartphones and smartwatches

    Vaizman, Y., Ellis, K., Lanckriet, G., 2017. Recognizing detailed human context in the wild from smartphones and smartwatches. IEEE Pervasive Computing 16, 62–74. doi:10.1109/MPRV.2017.3971131

  260. [270]

    A hybrid approach to privacy-preserving federated learning, in: Proceedings of the 12th ACM workshop on artificial intelligence and security, pp

    Truex, S., Baracaldo, N., Anwar, A., Steinke, T., Ludwig, H., Zhang, R., Zhou, Y., 2019. A hybrid approach to privacy-preserving federated learning, in: Proceedings of the 12th ACM workshop on artificial intelligence and security, pp. 1–11

  261. [271]

    Communication-efficient vertical federated learning via compressed error feedback

    Valdeira, P., Xavier, J., Soares, C., Chi, Y., 2024. Communication-efficient vertical federated learning via compressed error feedback. arXiv preprint arXiv:2406.14420

  262. [272]

    Problems in decentralized decision making and computation

    Tsitsiklis, J.N., 1984. Problems in decentralized decision making and computation. Ph.D. thesis. Massachusetts Institute of Technology

  263. [273]

    Beyond spectral gap: The role of the topology in decentralized learning

    Vogels, T., Hendrikx, H., Jaggi, M., 2023. Beyond spectral gap: The role of the topology in decentralized learning. Journal of Machine Learning Research 24, 1–31. URL:http://jmlr.org/papers/v24/22-1471.html

  264. [274]

    Voita, E., Talbot, D., Moiseev, F., Sennrich, R., Titov, I., 2019. Analyzing multi-head self-attention: Specialized heads do the heavy lifting, the rest can be pruned, in: Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, Association for ...

  265. [275]

    Amulti-tokencoordinatedescentmethodforsemi-decentralizedverticalfederatedlearning

    Valdeira,P.,Chi,Y.,Soares,C.,Xavier,J.,2023. Amulti-tokencoordinatedescentmethodforsemi-decentralizedverticalfederatedlearning. arXiv preprint arXiv:2309.09977

  266. [276]

    Wang,Q.,Xu,M.,Jin,C.,Dong,X.,Yuan,J.,Jin,X.,Huang,G.,Liu,Y.,Liu,X.,2022.Melon:breakingthememorywallforresource-efficient on-device machine learning, in: Proceedings of the 20th Annual International Conference on Mobile Systems, Applications and Services, Association for Comput...

  267. [277]

    Split learning for health: Distributed deep learning without sharing raw patient data

    Vepakomma, P., Gupta, O., Swedish, T., Raskar, R., 2018. Split learning for health: Distributed deep learning without sharing raw patient data. arXiv preprint arXiv:1812.00564

  268. [278]

    Minilm: Deep self-attention distillation for task-agnostic compression of pre-trained transformers, in: Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., Lin, H

    Wang, W., Wei, F., Dong, L., Bao, H., Yang, N., Zhou, M., 2020. Minilm: Deep self-attention distillation for task-agnostic compression of pre-trained transformers, in: Larochelle, H., Ranzato, M., Hadsell, R., Balcan, M., Lin, H. (Eds.), Advances in Neural Information Processi...

  269. [279]

    Hetvis: A visual analysis approach for identifying data heterogeneity in horizontal federated learning

    Wang, X., Chen, W., Xia, J., Wen, Z., Zhu, R., Schreck, T., 2023a. Hetvis: A visual analysis approach for identifying data heterogeneity in horizontal federated learning. IEEE Transactions on Visualization and Computer Graphics 29, 310–319. doi:10.1109/TVCG.2022. 3209347

  270. [280]

    Slowmo: Improving communication-efficient distributed sgd with slow momentum

    Wang, J., Tantia, V., Ballas, N., Rabbat, M., 2019a. Slowmo: Improving communication-efficient distributed sgd with slow momentum. arXiv preprint arXiv:1910.00643

  271. [281]

    Symmetric cross entropy for robust learning with noisy labels, in: 2019 IEEE/CVF International Conference on Computer Vision (ICCV), pp

    Wang, Y., Ma, X., Chen, Z., Luo, Y., Yi, J., Bailey, J., 2019b. Symmetric cross entropy for robust learning with noisy labels, in: 2019 IEEE/CVF International Conference on Computer Vision (ICCV), pp. 322–330. doi:10.1109/ICCV.2019.00041

  272. [282]

    Privacy-preserving data fusion for traffic state estimation: A vertical federated learning approach

    Wang, Q., Yang, K., 2024. Privacy-preserving data fusion for traffic state estimation: A vertical federated learning approach. arXiv preprint arXiv:2401.11836

  273. [283]

    Federated learning with fair averaging, in: Zhou, Z

    Wang, Z., Fan, X., Qi, J., Wen, C., Wang, C., Yu, R., 2021. Federated learning with fair averaging, in: Zhou, Z. (Ed.), Proceedings of the Thirtieth International Joint Conference on Artificial Intelligence, IJCAI 2021, Virtual Event / Montreal, Canada, 19-27 August 2021, ijca...

  274. [284]

    Learningwithnoisylabelsrevisited:Astudyusingreal-worldhumanannotations

    Wei,J.,Zhu,Z.,Cheng,H.,Liu,T.,Niu,G.,Liu,Y.,2021. Learningwithnoisylabelsrevisited:Astudyusingreal-worldhumanannotations. arXiv preprint arXiv:2110.12088

  275. [285]

    Federated deep learning for anomaly detection in the internet of things

    Wang, X., Wang, Y., Javaheri, Z., Almutairi, L., Moghadamnejad, N., Younes, O.S., 2023b. Federated deep learning for anomaly detection in the internet of things. Computers and Electrical Engineering 108, 108651

  276. [286]

    Federatedlearningovernoisychannels:Convergenceanalysisanddesignexamples

    Wei,X.,Shen,C.,2022. Federatedlearningovernoisychannels:Convergenceanalysisanddesignexamples. IEEETransactionsonCognitive Communications and Networking 8, 1253–1268

  277. [287]

    zkfl: Zero-knowledge proof-based gradient aggregation for federated learning

    Wang, Z., Dong, N., Sun, J., Knottenbelt, W., Guo, Y., 2024. zkfl: Zero-knowledge proof-based gradient aggregation for federated learning. IEEE Transactions on Big Data

  278. [288]

    Fledge: Benchmarking federated machine learning applications in edge computing systems

    Woisetschläger, H., Erben, A., Mayer, R., Wang, S., Jacobsen, H.A., 2023. Fledge: Benchmarking federated machine learning applications in edge computing systems. arXiv preprint arXiv:2306.05172 . Frederico Vicente et al. Page 60 of 63 Modular Federated Learning: A Meta-Framewo...

  279. [289]

    Wortsman,M.,Ilharco,G.,Gadre,S.Y.,Roelofs,R.,Gontijo-Lopes,R.,Morcos,A.S.,Namkoong,H.,Farhadi,A.,Carmon,Y.,Kornblith,S., Schmidt, L., 2022. Model soups: averaging weights of multiple fine-tuned models improves accuracy without increasing inference time, in: Chaudhuri,K.,Jegelk...

  280. [290]

    Gradientsparsificationforefficientwirelessfederatedlearning with differential privacy

    Wei,K.,Li,J.,Ma,C.,Ding,M.,Shu,F.,Zhao,H.,Chen,W.,Zhu,H.,2024. Gradientsparsificationforefficientwirelessfederatedlearning with differential privacy. Science China Information Sciences 67, 142303

  281. [291]

    Sustainableai:Environmentalimplications,challengesandopportunities,in:Marculescu,D.,Chi,Y.,Wu,C.(Eds.), Proceedings of Machine Learning and Systems, pp

    Wu, C.J., Raghavendra, R., Gupta, U., Acun, B., Ardalani, N., Maeng, K., Chang, G., Aga, F., Huang, J., Bai, C., Gschwind, M., Gupta, A., Ott,M.,Melnikov,A.,Candido,S.,Brooks,D.,Chauhan,G.,Lee,B.,Lee,H.H.,Akyildiz,B.,Balandat,M.,Spisak,J.,Jain,R.,Rabbat,M., Hazelwood,K.,2022a....

  282. [292]

    Deep kernel learning, in: Gretton, A., Robert, C.C

    Wilson, A.G., Hu, Z., Salakhutdinov, R., Xing, E.P., 2016. Deep kernel learning, in: Gretton, A., Robert, C.C. (Eds.), Proceedings of the 19th International Conference on Artificial Intelligence and Statistics, PMLR, Cadiz, Spain. pp. 370–378. URL:https://proceedings. mlr.pres...

  283. [293]

    Decentralized personalized online federated learning, in: 2023 IEEE International Conference on Big Data (BigData), pp

    Wu, R., Mitra, S., Chen, X., Rao, A., 2023b. Decentralized personalized online federated learning, in: 2023 IEEE International Conference on Big Data (BigData), pp. 1873–1882. doi:10.1109/BigData59044.2023.10386159

  284. [294]

    Mars-fl: Enabling competitors to collaborate in federated learning

    Wu, X., Yu, H., 2022. Mars-fl: Enabling competitors to collaborate in federated learning. IEEE Transactions on Big Data , 1– 11doi:10.1109/TBDATA.2022.3186991

  285. [295]

    Wu, C., Li, Z., Wang, F., Wu, C., 2023a. Learning cautiously in federated learning with noisy and heterogeneous clients, in: 2023 IEEE International Conference on Multimedia and Expo (ICME), IEEE Computer Society, Los Alamitos, CA, USA. pp. 660–665. URL: https://doi.ieeecomput...

  286. [297]

    Fl-mgvn:Federatedlearningforanomalydetectionusingmixedgaussianvariationalself-encodingnetwork

    Wu,D.,Deng,Y.,Li,M.,2022b. Fl-mgvn:Federatedlearningforanomalydetectionusingmixedgaussianvariationalself-encodingnetwork. Information processing & management 59, 102839

  287. [300]

    Federated xgboost.https://github.com/dmlc/xgboost/blob/master/python-package/xgboost/federated

    XGBoost, 2022. Federated xgboost.https://github.com/dmlc/xgboost/blob/master/python-package/xgboost/federated. py

  288. [1874]

    URL:https://proceedings.mlr.press/v70/kim17b.html

  289. [2022]

    Physics in Medicine & Biology URL:http://iopscience.iop.org/article/10

    Openfl: the open federated learning library. Physics in Medicine & Biology URL:http://iopscience.iop.org/article/10. 1088/1361-6560/ac97d9, doi:10.1088/1361-6560/ac97d9

  290. [2023]

    NatureMedicine 29, 135–146

    Federatedlearningforpredictinghistologicalresponsetoneoadjuvantchemotherapyintriple-negativebreastcancer. NatureMedicine 29, 135–146. URL:https://doi.org/10.1038/s41591-022-02155-w, doi:10.1038/s41591-022-02155-w. Frederico Vicente et al. Page 59 of 63 Modular Federated Learni...

Pith tools

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