-
Notifications
You must be signed in to change notification settings - Fork 4
/
train.py
505 lines (427 loc) · 18.8 KB
/
train.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
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
import os
import config
import torch
import torch.nn as nn
import torch.nn.functional as F
import torchvision
from classifier_models import PreActResNet18, ResNet18, PreActResNet34
from dataloader import get_dataloader
from networks.models import Generator, NetC_MNIST
from torch.utils.tensorboard import SummaryWriter
from utils import progress_bar
os.environ["CUDA_VISIBLE_DEVICES"] = "1"
def create_targets_bd(targets, opt):
if opt.attack_mode == "all2one":
bd_targets = torch.ones_like(targets) * opt.target_label
elif opt.attack_mode == "all2all":
bd_targets = torch.tensor([(label + 1) % opt.num_classes for label in targets])
else:
raise Exception("{} attack mode is not implemented".format(opt.attack_mode))
return bd_targets.to(opt.device)
def create_bd(inputs, targets, netG, netM, opt):
bd_targets = create_targets_bd(targets, opt)
patterns = netG(inputs)
patterns = netG.normalize_pattern(patterns)
masks_output = netM.threshold(netM(inputs))
bd_inputs = inputs + (patterns - inputs) * masks_output
return bd_inputs, bd_targets, patterns, masks_output
def create_cross(inputs1, inputs2, netG, netM, opt):
patterns2 = netG(inputs2)
patterns2 = netG.normalize_pattern(patterns2)
masks_output = netM.threshold(netM(inputs2))
inputs_cross = inputs1 + (patterns2 - inputs1) * masks_output
return inputs_cross, patterns2, masks_output
def train_step(
netC, netG, netM, optimizerC, optimizerG, schedulerC, schedulerG, train_dl1, train_dl2, epoch, opt, tf_writer
):
netC.train()
netG.train()
print(" Training:")
total = 0
total_cross = 0
total_bd = 0
total_clean = 0
total_correct_clean = 0
total_cross_correct = 0
total_bd_correct = 0
total_loss = 0
criterion = nn.CrossEntropyLoss()
criterion_div = nn.MSELoss(reduction="none")
for batch_idx, (inputs1, targets1), (inputs2, targets2) in zip(range(len(train_dl1)), train_dl1, train_dl2):
optimizerC.zero_grad()
inputs1, targets1 = inputs1.to(opt.device), targets1.to(opt.device)
inputs2, targets2 = inputs2.to(opt.device), targets2.to(opt.device)
bs = inputs1.shape[0]
num_bd = int(opt.p_attack * bs)
num_cross = int(opt.p_cross * bs)
inputs_bd, targets_bd, patterns1, masks1 = create_bd(inputs1[:num_bd], targets1[:num_bd], netG, netM, opt)
inputs_cross, patterns2, masks2 = create_cross(
inputs1[num_bd : num_bd + num_cross], inputs2[num_bd : num_bd + num_cross], netG, netM, opt
)
total_inputs = torch.cat((inputs_bd, inputs_cross, inputs1[num_bd + num_cross :]), 0)
total_targets = torch.cat((targets_bd, targets1[num_bd:]), 0)
preds = netC(total_inputs)
loss_ce = criterion(preds, total_targets)
# Calculating diversity loss
distance_images = criterion_div(inputs1[:num_bd], inputs2[num_bd : num_bd + num_bd])
distance_images = torch.mean(distance_images, dim=(1, 2, 3))
distance_images = torch.sqrt(distance_images)
distance_patterns = criterion_div(patterns1, patterns2)
distance_patterns = torch.mean(distance_patterns, dim=(1, 2, 3))
distance_patterns = torch.sqrt(distance_patterns)
loss_div = distance_images / (distance_patterns + opt.EPSILON)
loss_div = torch.mean(loss_div) * opt.lambda_div
total_loss = loss_ce + loss_div
total_loss.backward()
optimizerC.step()
optimizerG.step()
total += bs
total_bd += num_bd
total_cross += num_cross
total_clean += bs - num_bd - num_cross
total_correct_clean += torch.sum(
torch.argmax(preds[num_bd + num_cross :], dim=1) == total_targets[num_bd + num_cross :]
)
total_cross_correct += torch.sum(
torch.argmax(preds[num_bd : num_bd + num_cross], dim=1) == total_targets[num_bd : num_bd + num_cross]
)
total_bd_correct += torch.sum(torch.argmax(preds[:num_bd], dim=1) == targets_bd)
total_loss += loss_ce.detach() * bs
avg_loss = total_loss / total
acc_clean = total_correct_clean * 100.0 / total_clean
acc_bd = total_bd_correct * 100.0 / total_bd
acc_cross = total_cross_correct * 100.0 / total_cross
infor_string = "CE loss: {:.4f} - Accuracy: {:.3f} | BD Accuracy: {:.3f} | Cross Accuracy: {:3f}".format(
avg_loss, acc_clean, acc_bd, acc_cross
)
progress_bar(batch_idx, len(train_dl1), infor_string)
# Saving images for debugging
if batch_idx == len(train_dl1) - 2:
dir_temps = os.path.join(opt.temps, opt.dataset)
if not os.path.exists(dir_temps):
os.makedirs(dir_temps)
images = netG.denormalize_pattern(torch.cat((inputs1[:num_bd], patterns1, inputs_bd), dim=2))
file_name = "{}_{}_images.png".format(opt.dataset, opt.attack_mode)
file_path = os.path.join(dir_temps, file_name)
torchvision.utils.save_image(images, file_path, normalize=True, pad_value=1)
if not epoch % 10:
# Save figures (tfboard)
tf_writer.add_scalars(
"Accuracy/lambda_div_{}/".format(opt.lambda_div),
{"Clean": acc_clean, "BD": acc_bd, "Cross": acc_cross},
epoch,
)
tf_writer.add_scalars("Loss/lambda_div_{}".format(opt.lambda_div), {"CE": loss_ce, "Div": loss_div}, epoch)
schedulerC.step()
schedulerG.step()
def eval(
netC,
netG,
netM,
optimizerC,
optimizerG,
schedulerC,
schedulerG,
test_dl1,
test_dl2,
epoch,
best_acc_clean,
best_acc_bd,
best_acc_cross,
opt,
):
netC.eval()
netG.eval()
print(" Eval:")
total = 0.0
total_correct_clean = 0.0
total_correct_bd = 0.0
total_correct_cross = 0.0
for batch_idx, (inputs1, targets1), (inputs2, targets2) in zip(range(len(test_dl1)), test_dl1, test_dl2):
with torch.no_grad():
inputs1, targets1 = inputs1.to(opt.device), targets1.to(opt.device)
inputs2, targets2 = inputs2.to(opt.device), targets2.to(opt.device)
bs = inputs1.shape[0]
preds_clean = netC(inputs1)
correct_clean = torch.sum(torch.argmax(preds_clean, 1) == targets1)
total_correct_clean += correct_clean
inputs_bd, targets_bd, _, _ = create_bd(inputs1, targets1, netG, netM, opt)
preds_bd = netC(inputs_bd)
correct_bd = torch.sum(torch.argmax(preds_bd, 1) == targets_bd)
total_correct_bd += correct_bd
inputs_cross, _, _ = create_cross(inputs1, inputs2, netG, netM, opt)
preds_cross = netC(inputs_cross)
correct_cross = torch.sum(torch.argmax(preds_cross, 1) == targets1)
total_correct_cross += correct_cross
total += bs
avg_acc_clean = total_correct_clean * 100.0 / total
avg_acc_cross = total_correct_cross * 100.0 / total
avg_acc_bd = total_correct_bd * 100.0 / total
infor_string = "Clean Accuracy: {:.3f} | Backdoor Accuracy: {:.3f} | Cross Accuracy: {:3f}".format(
avg_acc_clean, avg_acc_bd, avg_acc_cross
)
progress_bar(batch_idx, len(test_dl1), infor_string)
print(
" Result: Best Clean Accuracy: {:.3f} - Best Backdoor Accuracy: {:.3f} - Best Cross Accuracy: {:.3f}| Clean Accuracy: {:.3f}".format(
best_acc_clean, best_acc_bd, best_acc_cross, avg_acc_clean
)
)
if avg_acc_clean + avg_acc_bd > best_acc_clean + best_acc_bd:
print(" Saving!!")
best_acc_clean = avg_acc_clean
best_acc_bd = avg_acc_bd
best_acc_cross = avg_acc_cross
state_dict = {
"netC": netC.state_dict(),
"netG": netG.state_dict(),
"netM": netM.state_dict(),
"optimizerC": optimizerC.state_dict(),
"optimizerG": optimizerG.state_dict(),
"schedulerC": schedulerC.state_dict(),
"schedulerG": schedulerG.state_dict(),
"best_acc_clean": best_acc_clean,
"best_acc_bd": best_acc_bd,
"best_acc_cross": best_acc_cross,
"epoch": epoch,
"opt": opt,
}
ckpt_folder = os.path.join(opt.checkpoints, opt.dataset, opt.attack_mode, 'target_'+str(opt.target_label))
if not os.path.exists(ckpt_folder):
os.makedirs(ckpt_folder)
ckpt_path = os.path.join(ckpt_folder, "{}_{}_ckpt.pth.tar".format(opt.attack_mode, opt.dataset))
torch.save(state_dict, ckpt_path)
return best_acc_clean, best_acc_bd, best_acc_cross, epoch
# -------------------------------------------------------------------------------------
def train_mask_step(netM, optimizerM, schedulerM, train_dl1, train_dl2, epoch, opt, tf_writer):
netM.train()
print(" Training:")
total = 0
total_loss = 0
criterion_div = nn.MSELoss(reduction="none")
for batch_idx, (inputs1, targets1), (inputs2, targets2) in zip(range(len(train_dl1)), train_dl1, train_dl2):
optimizerM.zero_grad()
inputs1, targets1 = inputs1.to(opt.device), targets1.to(opt.device)
inputs2, targets2 = inputs2.to(opt.device), targets2.to(opt.device)
bs = inputs1.shape[0]
masks1 = netM(inputs1)
masks1, masks2 = netM.threshold(netM(inputs1)), netM.threshold(netM(inputs2))
# Calculating diversity loss
distance_images = criterion_div(inputs1, inputs2)
distance_images = torch.mean(distance_images, dim=(1, 2, 3))
distance_images = torch.sqrt(distance_images)
distance_patterns = criterion_div(masks1, masks2)
distance_patterns = torch.mean(distance_patterns, dim=(1, 2, 3))
distance_patterns = torch.sqrt(distance_patterns)
loss_div = distance_images / (distance_patterns + opt.EPSILON)
loss_div = torch.mean(loss_div) * opt.lambda_div
loss_norm = torch.mean(F.relu(masks1 - opt.mask_density))
total_loss = opt.lambda_norm * loss_norm + opt.lambda_div * loss_div
total_loss.backward()
optimizerM.step()
infor_string = "Mask loss: {:.4f} - Norm: {:.3f} | Diversity: {:.3f}".format(total_loss, loss_norm, loss_div)
progress_bar(batch_idx, len(train_dl1), infor_string)
# Saving images for debugging
if batch_idx == len(train_dl1) - 2:
dir_temps = os.path.join(opt.temps, opt.dataset, "masks")
if not os.path.exists(dir_temps):
os.makedirs(dir_temps)
path_masks = os.path.join(dir_temps, "{}_{}_masks.png".format(opt.dataset, opt.attack_mode))
torchvision.utils.save_image(masks1, path_masks, pad_value=1)
if not epoch % 10:
tf_writer.add_scalars(
"Loss/lambda_norm_{}".format(opt.lambda_norm), {"MaskNorm": loss_norm, "MaskDiv": loss_div}, epoch
)
schedulerM.step()
def eval_mask(netM, optimizerM, schedulerM, test_dl1, test_dl2, epoch, opt):
netM.eval()
print(" Eval:")
total = 0.0
criterion_div = nn.MSELoss(reduction="none")
for batch_idx, (inputs1, targets1), (inputs2, targets2) in zip(range(len(test_dl1)), test_dl1, test_dl2):
with torch.no_grad():
inputs1, targets1 = inputs1.to(opt.device), targets1.to(opt.device)
inputs2, targets2 = inputs2.to(opt.device), targets2.to(opt.device)
bs = inputs1.shape[0]
masks1, masks2 = netM.threshold(netM(inputs1)), netM.threshold(netM(inputs2))
# Calculating diversity loss
distance_images = criterion_div(inputs1, inputs2)
distance_images = torch.mean(distance_images, dim=(1, 2, 3))
distance_images = torch.sqrt(distance_images)
distance_patterns = criterion_div(masks1, masks2)
distance_patterns = torch.mean(distance_patterns, dim=(1, 2, 3))
distance_patterns = torch.sqrt(distance_patterns)
loss_div = distance_images / (distance_patterns + opt.EPSILON)
loss_div = torch.mean(loss_div) * opt.lambda_div
loss_norm = torch.mean(F.relu(masks1 - opt.mask_density))
infor_string = "Norm: {:.3f} | Diversity: {:.3f}".format(loss_norm, loss_div)
progress_bar(batch_idx, len(test_dl1), infor_string)
state_dict = {
"netM": netM.state_dict(),
"optimizerM": optimizerM.state_dict(),
"schedulerM": schedulerM.state_dict(),
"epoch": epoch,
"opt": opt,
}
ckpt_folder = os.path.join(opt.checkpoints, opt.dataset, opt.attack_mode, 'target_'+str(opt.target_label), "mask")
if not os.path.exists(ckpt_folder):
os.makedirs(ckpt_folder)
ckpt_path = os.path.join(ckpt_folder, "{}_{}_ckpt.pth.tar".format(opt.attack_mode, opt.dataset))
torch.save(state_dict, ckpt_path)
return epoch
# -------------------------------------------------------------------------------------
def train(opt):
# Prepare model related things
if opt.dataset == "cifar10":
netC = PreActResNet18().to(opt.device)
elif opt.dataset == "gtsrb":
netC = PreActResNet18(num_classes=43).to(opt.device)
elif opt.dataset == "mnist":
netC = NetC_MNIST().to(opt.device)
else:
raise Exception("Invalid dataset")
netG = Generator(opt).to(opt.device)
optimizerC = torch.optim.SGD(netC.parameters(), opt.lr_C, momentum=0.9, weight_decay=5e-4)
optimizerG = torch.optim.Adam(netG.parameters(), opt.lr_G, betas=(0.5, 0.9))
schedulerC = torch.optim.lr_scheduler.MultiStepLR(optimizerC, opt.schedulerC_milestones, opt.schedulerC_lambda)
schedulerG = torch.optim.lr_scheduler.MultiStepLR(optimizerG, opt.schedulerG_milestones, opt.schedulerG_lambda)
netM = Generator(opt, out_channels=1).to(opt.device)
optimizerM = torch.optim.Adam(netM.parameters(), opt.lr_M, betas=(0.5, 0.9))
schedulerM = torch.optim.lr_scheduler.MultiStepLR(optimizerM, opt.schedulerM_milestones, opt.schedulerM_lambda)
# For tensorboard
log_dir = os.path.join(opt.checkpoints, opt.dataset, opt.attack_mode, 'target_'+str(opt.target_label))
if not os.path.exists(log_dir):
os.makedirs(log_dir)
log_dir = os.path.join(log_dir, "log_dir")
if not os.path.exists(log_dir):
os.makedirs(log_dir)
tf_writer = SummaryWriter(log_dir=log_dir)
# Continue training ?
ckpt_folder = os.path.join(opt.checkpoints, opt.dataset, opt.attack_mode, 'target_'+str(opt.target_label))
ckpt_path = os.path.join(ckpt_folder, "{}_{}_ckpt.pth.tar".format(opt.attack_mode, opt.dataset))
ckpt_path_mask = os.path.join(ckpt_folder, "mask", "{}_{}_ckpt.pth.tar".format(opt.attack_mode, opt.dataset))
if os.path.exists(ckpt_path):
state_dict = torch.load(ckpt_path)
netC.load_state_dict(state_dict["netC"])
netG.load_state_dict(state_dict["netG"])
netM.load_state_dict(state_dict["netM"])
epoch = state_dict["epoch"] + 1
optimizerC.load_state_dict(state_dict["optimizerC"])
optimizerG.load_state_dict(state_dict["optimizerG"])
schedulerC.load_state_dict(state_dict["schedulerC"])
schedulerG.load_state_dict(state_dict["schedulerG"])
best_acc_clean = state_dict["best_acc_clean"]
best_acc_bd = state_dict["best_acc_bd"]
best_acc_cross = state_dict["best_acc_cross"]
opt = state_dict["opt"]
print("Continue training")
elif os.path.exists(ckpt_path_mask):
state_dict = torch.load(ckpt_path_mask)
netM.load_state_dict(state_dict["netM"])
optimizerM.load_state_dict(state_dict["optimizerM"])
schedulerM.load_state_dict(state_dict["schedulerM"])
opt = state_dict["opt"]
best_acc_clean = 0.0
best_acc_bd = 0.0
best_acc_cross = 0.0
epoch = state_dict["epoch"] + 1
print("Continue training ---")
else:
# Prepare mask
best_acc_clean = 0.0
best_acc_bd = 0.0
best_acc_cross = 0.0
epoch = 1
# Reset tensorboard
# shutil.rmtree(log_dir)
# os.makedirs(log_dir)
print("Training from scratch")
# Prepare dataset
train_dl1 = get_dataloader(opt, train=True)
train_dl2 = get_dataloader(opt, train=True)
test_dl1 = get_dataloader(opt, train=False)
test_dl2 = get_dataloader(opt, train=False)
if epoch < 25:
netM.train()
for i in range(25):
print(
"Epoch {} - {} - {} | mask_density: {} - lambda_div: {} - lambda_norm: {}:".format(
epoch, opt.dataset, opt.attack_mode, opt.mask_density, opt.lambda_div, opt.lambda_norm
)
)
train_mask_step(netM, optimizerM, schedulerM, train_dl1, train_dl2, epoch, opt, tf_writer)
epoch = eval_mask(netM, optimizerM, schedulerM, test_dl1, test_dl2, epoch, opt)
epoch += 1
netM.eval()
netM.requires_grad_(False)
for i in range(opt.n_iters):
print(
"Epoch {} - {} - {} | mask_density: {} - lambda_div: {}:".format(
epoch, opt.dataset, opt.attack_mode, opt.mask_density, opt.lambda_div
)
)
train_step(
netC,
netG,
netM,
optimizerC,
optimizerG,
schedulerC,
schedulerG,
train_dl1,
train_dl2,
epoch,
opt,
tf_writer,
)
best_acc_clean, best_acc_bd, best_acc_cross, epoch = eval(
netC,
netG,
netM,
optimizerC,
optimizerG,
schedulerC,
schedulerG,
test_dl1,
test_dl2,
epoch,
best_acc_clean,
best_acc_bd,
best_acc_cross,
opt,
)
epoch += 1
if epoch > opt.n_iters:
break
def main():
opt = config.get_arguments().parse_args()
use_cuda = torch.cuda.is_available()
opt.device = torch.device("cuda" if use_cuda else "cpu")
if opt.dataset == "mnist" or opt.dataset == "cifar10":
opt.num_classes = 10
elif opt.dataset == "gtsrb":
opt.num_classes = 43
elif opt.dataset == "celeba":
opt.num_classes = 8
else:
raise Exception("Invalid Dataset")
if opt.dataset == "cifar10":
opt.input_height = 32
opt.input_width = 32
opt.input_channel = 3
elif opt.dataset == "gtsrb":
opt.input_height = 32
opt.input_width = 32
opt.input_channel = 3
elif opt.dataset == "mnist":
opt.input_height = 28
opt.input_width = 28
opt.input_channel = 1
else:
raise Exception("Invalid Dataset")
train(opt)
if __name__ == "__main__":
opt = config.get_arguments().parse_args()
os.environ["CUDA_VISIBLE_DEVICES"] = opt.gpu
main()
## python train.py --dataset cifar10 --target_label 0 --gpu 0
## python train.py --dataset gtsrb --target_label 2 --gpu 0