-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathSign_OPT.py
More file actions
377 lines (323 loc) · 14.3 KB
/
Sign_OPT.py
File metadata and controls
377 lines (323 loc) · 14.3 KB
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
import time
import numpy as np
from numpy import linalg as LA
import torch
import scipy.spatial
from scipy.linalg import qr
#from qpsolvers import solve_qp
import random
start_learning_rate = 1.0
MAX_ITER = 1000
def quad_solver(Q, b):
"""
Solve min_a 0.5*aQa + b^T a s.t. a>=0
"""
K = Q.shape[0]
alpha = np.zeros((K,))
g = b
Qdiag = np.diag(Q)
for i in range(20000):
delta = np.maximum(alpha - g/Qdiag,0) - alpha
idx = np.argmax(abs(delta))
val = delta[idx]
if abs(val) < 1e-7:
break
g = g + val*Q[:,idx]
alpha[idx] += val
return alpha
def sign(y):
"""
y -- numpy array of shape (m,)
Returns an element-wise indication of the sign of a number.
The sign function returns -1 if y < 0, 1 if x >= 0. nan is returned for nan inputs.
"""
y_sign = np.sign(y)
y_sign[y_sign==0] = 1
return y_sign
class OPT_attack_sign_SGD(object):
def __init__(self, model, k=200, train_dataset=None):
self.model = model
self.k = k
self.train_dataset = train_dataset
self.log = torch.ones(MAX_ITER,2)
def get_log(self):
return self.log
def attack_untargeted(self, x0, y0, alpha = 0.2, beta = 0.001, iterations = 1000, query_limit=20000,
distortion=None, svm=False, momentum=0.0, stopping=0.0001):
""" Attack the original image and return adversarial example
model: (pytorch model)
train_dataset: set of training data
(x0, y0): original image
"""
model = self.model
y0 = y0[0]
query_count = 0
ls_total = 0
if (model.predict_label(x0) != y0):
print("Fail to classify the image. No need to attack.")
return x0, 0, True, 0, None
#### init: Calculate a good starting point (direction)
num_directions = 100
best_theta, g_theta = None, float('inf')
print("Searching for the initial direction on %d random directions: " % (num_directions))
timestart = time.time()
for i in range(num_directions):
query_count += 1
theta = np.random.randn(*x0.shape) # gaussian distortion
# register adv directions
if model.predict_label(x0+torch.tensor(theta, dtype=torch.float).cuda()) != y0:
initial_lbd = LA.norm(theta)
theta /= initial_lbd # l2 normalize
lbd, count = self.fine_grained_binary_search(model, x0, y0, theta, initial_lbd, g_theta)
query_count += count
if lbd < g_theta:
best_theta, g_theta = theta, lbd
print("--------> Found distortion %.4f" % g_theta)
timeend = time.time()
## fail if cannot find a adv direction within 200 Gaussian
if g_theta == float('inf'):
print("Couldn't find valid initial, failed")
return x0, 0, False, query_count, best_theta
print("==========> Found best distortion %.4f in %.4f seconds "
"using %d queries" % (g_theta, timeend-timestart, query_count))
self.log[0][0], self.log[0][1] = g_theta, query_count
#### Begin Gradient Descent.
timestart = time.time()
xg, gg = best_theta, g_theta
vg = np.zeros_like(xg)
learning_rate = start_learning_rate
prev_obj = 100000
distortions = [gg]
for i in range(iterations):
## gradient estimation at x0 + theta (init)
if svm == True:
sign_gradient, grad_queries = self.sign_grad_svm(x0, y0, xg, initial_lbd=gg, h=beta)
else:
sign_gradient, grad_queries = self.sign_grad_v1(x0, y0, xg, initial_lbd=gg, h=beta)
## Line search of the step size of gradient descent
ls_count = 0
min_theta = xg ## next theta
min_g2 = gg ## current g_theta
min_vg = vg ## velocity (for momentum only)
for _ in range(15):
# update theta by one step sgd
if momentum > 0:
new_vg = momentum*vg - alpha*sign_gradient
new_theta = xg + new_vg
else:
new_theta = xg - alpha * sign_gradient
new_theta /= LA.norm(new_theta)
new_g2, count = self.fine_grained_binary_search_local(
model, x0, y0, new_theta, initial_lbd = min_g2, tol=beta/500)
ls_count += count
alpha = alpha * 2 # gradually increasing step size
if new_g2 < min_g2:
min_theta = new_theta
min_g2 = new_g2
if momentum > 0:
min_vg = new_vg
else:
break
if min_g2 >= gg: ## if the above code failed for the init alpha, we then try to decrease alpha
for _ in range(15):
alpha = alpha * 0.25
if momentum > 0:
new_vg = momentum*vg - alpha*sign_gradient
new_theta = xg + new_vg
else:
new_theta = xg - alpha * sign_gradient
new_theta /= LA.norm(new_theta)
new_g2, count = self.fine_grained_binary_search_local(
model, x0, y0, new_theta, initial_lbd = min_g2, tol=beta/500)
ls_count += count
if new_g2 < gg:
min_theta = new_theta
min_g2 = new_g2
if momentum > 0:
min_vg = new_vg
break
if alpha < 1e-4: ## if the above two blocks of code failed
alpha = 1.0
print("Warning: not moving")
beta = beta*0.1
if (beta < 1e-8):
break
## if all attemps failed, min_theta, min_g2 will be the current theta (i.e. not moving)
xg, gg = min_theta, min_g2
vg = min_vg
query_count += (grad_queries + ls_count)
ls_total += ls_count
distortions.append(gg)
if query_count > query_limit:
break
## logging
if (i + 1) % 10 == 0:
print("Iteration %3d distortion %.4f num_queries %d" % (i+1, gg, query_count))
self.log[i+1][0], self.log[i+1][1] = gg, query_count
#if distortion is not None and gg < distortion:
# print("Success: required distortion reached")
# break
if distortion is None or gg < distortion:
target = model.predict_label(x0 + torch.tensor(gg*xg, dtype=torch.float).cuda())
print("Succeed distortion {:.4f} target"
" {:d} queries {:d} LS queries {:d}\n".format(gg, target, query_count, ls_total))
return x0 + torch.tensor(gg*xg, dtype=torch.float).cuda(), gg, True, query_count, xg
timeend = time.time()
print("\nFailed: distortion %.4f" % (gg))
self.log[i+1:,0] = gg
self.log[i+1:,1] = query_count
return x0 + torch.tensor(gg*xg, dtype=torch.float).cuda(), gg, False, query_count, xg
def sign_grad_v1(self, x0, y0, theta, initial_lbd, h=0.001, D=4, target=None):
"""
Evaluate the sign of gradient by formulat
sign(g) = 1/Q [ \sum_{q=1}^Q sign( g(theta+h*u_i) - g(theta) )u_i$ ]
"""
K = self.k # 200 random directions (for estimating the gradient)
sign_grad = np.zeros(theta.shape)
queries = 0
### USe orthogonal transform
#dim = np.prod(sign_grad.shape)
#H = np.random.randn(dim, K)
#Q, R = qr(H, mode='economic')
for iii in range(K): # for each u
# # Code for reduced dimension gradient
# u = np.random.randn(N_d,N_d)
# u = u.repeat(D, axis=0).repeat(D, axis=1)
# u /= LA.norm(u)
# u = u.reshape([1,1,N,N])
u = np.random.randn(*theta.shape); u /= LA.norm(u)
new_theta = theta + h*u; new_theta /= LA.norm(new_theta)
sign = 1
# Targeted case.
if (target is not None and
self.model.predict_label(x0+torch.tensor(initial_lbd*new_theta, dtype=torch.float).cuda()) == target):
sign = -1
# Untargeted case
# preds.append(self.model.predict_label(x0+torch.tensor(initial_lbd*new_theta, dtype=torch.float).cuda()).item())
if (target is None and
self.model.predict_label(x0+torch.tensor(initial_lbd*new_theta, dtype=torch.float).cuda()) != y0): # success
sign = -1
queries += 1
sign_grad += u*sign
sign_grad /= K
# sign_grad_u = sign_grad/LA.norm(sign_grad)
# new_theta = theta + h*sign_grad_u
# new_theta /= LA.norm(new_theta)
# fxph, q1 = self.fine_grained_binary_search_local(self.model, x0, y0, new_theta, initial_lbd=initial_lbd, tol=h/500)
# delta = (fxph - initial_lbd)/h
# queries += q1
# sign_grad *= 0.5*delta
return sign_grad, queries
##########################################################################################
def sign_grad_v2(self, x0, y0, theta, initial_lbd, h=0.001, K=200):
"""
Evaluate the sign of gradient by formulat
sign(g) = 1/Q [ \sum_{q=1}^Q sign( g(theta+h*u_i) - g(theta) )u_i$ ]
"""
sign_grad = np.zeros(theta.shape)
queries = 0
for _ in range(K):
u = np.random.randn(*theta.shape)
u /= LA.norm(u)
ss = -1
new_theta = theta + h*u
new_theta /= LA.norm(new_theta)
if self.model.predict_label(x0+torch.tensor(initial_lbd*new_theta, dtype=torch.float).cuda()) == y0:
ss = 1
queries += 1
sign_grad += sign(u)*ss
sign_grad /= K
return sign_grad, queries
def sign_grad_svm(self, x0, y0, theta, initial_lbd, h=0.001, K=100, lr=5.0, target=None):
"""
Evaluate the sign of gradient by formulat
sign(g) = 1/Q [ \sum_{q=1}^Q sign( g(theta+h*u_i) - g(theta) )u_i$ ]
"""
sign_grad = np.zeros(theta.shape)
queries = 0
dim = np.prod(theta.shape)
X = np.zeros((dim, K))
for iii in range(K):
u = np.random.randn(*theta.shape)
u /= LA.norm(u)
sign = 1
new_theta = theta + h*u
new_theta /= LA.norm(new_theta)
# Targeted case.
if (target is not None and
self.model.predict_label(x0+torch.tensor(initial_lbd*new_theta, dtype=torch.float).cuda()) == target):
sign = -1
# Untargeted case
if (target is None and
self.model.predict_label(x0+torch.tensor(initial_lbd*new_theta, dtype=torch.float).cuda()) != y0):
sign = -1
queries += 1
X[:,iii] = sign*u.reshape((dim,))
Q = X.transpose().dot(X)
q = -1*np.ones((K,))
G = np.diag(-1*np.ones((K,)))
h = np.zeros((K,))
### Use quad_qp solver
#alpha = solve_qp(Q, q, G, h)
### Use coordinate descent solver written by myself, avoid non-positive definite cases
alpha = quad_solver(Q, q)
sign_grad = (X.dot(alpha)).reshape(theta.shape)
return sign_grad, queries
def fine_grained_binary_search_local(self, model, x0, y0, theta, initial_lbd = 1.0, tol=1e-5):
nquery = 0
lbd = initial_lbd
# still inside boundary
if model.predict_label(x0+torch.tensor(lbd*theta, dtype=torch.float).cuda()) == y0:
lbd_lo = lbd
lbd_hi = lbd*1.01
nquery += 1
while model.predict_label(x0+torch.tensor(lbd_hi*theta, dtype=torch.float).cuda()) == y0:
lbd_hi = lbd_hi*1.01
nquery += 1
if lbd_hi > 20:
return float('inf'), nquery
else:
lbd_hi = lbd
lbd_lo = lbd*0.99
nquery += 1
while model.predict_label(x0+torch.tensor(lbd_lo*theta, dtype=torch.float).cuda()) != y0 :
lbd_lo = lbd_lo*0.99
nquery += 1
while (lbd_hi - lbd_lo) > tol:
lbd_mid = (lbd_lo + lbd_hi)/2.0
nquery += 1
if model.predict_label(x0 + torch.tensor(lbd_mid*theta, dtype=torch.float).cuda()) != y0:
lbd_hi = lbd_mid
else:
lbd_lo = lbd_mid
return lbd_hi, nquery
def fine_grained_binary_search(self, model, x0, y0, theta, initial_lbd, current_best):
nquery = 0
if initial_lbd > current_best:
if model.predict_label(x0+torch.tensor(current_best*theta, dtype=torch.float).cuda()) == y0:
nquery += 1
return float('inf'), nquery
lbd = current_best
else:
lbd = initial_lbd
lbd_hi = lbd
lbd_lo = 0.0
while (lbd_hi - lbd_lo) > 1e-3: # was 1e-5
lbd_mid = (lbd_lo + lbd_hi)/2.0
nquery += 1
if model.predict_label(x0 + torch.tensor(lbd_mid*theta, dtype=torch.float).cuda()) != y0:
lbd_hi = lbd_mid
else:
lbd_lo = lbd_mid
return lbd_hi, nquery
def __call__(self, input_xi, label_or_target, targeted=False, distortion=None, seed=None,
svm=False, query_limit=4000, momentum=0.0, stopping=0.0001, args=None): # this line: dummy args to match signopt-lf
if targeted:
raise NotImplementedError
# adv = self.attack_targeted(input_xi, label_or_target, target, distortion=distortion,
# seed=seed, svm=svm, query_limit=query_limit, stopping=stopping)
else:
adv = self.attack_untargeted(input_xi, label_or_target, distortion=distortion,
svm=svm, query_limit=query_limit, momentum=momentum,
stopping=stopping)
return adv