Open Access
ARTICLE
pFedUL: Layer-Aware Federated Unlearning for Personalized Federated Learning
1 Saunders College of Business, Rochester Institute of Technology, Rochester, NY, USA
2 School of Electrical and Computer Engineering, Georgia Institute of Technology, Atlanta, GA, USA
* Corresponding Author: Xiangyu Li. Email:
(This article belongs to the Special Issue: Advanced Privacy Computing for Intelligent Distributed Networks and Systems)
Computers, Materials & Continua 2026, 88(3), 9 https://doi.org/10.32604/cmc.2026.085409
Received 11 May 2026; Accepted 15 June 2026; Issue published 23 July 2026
Abstract
Federated unlearning (FU) enables the removal of specific data contributions from federated learning (FL) models to comply with regulations such as the General Data Protection Regulation (GDPR). However, most existing FU methods are designed for the FedAvg paradigm, where all clients share a single global model. In practice, personalized federated learning (pFL) methods such as FedPer, FedRep, Ditto, and FedBN have become widely adopted due to their superior handling of non-IID data. These methods decompose the model into shared global layers and client-specific personalized layers, fundamentally altering the semantics of unlearning, yet this setting has received little attention. We formalize FU under the pFL paradigm, identifying a tension between unlearning completeness on shared layers and personalization preservation for remaining clients. We then propose pFedUL, a layer-aware selective unlearning framework comprising three components: (1) gradient-based layer-wise contribution attribution that separately quantifies the target client’s influence on shared and personalized parameters, (2) adaptive selective unlearning that applies differentiated forgetting strategies across layer types, and (3) a lightweight recalibration protocol enabling remaining clients to restore personalization with minimal overhead. We further introduce two new metrics, Personalization Preservation Score (PPS) and Cross-client Fairness Index (CFI), to evaluate pFL-specific unlearning quality. Experiments on CIFAR-10, CIFAR-100, and FEMNIST under varying non-IID settings indicate that pFedUL achieves unlearning effectiveness comparable to full retraining while maintaining an average of 97.3% personalized accuracy for remaining clients. Compared with six state-of-the-art FU methods adapted to the pFL setting, pFedUL consistently achieves superior personalization preservation, improving over the best existing method by 6.3% in PPS on average with an 8.4Keywords
Federated learning (FL) has emerged as a prominent distributed machine learning paradigm that enables multiple clients to collaboratively train a shared model without directly exchanging raw data [1]. By keeping training data locally on each client and communicating only model updates, FL provides inherent privacy advantages over centralized learning [2]. This paradigm has been widely deployed in domains such as healthcare, mobile keyboard prediction, and recommendation systems, where data sensitivity and regulatory compliance are of paramount importance [3].
Despite its privacy-preserving design, FL does not fully satisfy the “right to be forgotten” mandated by data protection regulations such as the European General Data Protection Regulation (GDPR) [4] and similar data protection regulations worldwide. These regulations require that, upon a data owner’s request, all traces of their data contributions must be effectively removed from the trained model. In centralized settings, machine unlearning has been extensively studied to address this challenge. Representative methods include SISA [5], which partitions training data into disjoint shards and retrains only the affected subset, and influence-function-based approaches [6] that approximate the effect of removing specific data points. However, retraining from scratch in federated settings is prohibitively expensive due to communication overhead and the potential unavailability of participating clients [7].
To address this challenge, federated unlearning (FU) has attracted increasing research attention [8]. FedEraser [9] pioneered this direction by leveraging stored historical gradient updates to calibrate the global model without full retraining. Subsequent works have explored diverse unlearning strategies, including clustered aggregation for asynchronous client removal [10], differential privacy combined with gradient residual correction for certified unlearning [11], auxiliary modules for simultaneous training and unlearning [12], and orthogonal subspace descent to address gradient explosion [13]. Other contributions include class-discriminative pruning [14], projected gradient ascent (PGA) [15], and feature-level unlearning via Lipschitz sensitivity analysis [16]. Several comprehensive surveys [17,18] have systematically categorized these methods and identified evaluation metrics to assess unlearning quality.
In spite of this progress, a critical assumption shared by nearly all existing FU methods remains largely unexamined: they are designed for the standard FedAvg paradigm [1], where all clients collectively maintain a single global model. In practical deployments, however, statistical heterogeneity (non-IID distribution) of client data can severely degrade the performance of FedAvg [19], which has led to the widespread adoption of personalized federated learning (pFL) [20]. pFL methods decompose the model into shared global components and client-specific personalized components, achieving substantially improved performance under data heterogeneity. Representative pFL approaches include FedPer [21], which separates the model into a shared feature extractor and personalized classification heads; FedRep [22], which learns shared representations while allowing clients to independently optimize local heads; Ditto [23], which maintains personalized local models regularized toward the global model; and FedBN [24], which personalizes batch normalization (BN) statistics while sharing all other parameters. These methods have demonstrated consistent improvements over FedAvg in heterogeneous settings [25].
The architectural decomposition introduced by pFL fundamentally alters the semantics of FU, creating challenges that existing methods are not equipped to handle. Specifically, when a target client requests removal from the federation, the unlearning process must operate on two structurally distinct parameter spaces: the shared global layers, which aggregate contributions from all participating clients, and the personalized local layers, which encode each client’s unique data distribution. This decomposition introduces a tension between two competing objectives. On the one hand, unlearning completeness requires thoroughly removing the target client’s influence from the shared layers. On the other hand, aggressive modifications to these shared layers can disrupt the learned feature representations upon which remaining clients depend for their personalized performance, a phenomenon we term personalization degradation. Existing FU methods, which treat all model parameters uniformly, are inherently unable to navigate this trade-off.
To date, only a few works have tangentially touched upon the intersection of FU and personalization. ZeroFU [26] proposed a zero-shot data-free unlearning approach using GAN-based distillation with personalized client features via conditional computation. Mimir [27] introduced a prompt-based personalized unlearning framework that uses client-specific prompts to capture data distribution characteristics. FUSED [28] analyzed layer-wise adapter structures for reversible unlearning. However, none of these methods systematically address unlearning under the model-splitting pFL paradigm (e.g., FedPer, FedRep) or regularization-based pFL (e.g., Ditto), nor do they provide formal analysis of the tension between shared and personalized layers.
Motivated by these observations, we propose pFedUL, a general layer-aware selective unlearning framework designed for pFL. The core insight is that different layer types require fundamentally different unlearning treatments: shared layers demand careful contribution removal with minimal collateral impact on remaining clients, while personalized layers of the target client can be directly discarded. pFedUL integrates Fisher information-based contribution attribution, adaptive selective correction, and lightweight local recalibration into a cohesive pipeline applicable across mainstream pFL architectures. We further introduce two pFL-specific evaluation metrics to assess unlearning quality dimensions not captured by existing benchmarks. The main contributions of this paper are summarized as follows:
• Problem formulation: We formalize the FU problem under the pFL paradigm, identifying a completeness-preservation trade-off between effective target-client removal on shared layers and personalization preservation for remaining clients.
• General framework: We propose pFedUL, a layer-aware unlearning framework that combines Fisher-based layer-wise contribution attribution, adaptive selective correction with differentiated intensity across layer types, and a lightweight recalibration protocol for remaining clients, applicable across four mainstream pFL architectures (FedPer, FedRep, Ditto, and FedBN) with architecture-specific instantiations.
• Evaluation metrics: We introduce two pFL-specific metrics—the Personalization Preservation Score (PPS) and the Cross-client Fairness Index (CFI)—to assess personalization preservation and cross-client fairness after unlearning, complementing existing MIA-based completeness measures.
• Empirical validation: We conduct experiments on CIFAR-10, CIFAR-100, and FEMNIST across four pFL architectures, comparing pFedUL with six state-of-the-art FU methods adapted to the pFL setting and showing that pFedUL approaches retraining-level forgetting while better preserving personalization and substantially reducing unlearning cost.
The remainder of this paper is organized as follows. Section 2 reviews related work on machine unlearning, FU, and pFL. Section 3 presents the proposed pFedUL framework, including the problem formulation and algorithmic details. Section 4 reports the experimental results and analysis. Section 5 discusses implications, limitations, and future directions. Finally, Section 6 concludes the paper.
Machine unlearning aims to remove the influence of specific training data from a trained model without retraining from scratch [29]. Exact unlearning methods retrain the model on the remaining data after excluding target samples. SISA [5] improved efficiency by partitioning training data into disjoint shards, each associated with an independently trained sub-model, so that only the affected shard requires retraining upon a removal request. However, this sharding strategy is not directly applicable to distributed settings where data partitioning is determined by client boundaries.
Approximate unlearning methods seek to efficiently modify model parameters to approximate the effect of exact retraining. Influence functions [6] estimate parameter changes caused by removing a single data point through second-order Hessian-based approximations, though at prohibitive cost for large-scale models. Sekhari et al. [30] proposed certified unlearning algorithms with formal indistinguishability guarantees. Thudi et al. [31] analyzed gradient ascent as an unlearning mechanism and showed that simply reversing gradient updates does not guarantee complete forgetting under general conditions. Relatedly, Elastic Weight Consolidation (EWC) [32] uses the Fisher information matrix to quantify parameter importance for previously learned tasks, providing a foundational tool for identifying which parameters are most affected by specific data contributions. Despite their effectiveness in centralized settings, these methods share a fundamental limitation: they assume direct access to training data or its statistics, which is unavailable in FL where data remain distributed across clients.
FU extends machine unlearning to distributed settings, aiming to remove a target client’s data contributions from the jointly trained global model without requiring full retraining or access to raw client data [8]. A diverse set of FU methods have been proposed over the past several years, which can be broadly categorized by their core technical approach. Table 1 provides a comprehensive summary.
Gradient calibration and approximation. FedEraser [9] stores historical gradient updates during training and calibrates the global model by excluding the target client’s contributions. Liu et al. [33] proposed a rapid retraining approach based on first-order Taylor expansion. These methods are computationally efficient but require substantial storage for historical updates.
Structural decomposition. Another line of research exploits federation structure to accelerate unlearning. KNOT [10] organizes clients into clusters with independently maintained sub-models, so that removal affects only the relevant cluster. MUFC [34] demonstrated that federated clustering can achieve exact unlearning with significant speedups. However, these clustering-based approaches do not account for the heterogeneous model structures found in pFL.
Direct parameter manipulation. Several methods directly modify model parameters to erase a target client’s influence. FedOSD [13] constrains unlearning updates within orthogonal subspaces for stable convergence. Halimi et al. [15] proposed PGA, which reverses the target client’s influence while projecting updates to preserve utility, and NoT [35] negates specific layer weights to disrupt inter-layer co-adaptation. These methods treat all model parameters uniformly, which becomes problematic when the model contains structurally distinct shared and personalized components.
Pruning, distillation, and specialized approaches. Wang et al. [14] proposed class-discriminative pruning using TF-IDF scoring for class-level unlearning. ZeroFU [26] proposed a zero-shot approach using GAN-based distillation with client-specific conditional features, making it one of the few methods that partially accounts for client-specific characteristics. Che et al. [36] developed FFMU based on nonlinear functional theory, enabling simultaneous training and unlearning. Additional specialized methods include FedRecovery [11] for certified removal, FedAU [12] for continuous contribution tracking, Ferrari [16] for feature-level unlearning, VeriFi [18] for unlearning verification, FRU [37] for recommendation domains, and SIFU [38] for provable bounds.
Gap analysis. As summarized in Table 1, the vast majority of existing FU methods operate under the assumption of a single global model, without awareness of the shared-personalized parameter distinction that characterizes pFL architectures. Only three recent works partially incorporate personalized elements: ZeroFU [26] incorporates client-specific conditional features but does not evaluate under model-splitting pFL; Mimir [27] uses prompt-based personalization but is restricted to prompt-tuning scenarios; and FUSED [28] analyzes layer-wise adapter structures but does not formalize the shared-personalized layer distinction. None of these methods directly addresses the tension between unlearning completeness on shared layers and personalization preservation for remaining clients, which motivates the present work.
The standard FedAvg algorithm [1] trains a single global model by averaging locally updated parameters from participating clients. However, when client data distributions are highly heterogeneous (non-IID), this uniform aggregation leads to significant performance degradation [19,39]. pFL addresses this challenge by allowing each client to maintain model components tailored to its local data characteristics [20].
The most intuitive approach is to split the network architecture into shared and private components. FedPer [21] designates the lower layers as a shared feature extractor while keeping the upper classification layers local to each client. FedRep [22] adopts a similar split but introduces alternating optimization that decouples the update of shared representations from local heads. FedRoD [40] extends this line by maintaining both a generic and a personalized classifier head simultaneously.
Personalization can also be achieved through optimization-level mechanisms. Ditto [23] trains a global model via FedAvg and then optimizes a personalized local model for each client using proximal regularization that penalizes deviation from the global model. pFedMe [41] follows a similar philosophy but employs Moreau envelopes for stronger convergence guarantees. A more lightweight approach targets normalization layers: FedBN [24] keeps only BN layers local while sharing all other parameters, based on the observation that BN statistics encode domain-specific distributional information. More recently, FedALA [25] proposed learning element-wise adaptive aggregation weights for fine-grained personalization.
Despite their diversity, all pFL methods share a common structural property: the model parameters are decomposed into shared parameters
3 The Proposed pFedUL Framework
Consider an FL system consisting of
where
In pFL, the model parameters are decomposed into two functionally distinct groups: shared parameters
This general formulation encompasses the four mainstream pFL architectures considered in this work. In FedPer [21] and FedRep [22],
To clarify the architecture-specific differences in how shared and personalized parameters are defined, Table 2 provides a detailed comparison across the four pFL methods. As shown, the nature and scale of personalized parameters vary substantially: in FedPer and FedRep,

We now formalize the FU problem under the pFL paradigm. Let
where
Remark 1 (Factors governing the trade-off severity). The severity of the completeness-preservation trade-off is governed by several factors that can be qualitatively characterized. First, when the target client’s data volume
To address the completeness-preservation trade-off, pFedUL adopts a three-stage pipeline, as illustrated in Fig. 1. Given a trained pFL system and a target client

Figure 1: Overview of the proposed pFedUL framework. The framework operates in three stages: (1) Computing layer-wise contribution scores of the target client using Fisher-based attribution; (2) Applying adaptive unlearning with differentiated intensity across shared layers based on contribution scores, while directly discarding the target client’s personalized parameters; (3) performing lightweight local recalibration for remaining clients to restore personalized performance.
In the first stage (Section 3.3), pFedUL computes a layer-wise contribution score for each shared layer, quantifying how much the target client
In the second stage (Section 3.4), pFedUL applies adaptive selective unlearning to shared parameters
In the third stage (Section 3.5), a lightweight recalibration protocol allows each remaining client to local fine-tune its personalized parameters
3.3 Layer-Wise Contribution Attribution
The first stage of pFedUL aims to quantify the target client’s influence on each layer of the shared parameters. We propose a Fisher information-based attribution mechanism that provides a principled measure of each layer’s sensitivity to the target client’s data.
Let
In practice, computing (Eq. (4)) exactly requires access to client data, which is unavailable at unlearning time. Instead, we accumulate an exponential moving average (EMA) of the squared gradients during training. In each communication round
where
Given the accumulated Fisher statistics, the layer-wise contribution score of the target client
where
This attribution mechanism offers two practical advantages. First, it only requires storing
Remark 2 (Theoretical connection between Fisher attribution and unlearning). The use of the diagonal Fisher information matrix as a contribution attribution metric is grounded in its well-established role as a measure of parameter importance with respect to specific data [6,32]. For a given client
3.4 Adaptive Selective Unlearning
Given the layer-wise contribution scores
We first classify each shared layer into one of two categories based on an adaptive threshold
The threshold
where
For high-contribution layers (
where
where
The multiplication by
where
For low-contribution layers (
Regarding personalized parameters, the target client’s personalized parameters
Remark. The layer-aware strategy is expected to outperform uniform unlearning (applying the same correction to all layers) for two reasons. First, in deep neural networks, the influence of a specific client’s data is typically concentrated in certain layers rather than uniformly distributed [32]. Second, modifying low-contribution layers introduces unnecessary noise that degrades the shared representation without improving forgetting completeness, whereas the selective approach avoids this wasteful perturbation. This reasoning is empirically validated in the ablation study (Section 4.5).
3.5 Lightweight Recalibration Protocol
After the selective unlearning stage modifies the shared parameters from
To restore this alignment, pFedUL employs a lightweight recalibration protocol. Each remaining client
where
The recalibration protocol is efficient for three reasons. First, only the personalized parameters
For the special case of Ditto, where the personalized model
which re-runs the Ditto local optimization with the updated global model
3.6 Evaluation Metrics for pFL Unlearning
Standard FU evaluation relies on metrics such as membership inference attack (MIA) accuracy [42] for unlearning completeness and remaining accuracy for model utility preservation. While these metrics remain relevant, they do not capture two quality dimensions that are important in the pFL setting: the preservation of per-client personalized performance and the fairness of unlearning impact across remaining clients. We introduce two complementary metrics to address these gaps.
The PPS measures the extent to which each remaining client retains its personalized performance after unlearning. Let
A PPS of 1.0 indicates perfect personalization preservation, meaning that no remaining client has experienced any performance degradation due to unlearning. Values below 1.0 indicate degradation, with lower values signifying more severe impact. Note that the Retrain baseline is assigned PPS
The CFI quantifies the uniformity of unlearning impact across remaining clients. An ideal unlearning procedure should affect all remaining clients similarly, rather than disproportionately harming certain clients. The CFI is defined as:
The CFI subtracts the standard deviation of per-client preservation ratios from 1, yielding values close to 1.0 when the unlearning impact is uniformly distributed and lower values when certain clients are disproportionately affected. Together, PPS and CFI provide a more comprehensive assessment of pFL unlearning quality that complements the standard MIA-based completeness metrics.
Remark 3 (Limitations of PPS and CFI). While PPS and CFI capture important evaluation dimensions, several caveats should be noted. First, both metrics are ratio-based, which makes them sensitive to clients with very low initial accuracy
The complete pFedUL procedure is summarized in Algorithm 1. The algorithm takes as input the trained pFL system (shared parameters, personalized parameters, and stored Fisher statistics) and the identity of the target client, and outputs the unlearned shared parameters along with recalibrated personalized parameters for all remaining clients.

The computational complexity of Algorithm 1 is dominated by Stages 2 and 3. Stage 1 requires only
We evaluate pFedUL on three widely used FL benchmarks. CIFAR-10 consists of 60,000 color images across 10 classes, with 50,000 for training and 10,000 for testing. CIFAR-100 follows the same image dimensions but spans 100 fine-grained classes, each containing 600 images. FEMNIST is a character recognition dataset from the LEAF benchmark [43] with naturally heterogeneous data distributions across writers, containing 62 classes (digits, uppercase, and lowercase letters). To simulate controlled non-IID data heterogeneity, we partition CIFAR-10 and CIFAR-100 across clients using the Dirichlet distribution
We deploy
We evaluate pFedUL under four mainstream pFL architectures that span the major personalization paradigms. FedPer [21] splits the model at the last fully connected layer, sharing the feature extractor and keeping the classifier head local. FedRep [22] uses the same split but employs alternating optimization between shared and personalized components. Ditto [23] trains personalized local models with
We compare pFedUL against five basic baselines and six state-of-the-art FU methods. The basic baselines are as follows. Retrain removes the target client and retrains the entire pFL system from scratch, serving as the gold-standard upper bound. FedEraser-adapted applies the FedEraser [9] gradient calibration method to the shared parameters
To provide a more comprehensive comparison, we further adapt six representative FU methods to the pFL setting by applying their unlearning operations to the shared parameters
To ensure fair comparison, Table 3 details the specific adaptation protocol applied to each baseline method, including which parameters are modified during unlearning, which are frozen, how the target client’s personalized parameters are handled, and whether a recalibration step is included. For methods that do not originally include any form of post-unlearning recalibration, we do not add one, as doing so would conflate the baseline’s intrinsic capability with the benefit of recalibration. This design ensures that the observed improvements of pFedUL are attributable to its complete framework rather than an unfair advantage from recalibration alone. The ablation study in Section 4.5 separately quantifies the contribution of recalibration.

We evaluate all methods using four metrics: MIA accuracy [42] (closer to 0.5 indicates better unlearning), Remaining Accuracy (test accuracy of remaining clients after unlearning), PPS (Eq. (14)), and CFI (Eq. (15)). Additionally, we measure the wall-clock time of each unlearning method.
We first evaluate unlearning completeness by measuring MIA accuracy and remaining model utility. Table 4 presents the results across all datasets, pFL architectures, and methods.

Several observations can be drawn from Table 4. First, pFedUL consistently achieves MIA accuracy within 1.0 to 1.8 percentage points of the Retrain baseline across all dataset–architecture combinations, suggesting that the layer-aware unlearning strategy effectively erases the target client’s data influence. In contrast, Fine-tune and FedEraser-adapted leave substantially higher MIA accuracy (7 to 11 points above 0.5), indicating incomplete forgetting. GA-Naive achieves MIA accuracy close to 0.5 but at the cost of severe remaining accuracy degradation, as the uniform gradient ascent indiscriminately damages all shared layers regardless of their contribution from the target client.
Second, pFedUL maintains remaining accuracy within 0.5 to 1.2 percentage points of Retrain, whereas GA-Naive suffers 10 to 15 point drops and FedEraser-adapted drops 4 to 7 points. This suggests that the selective nature of pFedUL’s layer-aware correction successfully preserves shared representation quality. The advantage is particularly notable on CIFAR-100, where the larger number of classes makes the shared representation more sensitive to indiscriminate perturbation.
Third, the results are consistent across all four pFL architectures, supporting the generalizability of pFedUL’s unified formulation. The slight variations across architectures (e.g., FedBN showing marginally lower remaining accuracy) likely reflect inherent differences in personalization capacity rather than limitations of pFedUL.
4.3 Personalization Preservation
While Table 4 shows pFedUL’s effectiveness in balancing unlearning completeness and remaining accuracy, the PPS and CFI metrics provide deeper insight into per-client personalization quality. Table 5 presents these results with standard deviations across five runs. Note that Retrain serves as the normalized upper bound (PPS

The results in Table 5 reveal several findings. First, pFedUL achieves an average PPS of 0.973 across all dataset–architecture combinations, indicating that remaining clients retain approximately 97.3% of their original personalized accuracy after unlearning. Compared to the best baseline among the approximate methods (Fine-tune, average PPS of approximately 0.944 on CIFAR-10), pFedUL shows consistent improvements across all settings, with the improvement over FedEraser-adapted (average PPS of approximately 0.864 on CIFAR-10) being particularly pronounced. This supports the effectiveness of the layer-aware unlearning and recalibration protocol.
Second, the CFI scores suggest that pFedUL distributes the unlearning impact more uniformly across remaining clients. GA-Naive exhibits the lowest CFI values (0.73 to 0.80), indicating that its indiscriminate gradient ascent disproportionately harms certain clients, particularly those whose data distributions overlap more with the target client’s data. pFedUL’s selective approach mitigates this disparity by preserving low-contribution layers that may be important for specific clients.
Third, the standard deviations of pFedUL are consistently smaller than those of all baselines across all metrics, suggesting more stable and predictable unlearning outcomes. This stability likely stems from the principled Fisher-based attribution, which provides a data-driven basis for unlearning decisions rather than relying on uniform heuristics.
4.4 Comparison with State-of-the-Art FU Methods
To further evaluate pFedUL against existing FU methods, we compare it with six representative approaches adapted to the pFL setting. Since the basic baselines in Tables 4 and 5 already establish pFedUL’s advantage over generic strategies, this section focuses on published FU methods that employ more sophisticated unlearning mechanisms. We use FedRep as the representative pFL architecture and report all four metrics across the three datasets. Results are averaged over 5 runs.
The results in Table 6 yield several observations. First, among the six adapted methods, the three that incorporate partial personalization awareness (ZeroFU, Mimir, FUSED) generally outperform the three that do not (PGA, KNOT, FedRecovery) in terms of PPS and CFI, suggesting that some degree of personalization consideration is beneficial. ZeroFU-adapted achieves the highest PPS among the existing methods (0.912 on CIFAR-10, 0.889 on CIFAR-100, 0.921 on FEMNIST), likely due to its client-specific conditional features that partially capture individual data distributions.

Second, pFedUL consistently outperforms all six adapted methods across all datasets and metrics. Compared to ZeroFU-adapted (the strongest existing method), pFedUL improves PPS by 6.3% on CIFAR-10, 7.9% on CIFAR-100, and 6.0% on FEMNIST, averaged across datasets, while simultaneously achieving lower MIA accuracy (closer to the ideal 0.5). This improvement is attributable to pFedUL’s explicit modeling of the shared-personalized layer structure, whereas ZeroFU’s conditional features only implicitly capture client-specific characteristics without formally distinguishing between shared and personalized parameters.
Third, PGA-adapted achieves MIA accuracy close to 0.5 (similar to its GA-Naive counterpart in Table 4), confirming that gradient ascent-based methods are effective at forgetting. However, the PGA mechanism does not prevent the severe personalization degradation observed in PPS (0.838 on CIFAR-10), as the projection operates on the global parameter space without awareness of the shared-personalized decomposition. KNOT-adapted and FedRecovery-adapted show moderate performance across all metrics but exhibit incomplete forgetting (MIA accuracy 52.3 to 56.1), as their original designs assume a single global model structure that does not align well with the pFL setting.
Fourth, the CFI gap between pFedUL and existing methods is particularly pronounced. The best existing method (ZeroFU-adapted) achieves CFI values of 0.879 to 0.893, while pFedUL reaches 0.950 to 0.971. This indicates that pFedUL’s layer-aware selective unlearning distributes the forgetting impact more evenly across remaining clients, whereas adapted methods that do not explicitly account for the shared-personalized structure tend to cause uneven degradation.
To validate the contribution of each component in pFedUL, we conduct an ablation study by systematically removing individual components. We evaluate four variants: the full pFedUL framework, w/o Attribution (replacing layer-wise contribution scores with uniform weights across all layers), w/o Adaptive (applying the same unlearning intensity to all high-contribution layers regardless of their individual scores), and w/o Recalibration (skipping the local fine-tuning stage for remaining clients). Experiments are conducted on CIFAR-10 with
The ablation results in Fig. 2 indicate that each component plays a distinct and complementary role. Removing the Fisher-based attribution (w/o Attribution) causes the most notable PPS degradation (from 0.975 to 0.921), as uniform unlearning weights lead to unnecessary perturbation of layers where the target client had minimal influence. Removing the adaptive intensity mechanism (w/o Adaptive) primarily increases MIA accuracy (from 0.511 to 0.536), suggesting that applying uniform correction intensity to all high-contribution layers results in under-forgetting on the most critical layers. Removing the recalibration protocol (w/o Recalibration) reduces PPS from 0.975 to 0.948, confirming that even the selective unlearning strategy introduces some misalignment between shared and personalized layers that benefits from local fine-tuning. Notably, the MIA accuracy remains stable when recalibration is removed, consistent with the expectation that recalibration operates on personalized parameters only and does not compromise unlearning completeness.

Figure 2: Ablation study on CIFAR-10 with FedRep (
4.6 Attribution Validity and Client-Level Analysis
To directly validate whether the Fisher-based contribution scores reliably identify layers most associated with the target client’s influence, we conduct a controlled experiment that compares three layer selection strategies for unlearning: (1) High-attribution, which applies unlearning only to the top-
The results in Table 7 provide direct evidence that the Fisher-based attribution scores reliably identify the layers most responsible for encoding the target client’s data influence. Unlearning only the high-attribution layers achieves MIA accuracy of 51.1%, which is close to the ideal 0.5 and comparable to uniform all-layer unlearning (49.8%), while preserving substantially higher remaining accuracy (84.2% vs. 73.1%) and PPS (0.975 vs. 0.833). In contrast, unlearning only low-attribution layers results in MIA accuracy of 68.7%, indicating that the target client’s data influence remains largely intact when low-contribution layers are modified. The random selection strategy falls between these two extremes. These results confirm that the target client’s influence is concentrated in specific layers rather than uniformly distributed, and that the Fisher-based contribution score

To complement the averaged PPS and CFI metrics and address potential sensitivity to individual client performance variations, we report the per-client preservation ratio
We analyze the sensitivity of pFedUL to three key factors: the threshold sensitivity parameter
The sensitivity analysis in Fig. 3 reveals the following. For the threshold parameter

Figure 3: Sensitivity analysis on CIFAR-10 with FedRep. (a) Trade-off between unlearning completeness and personalization preservation controlled by the threshold parameter
For non-IID heterogeneity in Fig. 3b, pFedUL maintains a PPS above 0.960 across all tested
For multi-client unlearning in Fig. 3c, pFedUL’s PPS decreases gradually from 0.975 (1 client) to 0.961 (3 clients) and 0.942 (5 clients), while MIA accuracy remains within 2 percentage points of 0.5 up to 3 clients. This gradual degradation is inherent to the increased cumulative perturbation of shared parameters and is observed across all methods. pFedUL’s advantage over baselines widens as the number of unlearning clients increases, since layer-aware selectivity becomes more important when multiple clients’ contributions must be disentangled.
Table 8 compares the wall-clock time and communication overhead of all methods across the three datasets, using FedRep as the pFL backbone. As shown in Table 8, pFedUL achieves an 8.4

Compared to other approximate baselines, pFedUL offers a distinct advantage in communication cost: it requires zero global aggregation rounds, while GA-Naive and Fine-tune still require 20 and 30 rounds of iterative server-client communication, respectively. FedEraser-adapted is the slowest among the approximate methods (3.2 to 3.6
4.9 Robustness under Challenging Scenarios
The experiments in Sections 4.2–4.8 evaluate pFedUL under the default setting where one randomly selected client with a typical data volume is removed. To more comprehensively assess robustness, we evaluate pFedUL under three additional challenging scenarios on CIFAR-10 with the FedRep backbone: (1) imbalanced data volume, where the target client holds a disproportionately large share of the total data; (2) rare-class target client, where the target client is the primary holder of certain minority classes that are underrepresented among other clients; and (3) sequential unlearning, where multiple clients are removed sequentially rather than simultaneously. We compare pFedUL against the two strongest baselines (ZeroFU-adapted and Fine-tune) and Retrain. Results are averaged over 5 runs.
The results in Table 9 reveal that pFedUL maintains strong performance across all three challenging scenarios, though with expected modest degradation compared to the default setting. In the imbalanced scenario, where the target client contributes 20% of the total data (4

In the rare-class scenario, where the target client is the dominant holder of two minority classes, pFedUL achieves PPS of 0.951 and MIA of 52.1%. The primary challenge in this scenario is that removing the target client can cause the shared feature extractor to lose discriminative capacity for the rare classes, potentially affecting remaining clients that also hold small numbers of these class samples. pFedUL mitigates this by limiting modifications to high-contribution layers, preserving the broader feature representation. The CFI remains high (0.932), indicating that the remaining clients’ rare-class accuracy does not degrade disproportionately.
In the sequential scenario, where three clients are removed one after another with a full pFedUL unlearning procedure applied at each step, the cumulative effect on PPS (0.943) and MIA (53.4%) is modest. Each sequential removal builds upon the updated
The results presented in this paper carry implications for the deployment of FL systems in privacy-sensitive environments. Our finding that existing FU methods—including recent approaches with partial personalization awareness such as ZeroFU, Mimir, and FUSED—do not adequately preserve personalization when adapted to pFL architectures exposes a notable gap in current research. As pFL methods increasingly replace FedAvg in practical deployments due to their superior handling of data heterogeneity, the inability to perform effective unlearning under these architectures represents a potential regulatory compliance risk. pFedUL addresses this gap by showing that layer-aware unlearning can simultaneously satisfy the right to be forgotten and maintain service quality for remaining participants, contributing toward making privacy-preserving personalized FL more practically viable.
Beyond the immediate technical contributions, the conceptual framework introduced in this work—namely the decomposition of unlearning into shared-layer forgetting and personalized-layer preservation—offers a useful lens for understanding the interplay between collaborative knowledge and individual adaptation in distributed learning systems. The two proposed metrics, PPS and CFI, formalize evaluation dimensions that prior work has not explicitly addressed, and we anticipate they may be useful in future FU benchmarks. In particular, the CFI metric highlights the importance of fairness in unlearning, ensuring that the cost of one client’s departure is not disproportionately borne by specific remaining clients. This fairness perspective connects FU to broader discussions on equitable machine learning, where the actions of individual participants should not unfairly impact others in the system.
5.2 Limitations and Future Work
Despite the effectiveness of pFedUL, several limitations should be acknowledged. First, the Fisher-based attribution mechanism requires storing per-client, per-layer gradient statistics throughout the training process, introducing additional memory overhead on the server. While this overhead is modest relative to storing full model checkpoints (as required by FedEraser), it may become a concern in extremely large-scale federations with thousands of clients and very deep models. Moreover, the storage of per-client Fisher statistics on the server introduces potential privacy considerations that merit discussion. Although the stored quantities are diagonal Fisher information vectors (i.e., aggregated squared gradient norms) rather than raw gradients or data, they nonetheless encode information about each client’s data distribution, specifically which parameters are most sensitive to that client’s data. In principle, an adversary with access to these statistics could infer certain characteristics of a client’s data distribution, such as which classes dominate the local dataset, by analyzing which layers exhibit high Fisher values. Several mitigation strategies can be adopted to address this risk: (a) applying calibrated noise to the Fisher statistics before storage, following differential privacy principles, at the cost of slightly reduced attribution precision; (b) deleting all per-client Fisher statistics immediately after the unlearning procedure completes, retaining only the aggregate Fisher across remaining clients for potential future use; and (c) computing and storing Fisher statistics only for the shared layers rather than the full model, since personalized parameters are not subject to attribution. We note that this privacy consideration is not unique to pFedUL—any gradient-calibration-based FU method (e.g., FedEraser) faces analogous or greater exposure by storing full historical gradient updates—but it warrants explicit acknowledgment in the context of regulatory compliance, which is a primary motivation for FU. Second, the current framework assumes that the target client’s identity is known and that unlearning occurs after training has converged. Extending pFedUL to support unlearning during ongoing training or handling sequential unlearning requests from multiple clients over time remains an open challenge, though the sequential unlearning experiment in Section 4.9 provides initial evidence that pFedUL can handle sequential removals without compounding instability. Third, our evaluation focuses on classification tasks with convolutional architectures, and the generalizability of the layer-wise contribution patterns to other tasks (e.g., natural language processing, generative models) and architectures (e.g., transformers) warrants further investigation.
Several promising directions emerge from this work. First, integrating pFedUL with formal verification mechanisms [18] could enable certified unlearning guarantees under the pFL paradigm, bridging the gap between approximate and provably correct forgetting. Second, extending the framework to support vertical FL, where features rather than samples are partitioned across clients, would require rethinking the notion of layer-wise contributions and is a natural next step. Third, the emergence of federated foundation models and large language models introduces new challenges for unlearning, as the scale and complexity of these models amplify both the importance and the difficulty of selective forgetting. Adapting the layer-aware principle of pFedUL to parameter-efficient fine-tuning paradigms such as LoRA and prompt tuning represents a timely research direction. Finally, investigating the theoretical connections between the completeness-preservation trade-off identified in this paper and the broader privacy-utility trade-off in differential privacy could yield deeper insights into the fundamental limits of FU.
In this paper, we identified a critical yet largely overlooked challenge in FL: most existing FU methods are designed for the FedAvg paradigm and do not account for the structural decomposition inherent in pFL architectures. To address this gap, we formalized the FU problem under the pFL paradigm and revealed a fundamental tension between unlearning completeness on shared layers and personalization preservation for remaining clients. We proposed pFedUL, a layer-aware selective unlearning framework that integrates three synergistic components: Fisher-based layer-wise contribution attribution, adaptive selective unlearning with differentiated intensity across layer types, and a lightweight recalibration protocol for restoring personalized performance. We further introduced two evaluation metrics, PPS and CFI, to capture pFL-specific unlearning quality dimensions not addressed by existing benchmarks. Experiments on CIFAR-10, CIFAR-100, and FEMNIST across four mainstream pFL architectures (FedPer, FedRep, Ditto, and FedBN) indicate that pFedUL achieves unlearning effectiveness comparable to full retraining while maintaining an average of 97.3% personalized accuracy for remaining clients across all tested settings. Compared with six state-of-the-art FU methods adapted to the pFL setting, pFedUL consistently achieves superior personalization preservation and cross-client fairness, with an 8.4
Acknowledgement: Not applicable.
Funding Statement: This research received no external funding.
Author Contributions: Conceptualization: Zhuodong Liu, Xiangyu Li and Zhihao Zhang; Methodology: Zhuodong Liu and Xiangyu Li; Software: Zhuodong Liu and Zhihao Zhang; Validation: Zhuodong Liu and Zhihao Zhang; Formal Analysis: Zhuodong Liu, Xiangyu Li and Zhihao Zhang; Investigation: Zhuodong Liu, Xiangyu Li and Zhihao Zhang; Data Curation: Zhuodong Liu and Xiangyu Li; Writing—Original Draft Preparation: Zhuodong Liu and Zhihao Zhang; Visualization: Zhuodong Liu and Zhihao Zhang; Writing—Review and Editing: Zhuodong Liu and Xiangyu Li; Supervision, Xiangyu Li; Project Administration, Xiangyu Li. All authors reviewed and approved the final version of the manuscript.
Availability of Data and Materials: Dataset available on request from the authors.
Ethics Approval: Not applicable.
Conflicts of Interest: The authors declare no conflicts of interest.
References
1. McMahan B, Moore E, Ramage D, Hampson S, Arcas BA. Communication-efficient learning of deep networks from decentralized data. In: Proceedings of the 20th International Conference on Artificial Intelligence and Statistics (AISTATS); 2017 Apr 20–22; Fort Lauderdale, FL, USA. p. 1273–82. [Google Scholar]
2. Kairouz P, McMahan HB, Avent B, Bellet A, Bennis M, Bhagoji AN, et al. Advances and open problems in federated learning. Found Trends Mach Learn. 2021;14(1–2):1–210. doi:10.1561/2200000083. [Google Scholar] [CrossRef]
3. Li T, Sahu AK, Talwalkar A, Smith V. Federated learning: challenges, methods, and future directions. IEEE Signal Process Mag. 2020;37(3):50–60. doi:10.1109/MSP.2020.2975749. [Google Scholar] [CrossRef]
4. European Parliament, Council of the European Union. Regulation (EU) 2016/679 of the European parliament and of the council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data. Off J Eur Union. 2016;L119:1–88. [Google Scholar]
5. Bourtoule L, Chandrasekaran V, Choquette-Choo CA, Jia H, Travers A, Zhang B, et al. Machine unlearning. In: Proceedings of the 2021 IEEE Symposium on Security and Privacy (S&P); 2021 May 24–27; San Francisco, CA, USA. p. 141–59. doi:10.1109/SP40001.2021.00019. [Google Scholar] [CrossRef]
6. Koh PW, Liang P. Understanding black-box predictions via influence functions. In: Proceedings of the 34th International Conference on Machine Learning (ICML); 2017 Aug 6–11; Sydney, Australia. p. 1885–94. [Google Scholar]
7. Xu H, Zhu T, Zhang L, Zhou W, Yu PS. Machine unlearning: a survey. ACM Comput Surv. 2023;56(1):9. doi:10.1145/3603620. [Google Scholar] [CrossRef]
8. Romandini N, Mora A, Mazzocca C, Montanari R, Bellavista P. Federated unlearning: a survey on methods, design guidelines, and evaluation metrics. IEEE Trans Neural Netw Learn Syst. 2024;35(12):17513–30. doi:10.1109/TNNLS.2024.3478334. [Google Scholar] [PubMed] [CrossRef]
9. Liu G, Ma X, Yang Y, Liu J. FedEraser: enabling efficient client-level data removal from federated learning. In: Proceedings of the 2021 IEEE/ACM 29th International Symposium on Quality of Service (IWQoS); 2021 Jun 25–28; Tokyo, Japan. p. 1–10. doi:10.1109/IWQOS52092.2021.9521274. [Google Scholar] [CrossRef]
10. Su L, Li J. Asynchronous federated unlearning. In: Proceedings of the IEEE Conference on Computer Communications (INFOCOM); 2023 May 17–20; New York, NY, USA. p. 1–10. doi:10.1109/INFOCOM53939.2023.10228894. [Google Scholar] [CrossRef]
11. Zhang L, Zhu T, Calandrini P, Yin J. FedRecovery: differentially private machine unlearning for federated learning frameworks. IEEE Trans Inf Forensics Secur. 2023;18:4732–46. doi:10.1109/TIFS.2023.3297905. [Google Scholar] [CrossRef]
12. Gu H, Zhu G, Zhang J, Zhao X, Han Y, Fan L, et al. Unlearning during learning: an efficient federated machine unlearning method. In: Proceedings of the 33rd International Joint Conference on Artificial Intelligence (IJCAI); 2024 Aug 3–9; Jeju, Republic of Korea. p. 4035–43. doi:10.24963/ijcai.2024/446. [Google Scholar] [CrossRef]
13. Pan Z, Wang Z, Li C, Zheng K, Wang B, Tang X, et al. Federated unlearning with gradient descent and conflict mitigation. In: Proceedings of the 39th AAAI Conference on Artificial Intelligence; 2025 Feb 25–Mar 4; Philadelphia, PA, USA. p. 19804–12. doi:10.1609/aaai.v39i19.34181. [Google Scholar] [CrossRef]
14. Wang J, Guo S, Xie X, Qi H. Federated unlearning via class-discriminative pruning. In: Proceedings of the ACM Web Conference (WWW); 2022 Apr 25–29; Lyon, France. p. 622–32. doi:10.1145/3485447.3512222. [Google Scholar] [CrossRef]
15. Halimi A, Kadhe S, Rawat A, Baracaldo N. Federated unlearning: how to efficiently erase a client in FL? arXiv:2207.05521. 2022. doi:10.48550/arxiv.2207.05521. [Google Scholar] [CrossRef]
16. Gu H, Ong WK, Chan CS, Fan L. Ferrari: federated feature unlearning via optimizing feature sensitivity. In: Proceedings of the 38th Conference on Neural Information Processing Systems (NeurIPS); 2024 Dec 10–15; Vancouver, BC, Canada. p. 1–12. doi:10.52202/079017-0761. [Google Scholar] [CrossRef]
17. Jeong G, Ma K. A survey on federated unlearning: challenges and opportunities. IEEE Trans Big Data. 2026;12(3):702–20. doi:10.1109/tbdata.2026.3668538. [Google Scholar] [CrossRef]
18. Gao Y, Liu Y, Xiong H, Han Z. VeriFi: towards verifiable federated unlearning. IEEE Trans Dependable Secure Comput. 2024;21(5):4236–49. doi:10.1109/TDSC.2024.3354630. [Google Scholar] [CrossRef]
19. Li T, Sahu AK, Zaheer M, Sanjabi M, Talwalkar A, Smith V. Federated optimization in heterogeneous networks. In: Proceedings of Machine Learning and Systems (MLSys); 2020 Mar 2–4; Austin, TX, USA. p. 429–50. [Google Scholar]
20. Tan AZ, Yu H, Cui L, Yang Q. Towards personalized federated learning. IEEE Trans Neural Netw Learn Syst. 2023;34(12):9587–603. doi:10.1109/TNNLS.2022.3160699. [Google Scholar] [PubMed] [CrossRef]
21. Arivazhagan MG, Aggarwal V, Singh AK, Choudhary S. Federated learning with personalization layers. arXiv:1912.00818. 2019. [Google Scholar]
22. Collins L, Hassani H, Mokhtari A, Shakkottai S. Exploiting shared representations for personalized federated learning. In: Proceedings of the 38th International Conference on Machine Learning (ICML); 2021 Jul 18–24; Virtual. p. 2089–99. [Google Scholar]
23. Li T, Hu S, Beirami A, Smith V. Ditto: fair and robust federated learning through personalization. In: Proceedings of the 38th International Conference on Machine Learning (ICML); 2021 Jul 18–24; Virtual. p. 6357–68. [Google Scholar]
24. Li X, Jiang M, Zhang X, Kamp M, FedBN DT. FedBN: federated learning on non-IID features via local batch normalization. In: Proceedings of the 9th International Conference on Learning Representations (ICLR); 2021 May 3–7; Virtual. p. 1–16. [Google Scholar]
25. Zhang J, Hua Y, Wang H, Song T, Xue Z, Ma R, et al. FedALA: adaptive local aggregation for personalized federated learning. In: Proceedings of the 37th AAAI Conference on Artificial Intelligence; 2023 Feb 7–14; Washington, DC, USA. p. 11237–44. doi:10.1609/aaai.v37i9.26330. [Google Scholar] [CrossRef]
26. Wu W, Liang H, Yuan J, Jiang J, Wang KY, Hu C, et al. Zero-shot federated unlearning via transforming from data-dependent to personalized model-centric. In: Proceedings of the 34th International Joint Conference on Artificial Intelligence (IJCAI); 2025 Aug 16–22; Montreal, QC, Canada. p. 6588–96. doi:10.24963/ijcai.2025/733. [Google Scholar] [CrossRef]
27. Wu W, Liang H, Tu T, Jiang J, Hu C, Mimir C D. Data-free federated unlearning through client-specific prompt generation for personalized models. IEEE Trans Mob Comput. 2025;24(10):10537–56. doi:10.1109/TMC.2025.3570018. [Google Scholar] [CrossRef]
28. Zhong Z, Bao W, Wang J, Zhang S, Zhou J, Lyu L, et al. Unlearning through knowledge overwriting: reversible federated unlearning via selective sparse adapter. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR); 2025 Jun 10–17; Nashville, TN, USA. p. 30661–70. doi:10.1109/CVPR52734.2025.02855. [Google Scholar] [CrossRef]
29. Nguyen TT, Huynh TT, Nguyen PL, Liew AWC, Yin H, Nguyen QVH. A survey of machine unlearning. ACM Comput Surv. 2024;56(12):1–37. doi:10.1145/3749987. [Google Scholar] [CrossRef]
30. Sekhari A, Acharya J, Kamath G, Suresh AT. Remember what you want to forget: algorithms for machine unlearning. In: Proceedings of the 35th Conference on Neural Information Processing Systems (NeurIPS); 2021 Dec 6–14; Virtual. p. 18075–86. [Google Scholar]
31. Thudi A, Deza G, Chandrasekaran V, Papernot N. Unrolling SGD: understanding factors of influence in machine unlearning. In: Proceedings of the 2022 IEEE 7th European Symposium on Security and Privacy (EuroS&P); 2022 Jun 6–10; Genoa, Italy. p. 303–19. doi:10.1109/eurosp53844.2022.00027. [Google Scholar] [CrossRef]
32. Kirkpatrick J, Pascanu R, Rabinowitz N, Veness J, Desjardins G, Rusu AA, et al. Overcoming catastrophic forgetting in neural networks. Proc Natl Acad Sci U S A. 2017;114(13):3521–6. doi:10.1073/pnas.1611835114. [Google Scholar] [CrossRef]
33. Liu Y, Xu L, Yuan X, Wang C, Li B. The right to be forgotten in federated learning: an efficient realization with rapid retraining. In: Proceedings of the IEEE Conference on Computer Communications (INFOCOM); 2022 May 2–5; London, UK. p. 1749–58. doi:10.1109/INFOCOM48880.2022.9796721. [Google Scholar] [CrossRef]
34. Pan C, Sima J, Prakash S, Rana V, Milenkovic O. Machine unlearning of federated clusters. In: Proceedings of the 11th International Conference on Learning Representations (ICLR); 2023 May 1–5; Kigali, Rwanda. p. 1–27. [Google Scholar]
35. Khalil YH, Brunswic L, Lamghari S, Li X, Beitollahi M, Chen X. Federated unlearning via weight negation. In: Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR); 2025 Jun 10–17; Nashville, TN, USA. p. 30661–70. doi:10.1109/cvpr52734.2025.02399. [Google Scholar] [CrossRef]
36. Che T, Zhou Y, Zhang Z, Lyu Y, Liu J, Yan D, et al. Fast federated machine unlearning with nonlinear functional theory. In: Proceedings of the 40th International Conference on Machine Learning (ICML); 2023 Jul 23–29; Honolulu, HI, USA. p. 4241–68. [Google Scholar]
37. Yuan W, Yin H, Wu F, Zhang S, He T, Wang H. Federated unlearning for on-device recommendation. In: Proceedings of the 16th ACM International Conference on Web Search and Data Mining (WSDM); 2023 Feb 27–Mar 3; Singapore. p. 393–401. doi:10.1145/3539597.3570462. [Google Scholar] [CrossRef]
38. Fraboni Y, Waerebeke MV, Scaman K, Vidal R, Kameni L, Lorenzi M. SIFU: sequential informed federated unlearning: efficient and provable client unlearning in federated optimization. In: Proceedings of the 27th International Conference on Artificial Intelligence and Statistics (AISTATS); 2024 May 2–4; Valencia, Spain. p. 1–12 [Google Scholar]
39. Li Q, Diao Y, Chen Q, He B. Federated learning on non-IID data silos: an experimental study. In: Proceedings of the 38th IEEE International Conference on Data Engineering (ICDE); 2022 May 9–12; Malaysia: Kuala Lumpur. p. 965–78. doi:10.1109/ICDE53745.2022.00077. [Google Scholar] [CrossRef]
40. Chen HY, Chao WL. On bridging generic and personalized federated learning for image classification. arXiv:2107.00778. 2022. [Google Scholar]
41. T.Dinh C, Tran NH, Nguyen TD. Personalized federated learning with Moreau envelopes. In: Proceedings of the 34th Conference on Neural Information Processing Systems (NeurIPS); 2020 Dec 6–12; Virtual. p. 21394–405. doi:10.1109/icme59968.2025.11209227. [Google Scholar] [CrossRef]
42. Shokri R, Stronati M, Song C, Shmatikov V. Membership inference attacks against machine learning models. In: Proceedings of the 2017 IEEE Symposium on Security and Privacy (S&P); 2017 May 22–26; San Jose, CA, USA. p. 3–18. doi:10.1109/SP.2017.41. [Google Scholar] [CrossRef]
43. Caldas S, Duddu SMK, Wu P, Li T, Konecny J, McMahan HB, et al. LEAF: a benchmark for federated settings. arXiv:1812.01097. 2019. [Google Scholar]
44. Hsu TMH, Qi H, Brown M. Measuring the effects of non-independently and identically distributed data on federated learning. arXiv:2009.09890. 2022. [Google Scholar]
Cite This Article
Copyright © 2026 The Author(s). Published by Tech Science Press.This work is licensed under a Creative Commons Attribution 4.0 International License , which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.


Submit a Paper
Propose a Special lssue
View Full Text
Download PDF
Downloads
Citation Tools