forked from SCLBD/BackdoorBench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strip.py
427 lines (346 loc) · 16.9 KB
/
strip.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
'''
STRIP: A Defence Against Trojan Attacks on Deep Neural Networks
This file is modified based on the following source:
link : https://github.com/Unispac/Fight-Poison-With-Poison/blob/master/other_cleansers/strip.py
@inproceedings{gao2019strip,
title={Strip: A defence against trojan attacks on deep neural networks},
author={Gao, Yansong and Xu, Change and Wang, Derui and Chen, Shiping and Ranasinghe, Damith C and Nepal, Surya},
booktitle={Proceedings of the 35th Annual Computer Security Applications Conference},
pages={113--125},
year={2019}}
This file implements the (detection) defense method called STRIP.
basic sturcture for defense method:
1. basic setting: args
2. attack result(model, train data, test data)
3. STRIP detection:
a. mix up clean samples and record the entropy of prediction, and record smallest entropy and largest entropy as thresholds.
b. mix up the tested samples and clean samples, and record the entropy.
c. detection samples whose entropy exceeds the thresholds as poisoned.
4. Record TPR and FPR, where the detected samples consist of 1000 clean samples and 9000 poisoned samples..
'''
import argparse
import os,sys
import numpy as np
import torch
import torch.nn as nn
sys.path.append('../')
sys.path.append(os.getcwd())
from pprint import pformat
import yaml
import logging
import time
from typing import Any, Dict, List, Optional, Tuple, TYPE_CHECKING
from defense.base import defense
import scipy
from utils.aggregate_block.train_settings_generate import argparser_criterion, argparser_opt_scheduler
from utils.trainer_cls import PureCleanModelTrainer
from utils.aggregate_block.fix_random import fix_random
from utils.aggregate_block.model_trainer_generate import generate_cls_model
from utils.log_assist import get_git_info
from utils.aggregate_block.dataset_and_transform_generate import get_input_shape, get_num_classes, get_transform
from utils.save_load_attack import load_attack_result, save_defense_result
from utils.nCHW_nHWC import *
import tqdm
import heapq
from PIL import Image
from utils.bd_dataset_v2 import dataset_wrapper_with_transform,xy_iter, prepro_cls_DatasetBD_v2
from utils.trainer_cls import Metric_Aggregator, PureCleanModelTrainer, all_acc, general_plot_for_epoch, given_dataloader_test
from collections import Counter
import copy
from torch.utils.data import DataLoader
from sklearn.metrics import confusion_matrix
import random
import csv
from sklearn import metrics
class STRIP():
name: str = 'strip'
def __init__(self, args, inspection_set, clean_set, model, strip_alpha: float = 0.5, N: int = 64, defense_fpr: float = 0.05, batch_size=128):
self.args = args
self.strip_alpha: float = strip_alpha
self.N: int = N
self.defense_fpr = defense_fpr
self.inspection_set = inspection_set
self.clean_set = clean_set
self.model = model
def cleanse(self):
# choose a decision boundary with the test set
clean_entropy = []
clean_set_loader = DataLoader(self.clean_set, batch_size=128, shuffle=False)
for i, (_input, _label) in enumerate(clean_set_loader):
# _input, _label = _input.cuda(), _label.cuda()
_input, _label = _input.to(self.args.device), _label.to(self.args.device)
entropies = self.check(_input, _label, self.clean_set)
for e in entropies:
clean_entropy.append(e)
clean_entropy = torch.FloatTensor(clean_entropy)
clean_entropy, _ = clean_entropy.sort()
print(len(clean_entropy))
threshold_low = float(clean_entropy[int(self.defense_fpr * len(clean_entropy))])
threshold_high = np.inf
# now cleanse the inspection set with the chosen boundary
inspection_set_loader = DataLoader(self.inspection_set, batch_size=128, shuffle=False)
all_entropy = []
for i, (_input, _label) in enumerate(inspection_set_loader):
# _input, _label = _input.cuda(), _label.cuda()
_input, _label = _input.to(self.args.device), _label.to(self.args.device)
entropies = self.check(_input, _label, self.clean_set)
for e in entropies:
all_entropy.append(e)
all_entropy = torch.FloatTensor(all_entropy)
suspicious_indices = torch.logical_or(all_entropy < threshold_low, all_entropy > threshold_high).nonzero().reshape(-1)
return suspicious_indices.numpy()
def check(self, _input: torch.Tensor, _label: torch.Tensor, source_set) -> torch.Tensor:
_list = []
samples = list(range(len(source_set)))
random.shuffle(samples)
samples = samples[:self.N]
with torch.no_grad():
for i in samples:
X, Y = source_set[i]
X = X.to(args.device)
_test = self.superimpose(_input, X)
entropy = self.entropy(_test).cpu().detach()
_list.append(entropy)
return torch.stack(_list).mean(0)
def superimpose(self, _input1: torch.Tensor, _input2: torch.Tensor, alpha: float = None):
if alpha is None:
alpha = self.strip_alpha
result = _input1 + alpha * _input2
return result
def entropy(self, _input: torch.Tensor) -> torch.Tensor:
p = torch.nn.Softmax(dim=1)(self.model(_input)) + 1e-8
return (-p * p.log()).sum(1)
class strip(defense):
r'''STRIP: A Defence Against Trojan Attacks on Deep Neural Networks
basic structure:
1. config args, save_path, fix random seed
2. load the backdoor attack data and backdoor test data
3. strip detection
4. test the result and get ASR, ACC, RC
.. code-block:: python
parser = argparse.ArgumentParser(description=sys.argv[0])
strip.add_arguments(parser)
args = parser.parse_args()
strip_method = strip(args)
if "result_file" not in args.__dict__:
args.result_file = 'defense_test_badnet'
elif args.result_file is None:
args.result_file = 'defense_test_badnet'
result = strip_method.detection(args.result_file)
.. Note::
Args:
baisc args: in the base class
clean_sample_num(int): number of clean sample given
target_label(int): attack target class
'''
def __init__(self,args):
with open(args.yaml_path, 'r') as f:
defaults = yaml.safe_load(f)
defaults.update({k:v for k,v in args.__dict__.items() if v is not None})
args.__dict__ = defaults
args.terminal_info = sys.argv
args.num_classes = get_num_classes(args.dataset)
args.input_height, args.input_width, args.input_channel = get_input_shape(args.dataset)
args.img_size = (args.input_height, args.input_width, args.input_channel)
args.dataset_path = f"{args.dataset_path}/{args.dataset}"
self.args = args
if 'result_file' in args.__dict__ :
if args.result_file is not None:
self.set_result(args.result_file)
def add_arguments(parser):
parser.add_argument('--device', type=str, help='cuda, cpu')
parser.add_argument("-pm","--pin_memory", type=lambda x: str(x) in ['True', 'true', '1'], help = "dataloader pin_memory")
parser.add_argument("-nb","--non_blocking", type=lambda x: str(x) in ['True', 'true', '1'], help = ".to(), set the non_blocking = ?")
parser.add_argument("-pf", '--prefetch', type=lambda x: str(x) in ['True', 'true', '1'], help='use prefetch')
parser.add_argument('--amp', default = False, type=lambda x: str(x) in ['True','true','1'])
parser.add_argument('--checkpoint_load', type=str, help='the location of load model')
parser.add_argument('--checkpoint_save', type=str, help='the location of checkpoint where model is saved')
parser.add_argument('--log', type=str, help='the location of log')
parser.add_argument("--dataset_path", type=str, help='the location of data')
parser.add_argument('--dataset', type=str, help='mnist, cifar10, cifar100, gtrsb, tiny')
parser.add_argument('--result_file', type=str, help='the location of result')
parser.add_argument('--epochs', type=int)
parser.add_argument('--batch_size', type=int)
parser.add_argument("--num_workers", type=float)
parser.add_argument('--lr', type=float)
parser.add_argument('--lr_scheduler', type=str, help='the scheduler of lr')
parser.add_argument('--steplr_stepsize', type=int)
parser.add_argument('--steplr_gamma', type=float)
parser.add_argument('--steplr_milestones', type=list)
parser.add_argument('--model', type=str, help='resnet18')
parser.add_argument('--client_optimizer', type=int)
parser.add_argument('--sgd_momentum', type=float)
parser.add_argument('--wd', type=float, help='weight decay of sgd')
parser.add_argument('--frequency_save', type=int,
help=' frequency_save, 0 is never')
parser.add_argument('--random_seed', type=int, help='random seed')
parser.add_argument('--yaml_path', type=str, default="./config/detection/sentinet/cifar10.yaml", help='the path of yaml')
parser.add_argument('--clean_sample_num', type=int)
parser.add_argument('--csv_save_path', type=str)
parser.add_argument('--target_label', type=int)
def set_result(self, result_file):
attack_file = 'record/' + result_file
save_path = 'record/' + result_file + '/detection/strip_infer/'
if not (os.path.exists(save_path)):
os.makedirs(save_path)
self.args.save_path = save_path
if self.args.checkpoint_save is None:
self.args.checkpoint_save = save_path + 'detection_info/'
if not (os.path.exists(self.args.checkpoint_save)):
os.makedirs(self.args.checkpoint_save)
if self.args.log is None:
self.args.log = save_path + 'log/'
if not (os.path.exists(self.args.log)):
os.makedirs(self.args.log)
self.result = load_attack_result(attack_file + '/attack_result.pt')
def set_trainer(self, model):
self.trainer = PureCleanModelTrainer(
model = model,
)
def set_logger(self):
args = self.args
logFormatter = logging.Formatter(
fmt='%(asctime)s [%(levelname)-8s] [%(filename)s:%(lineno)d] %(message)s',
datefmt='%Y-%m-%d:%H:%M:%S',
)
logger = logging.getLogger()
fileHandler = logging.FileHandler(args.log + '/' + time.strftime("%Y_%m_%d_%H_%M_%S", time.localtime()) + '.log')
fileHandler.setFormatter(logFormatter)
logger.addHandler(fileHandler)
consoleHandler = logging.StreamHandler()
consoleHandler.setFormatter(logFormatter)
logger.addHandler(consoleHandler)
logger.setLevel(logging.INFO)
logging.info(pformat(args.__dict__))
try:
logging.info(pformat(get_git_info()))
except:
logging.info('Getting git info fails.')
def set_devices(self):
self.device = self.args.device
def get_features(data_loader, model):
class_indices = []
feats = []
model.eval()
with torch.no_grad():
for i, (ins_data, ins_target) in enumerate(tqdm(data_loader)):
ins_data = ins_data.cuda()
_, x_features = model(ins_data, True)
this_batch_size = len(ins_target)
for bid in range(this_batch_size):
feats.append(x_features[bid].cpu().numpy())
class_indices.append(ins_target[bid].cpu().numpy())
return feats, class_indices
def cal(self, true, pred):
TN, FP, FN, TP = confusion_matrix(true, pred).ravel()
return TN, FP, FN, TP
def metrix(self, TN, FP, FN, TP):
TPR = TP/(TP+FN)
FPR = FP/(FP+TN)
precision = TP/(TP+FP)
acc = (TP+TN)/(TN+FP+FN+TP)
return TPR, FPR, precision, acc
def filtering(self):
start = time.perf_counter()
self.set_devices()
fix_random(self.args.random_seed)
### a. load model, bd train data and transforms
model = generate_cls_model(self.args.model,self.args.num_classes)
model.load_state_dict(self.result['model'])
if "," in self.device:
model = torch.nn.DataParallel(
model,
device_ids=[int(i) for i in self.args.device[5:].split(",")] # eg. "cuda:2,3,7" -> [2,3,7]
)
self.args.device = f'cuda:{model.device_ids[0]}'
model.to(self.args.device)
model.eval()
else:
model.to(self.args.device)
model.eval()
test_tran = get_transform(self.args.dataset, *([self.args.input_height,self.args.input_width]) , train = False)
bd_test_dataset = self.result['bd_test'].wrapped_dataset
pindex = np.where(np.array(bd_test_dataset.poison_indicator) == 1)[0]
clean_test_dataset = self.result['clean_test'].wrapped_dataset
### b. find a clean sample from test dataset
images = []
labels = []
for img, label in clean_test_dataset:
images.append(img)
labels.append(label)
class_idx_whole = []
num = int(self.args.clean_sample_num / self.args.num_classes)
if num == 0:
num = 1
for i in range(self.args.num_classes):
class_idx_whole.append(np.random.choice(np.where(np.array(labels)==i)[0], num))
image_c = []
label_c = []
class_idx_whole = np.concatenate(class_idx_whole, axis=0)
image_c = [images[i] for i in class_idx_whole]
label_c = [labels[i] for i in class_idx_whole]
clean_dataset = xy_iter(image_c, label_c,transform=test_tran)
### c. load training dataset with poison samples
images_poison = []
labels_poison = []
for img, label,*other_info in bd_test_dataset:
images_poison.append(img)
labels_poison.append(label)
### d. combine poisoned samples with clean samples
random_clean_index = np.random.choice(np.arange(len(images)), 1000, replace=False)
images_clean = [images[i] for i in random_clean_index]
labels_clean = [labels[i] for i in random_clean_index]
detected_samples = images_poison + images_clean
detected_labels = labels_poison + labels_clean
train_dataset = xy_iter(detected_samples, detected_labels,transform=test_tran)
worker = STRIP( args, train_dataset, clean_dataset, model, strip_alpha=1.0, N=100, defense_fpr=0.1, batch_size=128 )
suspect_index = worker.cleanse()
true_index = np.zeros(len(detected_samples))
for i in range(len(true_index)):
if i < len(labels_poison):
true_index[i] = 1
if len(suspect_index)==0:
tn = len(true_index) - np.sum(true_index)
fp = np.sum(true_index)
fn = 0
tp = 0
f = open(self.args.save_path + '/detection_info.csv', 'a', encoding='utf-8')
csv_write = csv.writer(f)
csv_write.writerow(['record', 'TN','FP','FN','TP','TPR','FPR', 'target'])
csv_write.writerow([args.result_file, tn,fp,fn,tp, 0,0, 'None'])
f.close()
else:
findex = np.zeros(len(detected_samples))
for i in range(len(findex)):
if i in suspect_index:
findex[i] = 1
tn, fp, fn, tp = self.cal(true_index, findex)
TPR, FPR, precision, acc = self.metrix(tn, fp, fn, tp)
new_TP = tp
new_FN = fn*9
new_FP = fp*1
precision = new_TP / (new_TP + new_FP) if new_TP + new_FP != 0 else 0
recall = new_TP / (new_TP + new_FN) if new_TP + new_FN != 0 else 0
fw1 = 2*(precision * recall)/ (precision + recall) if precision + recall != 0 else 0
end = time.perf_counter()
time_miniute = (end-start)/60
f = open(self.args.save_path + '/detection_info.csv', 'a', encoding='utf-8')
csv_write = csv.writer(f)
csv_write.writerow(['record', 'TN','FP','FN','TP','TPR','FPR', 'target'])
csv_write.writerow([args.result_file, tn, fp, fn, tp, TPR, FPR, 'None'])
f.close()
def detection(self,result_file):
self.set_result(result_file)
self.set_logger()
result = self.filtering()
return result
if __name__ == '__main__':
parser = argparse.ArgumentParser(description=sys.argv[0])
strip.add_arguments(parser)
args = parser.parse_args()
strip_method = strip(args)
if "result_file" not in args.__dict__:
args.result_file = 'defense_test_badnet'
elif args.result_file is None:
args.result_file = 'defense_test_badnet'
result = strip_method.detection(args.result_file)