-
Notifications
You must be signed in to change notification settings - Fork 34
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
Feature/SK-811 | Example using Differential Privacy #698
Conversation
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.
Looks good!
See a few minor comments.
@@ -0,0 +1,56 @@ | |||
FEDn Project: Federated Differential Privacy MNIST (Opacus + PyTorch) | |||
----------------------------- |
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.
I think the dotted line has to span all the text to work.
|
||
MAX_GRAD_NORM = 1.2 | ||
FINAL_EPSILON = 8.0 | ||
ROUNDS = 4 |
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.
These are global rounds, right? Maybe rename to GLOBAL_ROUNDS for clarity?
Description