Skip to content

Commit

Permalink
Improved explanation for CustomFedAvgM strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
gubertoli committed Nov 23, 2023
1 parent d09a014 commit 7f9ec32
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion baselines/fedavgm/fedavgm/strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@


class CustomFedAvgM(FedAvg):
"""Re-implmentation of FedAvgM."""
"""Re-implmentation of FedAvgM.
This implementation of FedAvgM diverges from original (Flwr v1.5.0) implementation.
Here, the re-implementation introduces the Nesterov Accelerated Gradient (NAG),
same as reported in the original FedAvgM paper:
https://arxiv.org/pdf/1909.06335.pdf
"""

def __init__(
self,
Expand Down

0 comments on commit 7f9ec32

Please sign in to comment.