-
Classification of Image from ImageNet dataset using VGG-16 and Inception-V3.
-
Performing attack on the image (adding some perturbation to the original image so that the same model classify the image incorrectly)
Python, TensorFlow, Foolbox, Download ImageNet dataset. Use Google Colab for running the project if you don't have high computing power.
https://arxiv.org/pdf/1801.00553.pdf
Pre-trained model VGG16 and Inception-v3 for classification of an image from IMAGENET dataset.
-
LBFGS Attack:- This attack has been performed directly by importing LBFGS attack from foolbox library.
-
Iterative FGSM Attack:- This attack has been performed by computed gradient iteratively to compute adversarial input.
-
PGD(Projected Gradient Descent) Attack:- This attack has been performed by iterative computation of gradient descent in such a way that the difference between given input and adversarial input always remains within a valid range