-
Notifications
You must be signed in to change notification settings - Fork 136
/
EagleEye_normal_prune.py
334 lines (286 loc) · 14.5 KB
/
EagleEye_normal_prune.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
from sys import float_repr_style
from models import *
from utils.utils import *
from utils.prune_utils import *
from utils.datasets import *
import os
import test
import argparse
from thop import profile
# from thop import profile
# from distiller.model_summaries import model_performance_summary
def obtain_avg_forward_time(input, model, repeat=200):
model.eval()
start = time.time()
with torch.no_grad():
for i in range(repeat):
output = model(input)
avg_infer_time = (time.time() - start) / repeat
return avg_infer_time, output
def obtain_filters_mask(model, CBL_idx, prune_idx, idx_mask):
pruned = 0
total = 0
num_filters = []
filters_mask = []
# CBL_idx存储的是所有带BN的卷积层(YOLO层的前一层卷积层是不带BN的)
for idx in CBL_idx:
bn_module = model.module_list[idx][1]
if idx in prune_idx:
mask = idx_mask[idx]
# mask = obtain_bn_mask(bn_module, thre).cpu().numpy()
remain = int(mask.sum())
pruned = pruned + mask.shape[0] - remain
if remain == 0:
print("Channels would be all pruned!")
raise Exception
# print(f'layer index: {idx:>3d} \t total channel: {mask.shape[0]:>4d} \t '
# f'remaining channel: {remain:>4d}')
else:
mask = torch.ones(bn_module.weight.data.shape)
remain = mask.shape[0]
total += mask.shape[0]
num_filters.append(remain)
filters_mask.append(mask.clone())
# 因此,这里求出的prune_ratio,需要裁剪的α参数/cbl_idx中所有的α参数
# prune_ratio = pruned / total
# print(f'Prune channels: {pruned}\tPrune ratio: {prune_ratio:.3f}')
return num_filters, filters_mask
def obtain_l1_mask(conv_module, random_rate):
w_copy = conv_module.weight.data.abs().clone()
w_copy = torch.sum(w_copy, dim=(1, 2, 3))
length = w_copy.cpu().numpy().shape[0]
num_retain = int(length * (1 - random_rate))
if num_retain == 0:
num_retain = 1
_, y = torch.topk(w_copy, num_retain)
mask = torch.zeros(length, dtype=torch.float32).to(w_copy.device)
mask[y] = 1
return mask
#macs = flops / 2
def performance_summary(model, opt=None, prefix=""):
macs, _ = profile(model, inputs=(torch.zeros(1, 3, 480, 640).to(device),), verbose=False)
return macs
def rand_prune_and_eval(model, min_rate, max_rate):
while True:
model_copy = deepcopy(model)
remain_num = 0
idx_new = dict()
for idx in prune_idx:
# bn_module = model_copy.module_list[idx][1]
conv_module = model_copy.module_list[idx][0]
random_rate = (max_rate - min_rate) * (np.random.rand(1)) + min_rate
mask = obtain_l1_mask(conv_module, random_rate)
idx_new[idx] = mask
remain_num += int(mask.sum())
conv_module.weight.data = conv_module.weight.data.permute(1, 2, 3, 0).mul(mask).float().permute(3, 0, 1, 2)
# bn_module.weight.data.mul_(mask)
# ---------------
num_filters, filters_mask = obtain_filters_mask(model_copy, CBL_idx, prune_idx, idx_new)
CBLidx2mask = {idx: mask for idx, mask in zip(CBL_idx, filters_mask)}
compact_module_defs = deepcopy(model.module_defs)
for idx, num in zip(CBL_idx, num_filters):
assert compact_module_defs[idx]['type'] == 'convolutional'
compact_module_defs[idx]['filters'] = str(num)
compact_model = Darknet([model.hyperparams.copy()] + compact_module_defs).to(device)
current_parameters = obtain_num_parameters(compact_model)
# print(current_parameters/origin_nparameters, end=';')
current_macs = performance_summary(compact_model)
# if current_parameters / origin_nparameters > remain_ratio + delta or current_parameters / origin_nparameters < remain_ratio - delta:
# macs = flops/2
if current_macs / origin_macs > remain_ratio + delta or current_macs / origin_macs < remain_ratio - delta:
# print('missing')
model_copy.cpu()
compact_model.cpu()
torch.cuda.empty_cache()
continue
print("yes---")
for i in CBLidx2mask:
CBLidx2mask[i] = CBLidx2mask[i].clone().cpu().numpy()
pruned_model = prune_model_keep_size_forEagleEye(model, prune_idx, CBLidx2mask)
init_weights_from_loose_model(compact_model, pruned_model, CBL_idx, Conv_idx, CBLidx2mask)
compact_model.train()
with torch.no_grad():
for batch_i, (imgs, targets, paths, shapes) in enumerate(tqdm(dataloader)):
imgs = imgs.cuda().float() / 255.0
compact_model(imgs)
if batch_i > steps:
break
del model_copy
torch.cuda.empty_cache()
break
return compact_module_defs, current_parameters, compact_model
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--cfg', type=str, default='cfg/yolov3/yolov3.cfg', help='cfg file path')
parser.add_argument('--data', type=str, default='data/coco2017.data', help='*.data file path')
parser.add_argument('--weights', type=str, default='weights/pretrain_weights/yolov3.weights',
help='sparse model weights')
parser.add_argument('--percent', type=float, default=0.5, help='global channel prune percent')
parser.add_argument('--delta', type=float, default=0.05, help='delta')
parser.add_argument('--img-size', type=int, default=416, help='inference size (pixels)')
parser.add_argument('--batch-size', type=int, default=16, help='batch-size')
parser.add_argument('--number', type=int, default=200, help='number of subnetwork')
opt = parser.parse_args()
print(opt)
t0 = time.time()
remain_ratio = 1 - opt.percent
number = opt.number
img_size = opt.img_size
batch_size = opt.batch_size
delta = opt.delta
hyp = {'giou': 3.54, # giou loss gain
'cls': 37.4, # cls loss gain
'cls_pw': 1.0, # cls BCELoss positive_weight
'obj': 64.3, # obj loss gain (*=img_size/320 if img_size != 320)
'obj_pw': 1.0, # obj BCELoss positive_weight
'iou_t': 0.20, # iou training threshold
'lr0': 0.01, # initial learning rate (SGD=5E-3, Adam=5E-4)
'lrf': 0.0005, # final learning rate (with cos scheduler)
'momentum': 0.937, # SGD momentum
'weight_decay': 0.0005, # optimizer weight decay
'fl_gamma': 0.0, # focal loss gamma (efficientDet default is gamma=1.5)
'hsv_h': 0.0138, # image HSV-Hue augmentation (fraction)
'hsv_s': 0.678, # image HSV-Saturation augmentation (fraction)
'hsv_v': 0.36, # image HSV-Value augmentation (fraction)
'degrees': 1.98 * 0, # image rotation (+/- deg)
'translate': 0.05 * 0, # image translation (+/- fraction)
'scale': 0.05 * 0, # image scale (+/- gain)
'shear': 0.641 * 0} # image shear (+/- deg)
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
model = Darknet(opt.cfg).to(device)
if opt.weights:
if opt.weights.endswith(".pt"):
model.load_state_dict(torch.load(opt.weights, map_location=device)['model'])
else:
_ = load_darknet_weights(model, opt.weights)
data_config = parse_data_cfg(opt.data)
valid_path = data_config["valid"]
train_path = data_config["train"]
class_names = load_classes(data_config["names"])
steps = math.ceil((len(open(train_path).readlines()) / batch_size) * 0.1)
obtain_num_parameters = lambda model: sum([param.nelement() for param in model.parameters()])
dataset = LoadImagesAndLabels(train_path,
img_size,
batch_size,
augment=True,
hyp=hyp, # augmentation hyperparameters
rect=False, # rectangular training
cache_images=False)
dataloader = torch.utils.data.DataLoader(dataset,
batch_size=batch_size,
num_workers=min([os.cpu_count(), batch_size, 16]),
shuffle=True, # Shuffle=True unless rectangular training is used
pin_memory=True,
collate_fn=dataset.collate_fn)
test_dataset = LoadImagesAndLabels(valid_path, img_size, batch_size,
hyp=hyp,
rect=True,
cache_images=False)
testloader = torch.utils.data.DataLoader(test_dataset,
batch_size=batch_size,
num_workers=min([os.cpu_count(), batch_size, 8]),
shuffle=False,
pin_memory=True,
collate_fn=test_dataset.collate_fn)
with torch.no_grad():
origin_model_metric = test.test(opt.cfg,
opt.data,
batch_size=batch_size,
imgsz=img_size,
model=model,
dataloader=testloader,
rank=-1,
plot=False)
origin_nparameters = obtain_num_parameters(model)
origin_macs = performance_summary(model)
CBL_idx, Conv_idx, prune_idx = parse_module_defs(model.module_defs)
print("-------------------------------------------------------")
max_mAP = 0
for i in range(number):
compact_module_defs, current_parameters, compact_model = rand_prune_and_eval(model, 0, 1)
with torch.no_grad():
# 防止随机生成的较差的模型撑爆显存,增大nmsconf阈值
mAP = test.test(opt.cfg,
opt.data,
batch_size=batch_size,
imgsz=img_size,
conf_thres=0.1,
model=compact_model,
dataloader=testloader,
rank=-1,
plot=False)[0][2]
print('candidate: ' + str(i), end=" ")
print('remain_ratio: ' + str(current_parameters / origin_nparameters))
print(f'mAP of the pruned model is {mAP:.4f}')
if mAP > max_mAP:
max_mAP = mAP
compact_model_winnner = deepcopy(compact_model)
cfg_name = 'cfg_backup/' + str(i) + '.cfg'
if not os.path.isdir('cfg_backup/'):
os.makedirs('cfg_backup/')
pruned_cfg_file = write_cfg(cfg_name, [model.hyperparams.copy()] + compact_module_defs)
del compact_model
torch.cuda.empty_cache()
# 获得原始模型的module_defs,并修改该defs中的卷积核数量
compact_module_defs = deepcopy(compact_model_winnner.module_defs)
compact_nparameters = obtain_num_parameters(compact_model_winnner)
compact_macs = performance_summary(compact_model_winnner)
compact_flops = compact_macs*2 / 1024**3
origin_flops = origin_macs*2 / 1024**3
random_input = torch.rand((16, 3, 416, 416)).to(device)
pruned_forward_time, pruned_output = obtain_avg_forward_time(random_input, model)
compact_forward_time, compact_output = obtain_avg_forward_time(random_input, compact_model_winnner)
# 在测试集上测试剪枝后的模型, 并统计模型的参数数量
with torch.no_grad():
compact_model_metric = test.test(opt.cfg,
opt.data,
batch_size=batch_size,
imgsz=img_size,
model=compact_model_winnner,
dataloader=testloader,
rank=-1,
plot=False)
# 比较剪枝前后参数数量的变化、指标性能的变化
metric_table = [
["Metric", "Before", "After"],
["mAP", f'{origin_model_metric[1].mean():.6f}', f'{compact_model_metric[1].mean():.6f}'],
["Parameters", f"{origin_nparameters}", f"{compact_nparameters}"],
["GFLOPs",f"{origin_flops}",f"{compact_flops}"],
["Inference", f'{pruned_forward_time:.4f}', f'{compact_forward_time:.4f}']
]
print(AsciiTable(metric_table).table)
# 生成剪枝后的cfg文件并保存模型
pruned_cfg_name = 'cfg/rand-normal_' + str(remain_ratio) + '_' + str(number) + '/' + 'rand-normal_-' + str(
remain_ratio) + '_' + str(number) + '.cfg'
# 创建存储目录
dir_name = 'cfg/rand-normal_' + str(remain_ratio) + '_' + str(number) + '/'
if not os.path.isdir(dir_name):
os.makedirs(dir_name)
# 由于原始的compact_module_defs将anchor从字符串变为了数组,因此这里将anchors重新变为字符串
file = open(opt.cfg, 'r')
lines = file.read().split('\n')
for line in lines:
if line.split(' = ')[0] == 'anchors':
anchor = line.split(' = ')[1]
break
if line.split('=')[0] == 'anchors':
anchor = line.split('=')[1]
break
file.close()
for item in compact_module_defs:
if item['type'] == 'shortcut':
item['from'] = str(item['from'][0])
elif item['type'] == 'route':
item['layers'] = ",".join('%s' % i for i in item['layers'])
elif item['type'] == 'yolo':
item['mask'] = ",".join('%s' % i for i in item['mask'])
item['anchors'] = anchor
pruned_cfg_file = write_cfg(pruned_cfg_name, [model.hyperparams.copy()] + compact_module_defs)
print(f'Config file has been saved: {pruned_cfg_file}')
weights_dir_name = dir_name.replace('cfg', 'weights')
if not os.path.isdir(weights_dir_name):
os.makedirs(weights_dir_name)
compact_model_name = weights_dir_name + 'rand-normal_' + str(remain_ratio) + '_' + str(number) + '.weights'
save_weights(compact_model_winnner, path=compact_model_name)
print(f'Compact model has been saved: {compact_model_name}')
print('%g sub networks completed in %.3f hours.\n' % (number, (time.time() - t0) / 3600))