TL;DR
Federated learning often suffers from issues when clients do not consistently participate, leading to outdated model updates that can destabilize training. FedSteer is a new method that uses a gradient subspace and corrective projections to align stale gradients with the current optimization landscape.
✦ Why It Matters
Engineers can implement FedSteer to enhance federated learning systems, improving stability and accuracy in decentralized training.
Key Takeaways
How It Works
FedSteer constructs a gradient subspace from recent client gradients, allowing it to project active client gradients onto this subspace. This projection helps find optimal coordinates for model updates, while inactive clients can reuse these coordinates, adjusted for the evolving subspace.
This approach effectively aligns outdated gradients with the current global objective, stabilizing training.
Related