gradientsign.py 1.8 KB
Newer Older
D
dzhwinter 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
#  Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserve.
#
#Licensed under the Apache License, Version 2.0 (the "License");
#you may not use this file except in compliance with the License.
#You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
#Unless required by applicable law or agreed to in writing, software
#distributed under the License is distributed on an "AS IS" BASIS,
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
G
gx_wind 已提交
14 15 16 17 18 19 20
"""
This module provide the attack method for FGSM's implement.
"""
from __future__ import division
import numpy as np
from collections import Iterable
from .base import Attack
G
gx_wind 已提交
21 22


G
gx_wind 已提交
23 24 25 26 27 28 29 30
class GradientSignAttack(Attack):
    """
    This attack was originally implemented by Goodfellow et al. (2015) with the
    infinity norm (and is known as the "Fast Gradient Sign Method"). This is therefore called
    the Fast Gradient Method.
    Paper link: https://arxiv.org/abs/1412.6572
    """

G
gx_wind 已提交
31 32 33
    def _apply(self, image_label, epsilons=1000):
        assert len(image_label) == 1
        pre_label = np.argmax(self.model.predict(image_label))
G
gx_wind 已提交
34 35

        min_, max_ = self.model.bounds()
G
gx_wind 已提交
36
        gradient = self.model.gradient(image_label)
G
gx_wind 已提交
37 38 39
        gradient_sign = np.sign(gradient) * (max_ - min_)

        if not isinstance(epsilons, Iterable):
G
gx_wind 已提交
40
            epsilons = np.linspace(0, 1, num=epsilons + 1)
G
gx_wind 已提交
41 42

        for epsilon in epsilons:
G
gx_wind 已提交
43
            adv_img = image_label[0][0].reshape(
G
gx_wind 已提交
44
                gradient_sign.shape) + epsilon * gradient_sign
G
gx_wind 已提交
45 46 47 48 49
            adv_img = np.clip(adv_img, min_, max_)
            adv_label = np.argmax(self.model.predict([(adv_img, 0)]))
            if pre_label != adv_label:
                return adv_img

G
gx_wind 已提交
50

G
gx_wind 已提交
51
FGSM = GradientSignAttack