Skip to content
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

DP-InstaHide Trainer Implementation #1956

Merged
merged 13 commits into from
Dec 15, 2022

Conversation

f4str
Copy link
Collaborator

@f4str f4str commented Dec 8, 2022

Description

Implementation of the DP-InstaHide trainer. This trainer builds upon the previously implemented data augmentation defenses. Also includes a jupyter notebook demo showing how to use the trainer and its effectiveness on MNIST (a reference was added to the notebook README).

As a consequence, the following two bugs/issues were resolved

Fixes #1827
Fixes #1959
Fixes #1966

Type of change

Please check all relevant options.

  • Improvement (non-breaking)
  • Bug fix (non-breaking)
  • New feature (non-breaking)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

Testing

Please describe the tests that you ran to verify your changes. Consider listing any relevant details of your test configuration.

  • Test the DP-InstaHide trainer in PyTorch
  • Test the DP-InstaHide trainer in TensorFlow
  • Test the DP-InstaHide trainer in Keras

Test Configuration:

  • OS
  • Python version
  • ART version or commit number
  • TensorFlow / Keras / PyTorch / MXNet version

Checklist

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes

Sorry, something went wrong.

Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
@f4str f4str changed the base branch from main to dev_1.13.0 December 8, 2022 01:03
@f4str f4str changed the title Dp instahide DP-InstaHide Trainer Implementation Dec 8, 2022
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
@codecov-commenter
Copy link

codecov-commenter commented Dec 8, 2022

Codecov Report

Merging #1956 (17bd890) into dev_1.13.0 (8de2403) will increase coverage by 0.51%.
The diff coverage is 87.90%.

Impacted file tree graph

@@              Coverage Diff               @@
##           dev_1.13.0    #1956      +/-   ##
==============================================
+ Coverage       84.96%   85.47%   +0.51%     
==============================================
  Files             285      286       +1     
  Lines           24912    25030     +118     
  Branches         4477     4495      +18     
==============================================
+ Hits            21166    21394     +228     
+ Misses           2612     2486     -126     
- Partials         1134     1150      +16     
Impacted Files Coverage Δ
art/estimators/classification/pytorch.py 85.87% <68.75%> (-0.51%) ⬇️
art/defences/trainer/dp_instahide_trainer.py 90.19% <90.19%> (ø)
art/defences/trainer/__init__.py 100.00% <100.00%> (ø)
art/estimators/classification/keras.py 86.49% <100.00%> (+0.68%) ⬆️
art/estimators/classification/tensorflow.py 84.37% <100.00%> (+0.03%) ⬆️
art/defences/preprocessor/mixup/mixup.py 95.00% <0.00%> (+5.00%) ⬆️
...estimators/object_detection/pytorch_faster_rcnn.py 100.00% <0.00%> (+22.22%) ⬆️
...mators/object_detection/pytorch_object_detector.py 77.47% <0.00%> (+64.83%) ⬆️

@beat-buesser beat-buesser self-requested a review December 8, 2022 12:53
@beat-buesser beat-buesser self-assigned this Dec 8, 2022
@beat-buesser beat-buesser added the enhancement New feature or request label Dec 8, 2022
@beat-buesser beat-buesser added this to the ART 1.13.0 milestone Dec 8, 2022
f4str added 2 commits December 8, 2022 15:56
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
@f4str f4str marked this pull request as ready for review December 9, 2022 00:06
@f4str
Copy link
Collaborator Author

f4str commented Dec 9, 2022

The implementation and unit tests are complete and ready for review, but will also be adding a notebook demo.

f4str added 3 commits December 8, 2022 16:42
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
@beat-buesser
Copy link
Collaborator

A review comment, please also add the new notebook to the notebook README file.

x_aug = self._generate_noise(x_aug)

# extract label reduction and set to no reduction if needed
reduce_labels = self._classifier._reduce_labels # type: ignore # pylint: disable=W0212
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is there a type ignore?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not all classifiers of type CLASSIFIER_LOSS_GRADIENTS_TYPE have the _reduce_labels property which causes a mypy error. This line is needed due to the PyTorchClassifier always reducing labels for nn.CrossEntropyLoss.

Copy link
Collaborator

@beat-buesser beat-buesser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ho @f4str Thank you very much for contributing DP-InstaHide to ART!

@f4str
Copy link
Collaborator Author

f4str commented Dec 13, 2022

This PR will be completed (with the requested changes) after PR #1960 and PR #1967 are merged

Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
@f4str f4str requested a review from beat-buesser December 13, 2022 22:25
beat-buesser and others added 3 commits December 14, 2022 11:37

Verified

This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
Signed-off-by: Farhan Ahmed <Farhan.Ahmed@ibm.com>
Copy link
Collaborator

@beat-buesser beat-buesser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @f4str Thank you very much for contributing DP-InstaHide to ART! The review changes look good to me.

@beat-buesser beat-buesser merged commit 1b302df into Trusted-AI:dev_1.13.0 Dec 15, 2022
@f4str f4str deleted the dp-instahide branch December 15, 2022 22:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
3 participants