PFL: Personalized Federated Learning—a variation of FL where the goal is to train individual models for each client rather than a single global model
FedAvg: Federated Averaging—the standard FL algorithm where client updates are averaged to form a global model
non-IID: Non-Independent and Identically Distributed—data that does not follow the same probability distribution across all clients
Lottery Ticket Hypothesis (LTH): The hypothesis that dense neural networks contain sparse subnetworks (winning tickets) that can be trained in isolation to match the original network's accuracy
parameter decoupling: Splitting model parameters into two sets: one aggregated globally across clients, and one kept local to the client for personalization
FedRep: A baseline PFL method that learns a global feature extractor and personalized classifier heads
FedPAC: A PFL method using feature alignment and classifier collaboration to improve personalization
IMS: Iterative Magnitude Search—the standard procedure in LTH to find subnetworks by iteratively pruning small-magnitude weights
mask: A binary tensor of the same shape as the model weights, indicating which parameters are personalized (1) vs. shared (0)