> Paper: FedKPer: Tackling Generalization and Personalization in Medical Federated Learning via Knowledge Personalization > Authors: Zoe Fowler, Ghassan AlRegib > arXiv: 2605.00698 | 2026-04-30
1. The "One-Size-Fits-None" Dilemma
Imagine a medical AI system trained across multiple hospitals:
- Hospital A: large urban hospital — younger patients, complex cases, advanced equipment
- Hospital B: rural clinic — elderly patients, more chronic disease, simpler equipment
- Hospital C: a specialty hospital focused on one disease category
- Different age, sex, and ethnicity distributions
- Different disease spectra
- Different socioeconomic backgrounds
- Different CT/MRI machines across hospitals
- Differences in image quality, resolution, and scan protocols
- Resulting in "domain shift"
- Different diagnostic criteria among physicians
- Variable annotation quality
- Label noise
- Either pursue global generalization (sacrificing local performance)
- Or local personalization (sacrificing global knowledge sharing)
- Treat the two as independent problems
- Extract "common knowledge" from all hospitals' models
- This knowledge generalizes across hospitals
- E.g., basic anatomy, common pathological features
- Each hospital learns how to personalize the global knowledge
- Adapting to local patients, devices, and physician practices
- E.g., reweighting features for elderly patients
- Model parameters split into a "shared part" and a "personalized part"
- The shared part is synchronized across all hospitals
- The personalized part is updated locally
- Statistical heterogeneity causes "catastrophic forgetting"
- Knowledge from new hospitals overwrites old knowledge
- FedKPer alleviates this via knowledge retention mechanisms
- Each client maintains its own parameter set
- Parameter counts explode
- Hard to interpret *what* was personalized
- Personalizes at the "knowledge level"
- Parameters are shared; knowledge is adjusted
- More interpretable: you know what knowledge was adapted
- Physicians can understand the model's personalization logic
- "This model was adapted for our hospital's elderly patients"
- Increases trust and acceptance
- Pure globalization = ignoring individual differences
- Pure localization = ignoring universal laws
- Knowledge personalization = gracefully adapting universal principles to specific conditions
Train one global model: it performs well at the urban hospital but poorly at the rural one, because patient populations differ too much.
Train a separate model per hospital: each has too little data, generalizes poorly, and cannot leverage other hospitals' knowledge.
This is the "globalization vs. personalization" dilemma in federated learning.
2. Statistical Heterogeneity: Enemy #1 in Medical Federated Learning
Medical data heterogeneity manifests as:
1. Patient population differences
2. Device differences
3. Annotation differences
Limitations of existing methods:
3. FedKPer: Knowledge Personalization
The paper proposes FedKPer, with a core insight:
> Generalization and personalization are not opposites — they can be synergistic. Global knowledge provides the "common foundation"; local knowledge provides "personalized adjustment."
Technical approach:
1. Global knowledge extraction
2. Local knowledge personalization
3. Knowledge decomposition
4. Forgetting mitigation
Think of it as a global medical knowledge base: universal medical principles (global) plus region-specific treatment guidelines (personalized). Together they deliver the best care.
4. Why Knowledge Personalization Beats Parameter Personalization
Problems with parameter personalization:
Knowledge personalization:
Clinical value:
5. A Feynman-Style Take: Universal vs. Particular
> "Physical laws are universal, but their behavior under specific conditions is particular. Understanding universality tells you *why*; understanding particularity tells you *how*."
Applied to medical AI:
> "Medical knowledge has universal principles (e.g., anatomy), but application must account for specific conditions (patient populations, devices, hospital workflows). FedKPer lets AI learn both the *why* and the *how*."
This is not just technical but philosophical:
6. Takeaways
If you're building a federated learning system, ask yourself:
1. Does statistical heterogeneity exist in my setting? 2. Am I making an unnecessary trade-off between "global" and "local"? 3. Is knowledge-level personalization better than parameter-level in my case? 4. Is forgetting an overlooked problem in my federated system?
FedKPer reminds us: the best federated learning is neither "one-size-fits-all" nor "everyone for themselves" — it's "harmony in diversity."
Global knowledge provides the shared scientific foundation; local personalization provides targeted clinical application. Only together can they truly serve diverse medical environments.
In the federated era of medical AI, knowledge personalization is the bridge — connecting global wisdom with local care.
*(Source: zhichai.net, ZhiChai AI Lab)*