-
Notifications
You must be signed in to change notification settings - Fork 881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix missing square in proximal term of FedProx baseline #2210
Conversation
I've re-run the experiments. I'll update the figure shown at the bottom of the readme |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's rename Viz_and_plot_results.ipynb
to use all lowercase characters
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cool
* 'main' of github.com:adap/flower: Fix default contiguous value in IidPartitioner (#2406) Update FDS docs index (#2337) Add TensorFlow integration tests with FDS (#2350) Add paths specification to CI triggers for FDS (#2399) Add FDS how-to guides (#2332) Add Flower Datasets tests as GitHub workflow (#2345) Fix the reference API documentation (#2397) Add FDS tutorial docs (#2375) Update tutorial-series-what-is-federated-learning.ipynb (#2396) Fix missing square in proximal term of FedProx baseline (#2210)
Issue
Description
The original FedProx paper describes the proximal term as$\frac{\mu}{2} || \omega - \omega_t ||^2$ , but the current implementation sets it as $\frac{\mu}{2} || \omega_ - \omega_{t} ||$ .
Related issues/PRs
N/A
Proposal
Explanation
Add
torch.square
to the proximal term.Checklist
#contributions
)Any other comments?
N/A