TL;DR
Federated learning (training ML models across distributed devices without centralizing data) struggles when devices update asynchronously—some lag behind others, causing stale or biased model updates. Researchers developed a bias-correction aggregation approach for push-based asynchronous federated learning that adjusts how model updates are combined to account for timing delays.
✦ Why It Matters
Engineers can deploy federated learning systems with asynchronous device participation while maintaining model accuracy without waiting for slow devices.
Key Takeaways
How It Works
PushCen-ADFL operates by allowing clients to communicate using compressed centroid messages, which represent the model's state. This method reduces the amount of data exchanged while maintaining essential information.
The framework employs an average-preserving push-sum mixing technique to correct biases in model aggregation, ensuring that updates reflect a more accurate representation of the collective knowledge. Additionally, a centroid regularization technique is used to mitigate model drift caused by data heterogeneity and delays in client participation.
Related