-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathattack_whitebox.py
432 lines (344 loc) · 15.4 KB
/
attack_whitebox.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
from __future__ import print_function
import argparse
import numpy as np
import os
import sys
from PIL import Image
from cvxpy import *
from fancyimpute import SoftImpute, BiScaler
import torch
import torch.nn as nn
import torch.utils.data as Data
import torch.nn.functional as F
import torchvision
import torchvision.transforms as transforms
import foolbox
parser = argparse.ArgumentParser()
# Directory
parser.add_argument('--data-dir', default='./data/', help='data path')
parser.add_argument('--ckpt-dir', default='./checkpoint/', help='checkpoint path')
parser.add_argument('--name', type=str, default='0', help='name of saved checkpoints')
# ME parameters
parser.add_argument('--me-channel', type=str, default='concat',
choices=['separate', 'concat'],
help='handle RGB channels separately as independent matrices, or jointly by concatenating')
parser.add_argument('--me-type', type=str, default='usvt',
choices=['usvt', 'softimp', 'nucnorm'],
help='method of matrix estimation')
# Hyper-parameters
parser.add_argument('--mu', type=float, default=1, help='Nuclear Norm hyper-param (default: 1)')
parser.add_argument('--svdprob', type=float, default=0.8, help='USVT hyper-param (default: 0.8)')
parser.add_argument('--maskp', type=float, default=0.5, help='probability of mask sampling (default: 0.5)')
# Attack parameters
parser.add_argument('--attack', type=bool, default=True,
help='whether use adversarial testing (default: True)')
parser.add_argument('--epsilon', type=float, default=8, help='The upper bound change of L-inf norm on input pixels')
parser.add_argument('--iter', type=int, default=1000, help='The number of iterations for iterative attacks')
parser.add_argument('--mode', type=str, default='pgd', choices=['toolbox', 'pgd'],
help='use toolbox or original pgd implementation (default: pgd)')
args = parser.parse_args()
config = {
'epsilon': args.epsilon / 255.,
'num_steps': args.iter,
'step_size': 2.0 / 255,
'random_start': True,
'loss_func': 'xent',
}
# Device configuration
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
# Normalization param
mean = np.array([0.4914, 0.4822, 0.4465]).reshape((3, 1, 1))
std = np.array([0.2023, 0.1994, 0.2010]).reshape((3, 1, 1))
def unpickle(file):
import pickle
with open(file, 'rb') as fo:
dict = pickle.load(fo, encoding='bytes')
return dict
def get_data():
batch = unpickle(args.data_dir + 'cifar-10-batches-py/test_batch')
data = batch[b'data']
labels = batch[b'labels']
return data, labels
def target_transform(label):
label = np.array(label)
target = torch.from_numpy(label).long()
return target
class CIFAR10_testset(Data.Dataset):
def __init__(self, target_transform=None):
self.target_transform = target_transform
self.test_data, self.test_labels = get_data()
self.test_data = self.test_data.reshape((10000, 3, 32, 32))
self.test_data = self.test_data.transpose((0, 2, 3, 1))
def __getitem__(self, index):
img, label = self.test_data[index], self.test_labels[index]
img = Image.fromarray(img)
img = transform_test(img)
if self.target_transform is not None:
target = self.target_transform(label)
return img, target
def __len__(self):
return len(self.test_data)
def nuclear_norm_solve(A, mask, mu):
"""Nuclear norm minimization solver.
:param A: matrix to complete
:param mask: matrix with entries zero (if missing) or one (if present)
:param mu: control trade-off between nuclear norm and square loss
:return: completed matrix
"""
X = Variable(shape=A.shape)
objective = Minimize(mu * norm(X, "nuc") + sum_squares(multiply(mask, X-A)))
problem = Problem(objective, [])
problem.solve(solver=SCS)
return X.value
class nucnorm(torch.autograd.Function):
"""ME-Net layer with nuclear norm algorithm.
The ME preprocessing is embedded into a Function subclass for adversarial training.
----------
Candès, J. and Recht, B. Exact matrix completion via convex optimization. 2009.
https://pytorch.org/docs/stable/notes/extending.html
"""
@staticmethod
def forward(ctx, input):
batch_num, c, h, w = input.size()
output = torch.zeros_like(input).cpu().numpy()
for i in range(batch_num):
img = (input[i] * 2 - 1).cpu().numpy()
if args.me_channel == 'concat':
img = np.concatenate((np.concatenate((img[0], img[1]), axis=1), img[2]), axis=1)
mask = np.random.binomial(1, args.maskp, h * w * c).reshape(h, w * c)
W = nuclear_norm_solve(img, mask, mu=args.mu)
W[W < -1] = -1
W[W > 1] = 1
est_matrix = (W + 1) / 2
for channel in range(c):
output[i, channel] = est_matrix[:, channel * h:(channel + 1) * h]
else:
mask = np.random.binomial(1, args.maskp, h * w).reshape(h, w)
for channel in range(c):
W = nuclear_norm_solve(img[channel], mask, mu=args.mu)
W[W < -1] = -1
W[W > 1] = 1
output[i, channel] = (W + 1) / 2
output = output - mean
output /= std
output = torch.from_numpy(output).float().to(device)
return output
@staticmethod
def backward(ctx, grad_output):
# BPDA, approximate gradients
return grad_output
class usvt(torch.autograd.Function):
"""ME-Net layer with universal singular value thresholding (USVT) approach.
The ME preprocessing is embedded into a Function subclass for adversarial training.
----------
Chatterjee, S. et al. Matrix estimation by universal singular value thresholding. 2015.
https://pytorch.org/docs/stable/notes/extending.html
"""
@staticmethod
def forward(ctx, input):
batch_num, c, h, w = input.size()
output = torch.zeros_like(input).cpu().numpy()
for i in range(batch_num):
img = (input[i] * 2 - 1).cpu().numpy()
if args.me_channel == 'concat':
img = np.concatenate((np.concatenate((img[0], img[1]), axis=1), img[2]), axis=1)
mask = np.random.binomial(1, args.maskp, h * w * c).reshape(h, w * c)
p_obs = len(mask[mask == 1]) / (h * w * c)
u, sigma, v = np.linalg.svd(img * mask)
S = np.zeros((h, w))
for j in range(int(args.svdprob * h)):
S[j][j] = sigma[j]
S = np.concatenate((S, np.zeros((h, w * 2))), axis=1)
W = np.dot(np.dot(u, S), v) / p_obs
W[W < -1] = -1
W[W > 1] = 1
est_matrix = (W + 1) / 2
for channel in range(c):
output[i, channel] = est_matrix[:, channel * h:(channel + 1) * h]
else:
mask = np.random.binomial(1, args.maskp, h * w).reshape(h, w)
p_obs = len(mask[mask == 1]) / (h * w)
for channel in range(c):
u, sigma, v = np.linalg.svd(img[channel] * mask)
S = np.zeros((h, w))
for j in range(int(args.svdprob * h)):
S[j][j] = sigma[j]
W = np.dot(np.dot(u, S), v) / p_obs
W[W < -1] = -1
W[W > 1] = 1
output[i, channel] = (W + 1) / 2
output = output - mean
output /= std
output = torch.from_numpy(output).float().to(device)
return output
@staticmethod
def backward(ctx, grad_output):
# BPDA, approximate gradients
return grad_output
class softimp(torch.autograd.Function):
"""ME-Net layer with Soft-Impute approach.
The ME preprocessing is embedded into a Function subclass for adversarial training.
----------
Mazumder, R. et al. Spectral regularization algorithms for learning large incomplete matrices. 2010.
https://pytorch.org/docs/stable/notes/extending.html
"""
@staticmethod
def forward(ctx, input):
batch_num, c, h, w = input.size()
output = torch.zeros_like(input).cpu().numpy()
for i in range(batch_num):
img = (input[i] * 2 - 1).cpu().numpy()
if args.me_channel == 'concat':
img = np.concatenate((np.concatenate((img[0], img[1]), axis=1), img[2]), axis=1)
mask = np.random.binomial(1, args.maskp, h * w * c).reshape(h, w * c).astype(float)
mask[mask < 1] = np.nan
W = SoftImpute(verbose=False).fit_transform(mask * img)
W[W < -1] = -1
W[W > 1] = 1
est_matrix = (W + 1) / 2
for channel in range(c):
output[i, channel] = est_matrix[:, channel * h:(channel + 1) * h]
else:
mask = np.random.binomial(1, args.maskp, h * w).reshape(h, w).astype(float)
mask[mask < 1] = np.nan
for channel in range(c):
mask_img = img[channel] * mask
W = SoftImpute(verbose=False).fit_transform(mask_img)
W[W < -1] = -1
W[W > 1] = 1
output[i, channel] = (W + 1) / 2
output = output - mean
output /= std
output = torch.from_numpy(output).float().to(device)
return output
@staticmethod
def backward(ctx, grad_output):
# BPDA, approximate gradients
return grad_output
class MENet(nn.Module):
"""ME-Net layer.
To attack a trained ME-Net model, first load the checkpoint, then wrap the loaded model with ME layer.
Example:
model = checkpoint['model']
menet_model = MENet(model)
----------
https://pytorch.org/docs/stable/notes/extending.html
"""
def __init__(self, model):
super(MENet, self).__init__()
self.model = model
def forward(self, input):
x = globals()[args.me_type].apply(input)
return self.model(x)
class AttackPGD(nn.Module):
"""White-box adversarial attacks with PGD.
Adversarial examples are constructed using PGD under the L_inf bound.
To attack a trained ME-Net model, first load the checkpoint, wrap with ME layer, then wrap with PGD layer.
Example:
model = checkpoint['model']
menet_model = MENet(model)
net = AttackPGD(menet_model, config)
----------
Madry, A. et al. Towards deep learning models resistant to adversarial attacks. 2018.
"""
def __init__(self, model, config):
super(AttackPGD, self).__init__()
self.model = model
self.rand = config['random_start']
self.step_size = config['step_size']
self.epsilon = config['epsilon']
self.num_steps = config['num_steps']
assert config['loss_func'] == 'xent', 'Use cross-entropy as loss function.'
def forward(self, inputs, targets):
if not args.attack:
return self.model(inputs), inputs
x = inputs.detach()
if self.rand:
x = x + torch.zeros_like(x).uniform_(-self.epsilon, self.epsilon)
for i in range(self.num_steps):
x.requires_grad_()
with torch.enable_grad():
logits = self.model(x)
loss = F.cross_entropy(logits, targets, size_average=False)
grad = torch.autograd.grad(loss, [x])[0]
# print(grad)
x = x.detach() + self.step_size * torch.sign(grad.detach())
x = torch.min(torch.max(x, inputs - self.epsilon), inputs + self.epsilon)
x = torch.clamp(x, 0, 1)
return self.model(x), x
def attack_foolbox():
fmodel = foolbox.models.PyTorchModel(menet_model, bounds=(0, 1), num_classes=10, preprocessing=(0, 1))
attack_criteria = foolbox.criteria.Misclassification()
attack = foolbox.attacks.ProjectedGradientDescentAttack(model=fmodel, criterion=attack_criteria)
correct = 0
for batch_idx, (inputs, targets) in enumerate(test_loader):
inputs, targets = inputs.cpu().numpy()[0], int(targets.cpu().numpy())
adversarial = attack(inputs.astype(np.float32), targets, epsilon=config['epsilon'],
stepsize=config['step_size'], iterations=config['num_steps'])
if adversarial is None:
adversarial = inputs.astype(np.float32)
if np.argmax(fmodel.predictions(adversarial)) == targets:
correct += 1.
sys.stdout.write("\rWhite-box BPDA attack (toolbox)... Acc: %.3f%% (%d/%d)" %
(100. * correct / (batch_idx + 1), correct, batch_idx + 1))
sys.stdout.flush()
return 100. * correct / batch_idx
def attack_bpda():
correct = 0
total = 0
with torch.no_grad():
for batch_idx, (inputs, targets) in enumerate(test_loader):
inputs, targets = inputs.to(device), targets.to(device)
with torch.no_grad():
outputs, pert_inputs = net(inputs, targets)
_, pred_idx = torch.max(outputs.data, 1)
total += targets.size(0)
correct += pred_idx.eq(targets.data).cpu().sum().float()
sys.stdout.write("\rWhite-box BPDA attack... Acc: %.3f%% (%d/%d)"
% (100. * correct / total, correct, total))
sys.stdout.flush()
return 100. * correct / total
def test_generalization():
correct = 0
total = 0
with torch.no_grad():
for batch_idx, (inputs, targets) in enumerate(test_loader):
inputs, targets = inputs.to(device), targets.to(device)
with torch.no_grad():
outputs = menet_model(inputs)
_, pred_idx = torch.max(outputs.data, 1)
total += targets.size(0)
correct += pred_idx.eq(targets.data).cpu().sum().float()
sys.stdout.write("\rGeneralization... Acc: %.3f%% (%d/%d)"
% (100. * correct / total, correct, total))
sys.stdout.flush()
return 100. * correct / total
if __name__ == '__main__':
print('=====> Preparing data...')
transform_test = transforms.Compose([
transforms.ToTensor(),
# transforms.Normalize((0.4914, 0.4822, 0.4465), (0.2023, 0.1994, 0.2010))
])
test_dataset = CIFAR10_testset(target_transform)
test_loader = torch.utils.data.DataLoader(dataset=test_dataset,
batch_size=1,
shuffle=False,
num_workers=4)
print('=====> Loading trained model from checkpoint...')
assert os.path.isdir('checkpoint'), 'Error: no checkpoint directory found!'
checkpoint = torch.load(args.ckpt_dir + args.name + '.ckpt')
model = checkpoint['model']
rng_state = checkpoint['rng_state']
torch.set_rng_state(rng_state)
model = model.to(device)
menet_model = MENet(model)
net = AttackPGD(menet_model, config)
menet_model.eval()
net.eval()
# Generalization
print('=====> Generalization of trained model... Acc: %.3f%%' % test_generalization())
# Adversarial robustness
if args.mode == 'pgd':
print('=====> White-box BPDA on trained model... Acc: %.3f%%' % attack_bpda())
else:
print('=====> White-box BPDA on trained model... Acc: %.3f%%' % attack_foolbox())