mnswdhw / InvGAN-Pytorch

This repository implements the Invgan defense architecture in Pytorch. InvGAN acts as an initialisation for DefenseGAN and can help in State of the Art robustness of target models against adversarial attacks.
1 stars 0 forks source link
adversarial-defense deep-learning gan pytorch

InvGAN-Pytorch

This repository implements the Invgan defense architecture in Pytorch. InvGAN acts as an initialisation for DefenseGAN and can help in State of the Art robustness of target models against adversarial attacks.

For the trained generator and discriminator that we may need in the defense architectures of DefenseGAN and InvGAN, we use the checkpoints given in the official implementation of InvGAN. https://github.com/yogeshbalaji/InvGAN

This contains tensorflow 1 weights, I have implemented the models in pytorch and have also implemented the conversion scripts that can be used to load and save the tensorflow 1 model's weights to Pytorch model's weights. The models have been tried and tested and work as an exact equivalent of the tensorflow 1 models.

The GAN equivalent architectures of the tensorflow 1 are in pyt_models.py.
models.py implements the target model's architectures following the Defense-GAN paper's code snippets. model-a to model-f.

The defense architectures are in the files defense_gan.py and invgan.py. At test time they take the trained generator and discriminator and employ the defense architectures to clean the adversarial images, these cleaned images are then fed to the classifier for evaluation.

InvGAN

Alt Text

defenseGAN

Alt Text