This commit is contained in:
Nataniel Ruiz
2019-12-24 19:16:10 -04:00
parent a0252d594c
commit f140718874
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ class LinfPGDAttack(object):
y = torch.FloatTensor(y).to(self.device)
self.model.zero_grad()
loss = self.loss_fn(output, y)
loss = -self.loss_fn(output, y)
loss.backward()
grad = X.grad
+1 -1
View File
@@ -613,7 +613,7 @@ class Solver(object):
with torch.no_grad():
gen_noattack, gen_noattack_feats = self.G(x_real, c_trg)
# Attack
x_adv, perturb = pgd_attack.perturb(x_real, gen_noattack, c_trg)
x_adv, perturb = pgd_attack.perturb(x_real, black, c_trg)
# x_adv = x_real + perturb
# x_adv = self.blur_tensor(x_adv)