next
This commit is contained in:
+1
-1
@@ -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
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user