-
Notifications
You must be signed in to change notification settings - Fork 0
/
evaluate_cifar.py
executable file
·801 lines (634 loc) · 27.6 KB
/
evaluate_cifar.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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
import os
import numpy as np
import time, datetime
import argparse
import copy
from thop import profile
from collections import OrderedDict
import torch
import torch.nn as nn
import torch.utils
import torch.backends.cudnn as cudnn
import torch.utils.data.distributed
import torchvision
from torchvision import datasets, transforms
from models.cifar10.vgg import vgg_16_bn
from models.cifar10.resnet import resnet_56, resnet_110
from models.cifar10.googlenet import googlenet, Inception
from models.cifar10.densenet import densenet_40
from data import cifar10
import utils.common as utils
parser = argparse.ArgumentParser("Cifar-10 training")
parser.add_argument(
'--data_dir',
type=str,
default='',
help='path to dataset')
parser.add_argument(
'--arch',
type=str,
default='resnet_56',
help='architecture')
parser.add_argument(
'--job_dir',
type=str,
default='./models',
help='path for saving trained models')
parser.add_argument(
'--batch_size',
type=int,
default=256,
help='batch size')
parser.add_argument(
'--epochs',
type=int,
default=150,
help='num of training epochs')
parser.add_argument(
'--learning_rate',
type=float,
default=0.01,
help='init learning rate')
parser.add_argument(
'--lr_decay_step',
default='50,100',
type=str,
help='learning rate')
parser.add_argument(
'--momentum',
type=float,
default=0.9,
help='momentum')
parser.add_argument(
'--weight_decay',
type=float,
default=5e-4,
help='weight decay')
parser.add_argument(
'--resume',
action='store_true',
help='whether continue training from the same directory')
parser.add_argument(
'--use_pretrain',
action='store_true',
help='whether use pretrain model')
parser.add_argument(
'--pretrain_dir',
type=str,
default='',
help='pretrain model path')
parser.add_argument(
'--rank_conv_prefix',
type=str,
default='',
help='rank conv file folder')
parser.add_argument(
'--compress_rate',
type=str,
default=None,
help='compress rate of each conv')
parser.add_argument(
'--test_only',
action='store_true',
help='whether it is test mode')
parser.add_argument(
'--test_model_dir',
type=str,
default='',
help='test model path')
parser.add_argument(
'--gpu',
type=str,
default='0',
help='Select gpu to use')
args = parser.parse_args()
os.environ['CUDA_VISIBLE_DEVICES'] = args.gpu
CLASSES = 10
print_freq = (256*50)//args.batch_size
if not os.path.isdir(args.job_dir):
os.makedirs(args.job_dir)
utils.record_config(args)
now = datetime.datetime.now().strftime('%Y-%m-%d-%H:%M:%S')
logger = utils.get_logger(os.path.join(args.job_dir, 'logger'+now+'.log'))
#use for loading pretrain model
if len(args.gpu)>1:
name_base='module.'
else:
name_base=''
def load_vgg_model(model, oristate_dict):
state_dict = model.state_dict()
last_select_index = None #Conv index selected in the previous layer
cnt=0
prefix = args.rank_conv_prefix+'/rank_conv'
subfix = ".npy"
for name, module in model.named_modules():
name = name.replace('module.', '')
if isinstance(module, nn.Conv2d):
cnt+=1
oriweight = oristate_dict[name + '.weight']
curweight =state_dict[name_base+name + '.weight']
orifilter_num = oriweight.size(0)
currentfilter_num = curweight.size(0)
if orifilter_num != currentfilter_num:
cov_id = cnt
logger.info('loading rank from: ' + prefix + str(cov_id) + subfix)
rank = np.load(prefix + str(cov_id) + subfix)
select_index = np.argsort(rank)[orifilter_num-currentfilter_num:] # preserved filter id
select_index.sort()
if last_select_index is not None:
for index_i, i in enumerate(select_index):
for index_j, j in enumerate(last_select_index):
state_dict[name_base+name + '.weight'][index_i][index_j] = \
oristate_dict[name + '.weight'][i][j]
else:
for index_i, i in enumerate(select_index):
state_dict[name_base+name + '.weight'][index_i] = \
oristate_dict[name + '.weight'][i]
last_select_index = select_index
elif last_select_index is not None:
for i in range(orifilter_num):
for index_j, j in enumerate(last_select_index):
state_dict[name_base+name + '.weight'][i][index_j] = \
oristate_dict[name + '.weight'][i][j]
else:
state_dict[name_base+name + '.weight'] = oriweight
last_select_index = None
model.load_state_dict(state_dict)
def load_resnet_model(model, oristate_dict, layer):
cfg = {
56: [9, 9, 9],
110: [18, 18, 18],
}
state_dict = model.state_dict()
current_cfg = cfg[layer]
last_select_index = None
all_conv_weight = []
prefix = args.rank_conv_prefix+'/rank_conv'
subfix = ".npy"
cnt=1
for layer, num in enumerate(current_cfg):
layer_name = 'layer' + str(layer + 1) + '.'
for k in range(num):
for l in range(2):
cnt+=1
cov_id=cnt
conv_name = layer_name + str(k) + '.conv' + str(l + 1)
conv_weight_name = conv_name + '.weight'
all_conv_weight.append(conv_weight_name)
oriweight = oristate_dict[conv_weight_name]
curweight =state_dict[name_base+conv_weight_name]
orifilter_num = oriweight.size(0)
currentfilter_num = curweight.size(0)
if orifilter_num != currentfilter_num:
logger.info('loading rank from: ' + prefix + str(cov_id) + subfix)
rank = np.load(prefix + str(cov_id) + subfix)
select_index = np.argsort(rank)[orifilter_num - currentfilter_num:] # preserved filter id
select_index.sort()
if last_select_index is not None:
for index_i, i in enumerate(select_index):
for index_j, j in enumerate(last_select_index):
state_dict[name_base+conv_weight_name][index_i][index_j] = \
oristate_dict[conv_weight_name][i][j]
else:
for index_i, i in enumerate(select_index):
state_dict[name_base+conv_weight_name][index_i] = \
oristate_dict[conv_weight_name][i]
last_select_index = select_index
elif last_select_index is not None:
for index_i in range(orifilter_num):
for index_j, j in enumerate(last_select_index):
state_dict[name_base+conv_weight_name][index_i][index_j] = \
oristate_dict[conv_weight_name][index_i][j]
last_select_index = None
else:
state_dict[name_base+conv_weight_name] = oriweight
last_select_index = None
for name, module in model.named_modules():
name = name.replace('module.', '')
if isinstance(module, nn.Conv2d):
conv_name = name + '.weight'
if 'shortcut' in name:
continue
if conv_name not in all_conv_weight:
state_dict[name_base+conv_name] = oristate_dict[conv_name]
elif isinstance(module, nn.Linear):
state_dict[name_base+name + '.weight'] = oristate_dict[name + '.weight']
state_dict[name_base+name + '.bias'] = oristate_dict[name + '.bias']
model.load_state_dict(state_dict)
def load_google_model(model, oristate_dict):
state_dict = model.state_dict()
filters = [
[64, 128, 32, 32],
[128, 192, 96, 64],
[192, 208, 48, 64],
[160, 224, 64, 64],
[128, 256, 64, 64],
[112, 288, 64, 64],
[256, 320, 128, 128],
[256, 320, 128, 128],
[384, 384, 128, 128]
]
#last_select_index = []
all_honey_conv_name = []
all_honey_bn_name = []
cur_last_select_index = []
cnt=0
prefix = args.rank_conv_prefix+'/rank_conv'
subfix = ".npy"
for name, module in model.named_modules():
name = name.replace('module.', '')
if isinstance(module, Inception):
cnt += 1
cov_id = cnt
honey_filter_channel_index = [
'.branch5x5.6',
] # the index of sketch filter and channel weight
honey_channel_index = [
'.branch1x1.0',
'.branch3x3.0',
'.branch5x5.0',
'.branch_pool.1'
] # the index of sketch channel weight
honey_filter_index = [
'.branch3x3.3',
'.branch5x5.3',
] # the index of sketch filter weight
honey_bn_index = [
'.branch3x3.4',
'.branch5x5.4',
'.branch5x5.7',
] # the index of sketch bn weight
for bn_index in honey_bn_index:
all_honey_bn_name.append(name + bn_index)
last_select_index = cur_last_select_index[:]
cur_last_select_index=[]
for weight_index in honey_channel_index:
if '3x3' in weight_index:
branch_name='_n3x3'
elif '5x5' in weight_index:
branch_name='_n5x5'
elif '1x1' in weight_index:
branch_name='_n1x1'
elif 'pool' in weight_index:
branch_name='_pool_planes'
conv_name = name + weight_index + '.weight'
all_honey_conv_name.append(name + weight_index)
oriweight = oristate_dict[conv_name]
curweight =state_dict[name_base+conv_name]
orifilter_num = oriweight.size(1)
currentfilter_num = curweight.size(1)
if orifilter_num != currentfilter_num:
select_index = last_select_index
else:
select_index = list(range(0, orifilter_num))
for i in range(state_dict[name_base+conv_name].size(0)):
for index_j, j in enumerate(select_index):
state_dict[name_base+conv_name][i][index_j] = \
oristate_dict[conv_name][i][j]
if branch_name=='_n1x1':
tmp_select_index = list(range(state_dict[name_base+conv_name].size(0)))
cur_last_select_index += tmp_select_index
if branch_name=='_pool_planes':
tmp_select_index = list(range(state_dict[name_base+conv_name].size(0)))
tmp_select_index = [x+filters[cov_id-2][0]+filters[cov_id-2][1]+filters[cov_id-2][2] for x in tmp_select_index]
cur_last_select_index += tmp_select_index
for weight_index in honey_filter_index:
if '3x3' in weight_index:
branch_name='_n3x3'
elif '5x5' in weight_index:
branch_name='_n5x5'
elif '1x1' in weight_index:
branch_name='_n1x1'
elif 'pool' in weight_index:
branch_name='_pool_planes'
conv_name = name + weight_index + '.weight'
all_honey_conv_name.append(name + weight_index)
oriweight = oristate_dict[conv_name]
curweight =state_dict[name_base+conv_name]
orifilter_num = oriweight.size(0)
currentfilter_num = curweight.size(0)
if orifilter_num != currentfilter_num:
logger.info('loading rank from: ' + prefix + str(cov_id) + branch_name + subfix)
rank = np.load(prefix + str(cov_id) + branch_name + subfix)
select_index = np.argsort(rank)[orifilter_num - currentfilter_num:] # preserved filter id
select_index.sort()
else:
select_index = list(range(0, orifilter_num))
for index_i, i in enumerate(select_index):
state_dict[name_base+conv_name][index_i] = \
oristate_dict[conv_name][i]
if branch_name=='_n3x3':
tmp_select_index = [x+filters[cov_id-2][0] for x in select_index]
cur_last_select_index += tmp_select_index
if branch_name=='_n5x5':
last_select_index=select_index
for weight_index in honey_filter_channel_index:
if '3x3' in weight_index:
branch_name='_n3x3'
elif '5x5' in weight_index:
branch_name='_n5x5'
elif '1x1' in weight_index:
branch_name='_n1x1'
elif 'pool' in weight_index:
branch_name='_pool_planes'
conv_name = name + weight_index + '.weight'
all_honey_conv_name.append(name + weight_index)
oriweight = oristate_dict[conv_name]
curweight = state_dict[name_base+conv_name]
orifilter_num = oriweight.size(1)
currentfilter_num = curweight.size(1)
if orifilter_num != currentfilter_num:
select_index = last_select_index
else:
select_index = range(0, orifilter_num)
orifilter_num = oriweight.size(0)
currentfilter_num = curweight.size(0)
select_index_1 = copy.deepcopy(select_index)
if orifilter_num != currentfilter_num:
logger.info('loading rank from: ' + prefix + str(cov_id) + branch_name + subfix)
rank = np.load(prefix + str(cov_id) + branch_name + subfix)
select_index = np.argsort(rank)[orifilter_num - currentfilter_num:] # preserved filter id
select_index.sort()
else:
select_index = list(range(0, orifilter_num))
if branch_name == '_n5x5':
tmp_select_index = [x+filters[cov_id-2][0]+filters[cov_id-2][1] for x in select_index]
cur_last_select_index += tmp_select_index
for index_i, i in enumerate(select_index):
for index_j, j in enumerate(select_index_1):
state_dict[name_base+conv_name][index_i][index_j] = \
oristate_dict[conv_name][i][j]
elif name=='pre_layers':
cnt += 1
cov_id = cnt
honey_filter_index = ['.0'] # the index of sketch filter weight
honey_bn_index = ['.1'] # the index of sketch bn weight
for bn_index in honey_bn_index:
all_honey_bn_name.append(name + bn_index)
for weight_index in honey_filter_index:
conv_name = name + weight_index + '.weight'
all_honey_conv_name.append(name + weight_index)
oriweight = oristate_dict[conv_name]
curweight =state_dict[name_base+conv_name]
orifilter_num = oriweight.size(0)
currentfilter_num = curweight.size(0)
if orifilter_num != currentfilter_num:
rank = np.load(prefix + str(cov_id) + subfix)
select_index = np.argsort(rank)[orifilter_num - currentfilter_num:] # preserved filter id
select_index.sort()
cur_last_select_index = select_index[:]
for index_i, i in enumerate(select_index):
state_dict[name_base+conv_name][index_i] = \
oristate_dict[conv_name][i]#'''
for name, module in model.named_modules(): # Reassign non sketch weights to the new network
name = name.replace('module.', '')
if isinstance(module, nn.Conv2d):
if name not in all_honey_conv_name:
state_dict[name_base+name + '.weight'] = oristate_dict[name + '.weight']
state_dict[name_base+name + '.bias'] = oristate_dict[name + '.bias']
elif isinstance(module, nn.BatchNorm2d):
if name not in all_honey_bn_name:
state_dict[name_base+name + '.weight'] = oristate_dict[name + '.weight']
state_dict[name_base+name + '.bias'] = oristate_dict[name + '.bias']
state_dict[name_base+name + '.running_mean'] = oristate_dict[name + '.running_mean']
state_dict[name_base+name + '.running_var'] = oristate_dict[name + '.running_var']
elif isinstance(module, nn.Linear):
state_dict[name_base+name + '.weight'] = oristate_dict[name + '.weight']
state_dict[name_base+name + '.bias'] = oristate_dict[name + '.bias']
model.load_state_dict(state_dict)
def load_densenet_model(model, oristate_dict):
state_dict = model.state_dict()
last_select_index = [] #Conv index selected in the previous layer
cnt=0
prefix = args.rank_conv_prefix+'/rank_conv'
subfix = ".npy"
for name, module in model.named_modules():
name = name.replace('module.', '')
if isinstance(module, nn.Conv2d):
cnt+=1
cov_id = cnt
oriweight = oristate_dict[name + '.weight']
curweight = state_dict[name_base+name + '.weight']
orifilter_num = oriweight.size(0)
currentfilter_num = curweight.size(0)
if orifilter_num != currentfilter_num:
logger.info('loading rank from: ' + prefix + str(cov_id) + subfix)
rank = np.load(prefix + str(cov_id) + subfix)
select_index = list(np.argsort(rank)[orifilter_num-currentfilter_num:]) # preserved filter id
select_index.sort()
if last_select_index is not None:
for index_i, i in enumerate(select_index):
for index_j, j in enumerate(last_select_index):
state_dict[name_base+name + '.weight'][index_i][index_j] = \
oristate_dict[name + '.weight'][i][j]
else:
for index_i, i in enumerate(select_index):
state_dict[name_base+name + '.weight'][index_i] = \
oristate_dict[name + '.weight'][i]
elif last_select_index is not None:
for i in range(orifilter_num):
for index_j, j in enumerate(last_select_index):
state_dict[name_base+name + '.weight'][i][index_j] = \
oristate_dict[name + '.weight'][i][j]
select_index = list(range(0, orifilter_num))
else:
select_index = list(range(0, orifilter_num))
state_dict[name_base+name + '.weight'] = oriweight
if cov_id==1 or cov_id==14 or cov_id==27:
last_select_index = select_index
else:
tmp_select_index = [x+cov_id*12-(cov_id-1)//13*12 for x in select_index]
last_select_index += tmp_select_index
model.load_state_dict(state_dict)
def main():
cudnn.benchmark = True
cudnn.enabled=True
logger.info("args = %s", args)
if args.compress_rate:
import re
cprate_str = args.compress_rate
cprate_str_list = cprate_str.split('+')
pat_cprate = re.compile(r'\d+\.\d*')
pat_num = re.compile(r'\*\d+')
cprate = []
for x in cprate_str_list:
num = 1
find_num = re.findall(pat_num, x)
if find_num:
assert len(find_num) == 1
num = int(find_num[0].replace('*', ''))
find_cprate = re.findall(pat_cprate, x)
assert len(find_cprate) == 1
cprate += [float(find_cprate[0])] * num
compress_rate = cprate
# load model
logger.info('compress_rate:' + str(compress_rate))
logger.info('==> Building model..')
model = eval(args.arch)(compress_rate=compress_rate).cuda()
logger.info(model)
#calculate model size
input_image_size=32
input_image = torch.randn(1, 3, input_image_size, input_image_size).cuda()
flops, params = profile(model, inputs=(input_image,))
logger.info('Params: %.2f' % (params))
logger.info('Flops: %.2f' % (flops))
# load training data
train_loader, val_loader = cifar10.load_data(args)
criterion = nn.CrossEntropyLoss()
criterion = criterion.cuda()
if args.test_only:
if os.path.isfile(args.test_model_dir):
logger.info('loading checkpoint {} ..........'.format(args.test_model_dir))
checkpoint = torch.load(args.test_model_dir)
model.load_state_dict(checkpoint['state_dict'])
valid_obj, valid_top1_acc, valid_top5_acc = validate(0, val_loader, model, criterion, args)
else:
logger.info('please specify a checkpoint file')
return
if len(args.gpu) > 1:
device_id = []
for i in range((len(args.gpu) + 1) // 2):
device_id.append(i)
model = nn.DataParallel(model, device_ids=device_id).cuda()
optimizer = torch.optim.SGD(model.parameters(), lr=args.learning_rate, momentum=args.momentum, weight_decay=args.weight_decay)
lr_decay_step = list(map(int, args.lr_decay_step.split(',')))
scheduler = torch.optim.lr_scheduler.MultiStepLR(optimizer, milestones=lr_decay_step, gamma=0.1)
start_epoch = 0
best_top1_acc= 0
# load the checkpoint if it exists
checkpoint_dir = os.path.join(args.job_dir, 'checkpoint.pth.tar')
if args.resume:
logger.info('loading checkpoint {} ..........'.format(checkpoint_dir))
checkpoint = torch.load(checkpoint_dir)
start_epoch = checkpoint['epoch'] + 1
best_top1_acc = checkpoint['best_top1_acc']
# deal with the single-multi GPU problem
new_state_dict = OrderedDict()
tmp_ckpt = checkpoint['state_dict']
if len(args.gpu) > 1:
for k, v in tmp_ckpt.items():
new_state_dict['module.' + k.replace('module.', '')] = v
else:
for k, v in tmp_ckpt.items():
new_state_dict[k.replace('module.', '')] = v
model.load_state_dict(new_state_dict)
logger.info("loaded checkpoint {} epoch = {}".format(checkpoint_dir, checkpoint['epoch']))
else:
if args.use_pretrain:
logger.info('resuming from pretrain model')
origin_model = eval(args.arch)(compress_rate=[0.] * 100).cuda()
ckpt = torch.load(args.pretrain_dir, map_location='cuda:0')
#if args.arch=='resnet_56':
# origin_model.load_state_dict(ckpt['state_dict'],strict=False)
if args.arch == 'densenet_40' or args.arch == 'resnet_110':
new_state_dict = OrderedDict()
for k, v in ckpt['state_dict'].items():
new_state_dict[k.replace('module.', '')] = v
origin_model.load_state_dict(new_state_dict)
else:
origin_model.load_state_dict(ckpt['state_dict'])
oristate_dict = origin_model.state_dict()
if args.arch == 'googlenet':
load_google_model(model, oristate_dict)
elif args.arch == 'vgg_16_bn':
load_vgg_model(model, oristate_dict)
elif args.arch == 'resnet_56':
load_resnet_model(model, oristate_dict, 56)
elif args.arch == 'resnet_110':
load_resnet_model(model, oristate_dict, 110)
elif args.arch == 'densenet_40':
load_densenet_model(model, oristate_dict)
else:
raise
else:
logger('training from scratch')
# adjust the learning rate according to the checkpoint
for epoch in range(start_epoch):
scheduler.step()
# train the model
epoch = start_epoch
while epoch < args.epochs:
train_obj, train_top1_acc, train_top5_acc = train(epoch, train_loader, model, criterion, optimizer, scheduler)
valid_obj, valid_top1_acc, valid_top5_acc = validate(epoch, val_loader, model, criterion, args)
is_best = False
if valid_top1_acc > best_top1_acc:
best_top1_acc = valid_top1_acc
is_best = True
utils.save_checkpoint({
'epoch': epoch,
'state_dict': model.state_dict(),
'best_top1_acc': best_top1_acc,
'optimizer' : optimizer.state_dict(),
}, is_best, args.job_dir)
epoch += 1
logger.info("=>Best accuracy {:.3f}".format(best_top1_acc))#
def train(epoch, train_loader, model, criterion, optimizer, scheduler):
batch_time = utils.AverageMeter('Time', ':6.3f')
data_time = utils.AverageMeter('Data', ':6.3f')
losses = utils.AverageMeter('Loss', ':.4e')
top1 = utils.AverageMeter('Acc@1', ':6.2f')
top5 = utils.AverageMeter('Acc@5', ':6.2f')
model.train()
end = time.time()
for param_group in optimizer.param_groups:
cur_lr = param_group['lr']
logger.info('learning_rate: ' + str(cur_lr))
num_iter = len(train_loader)
for i, (images, target) in enumerate(train_loader):
data_time.update(time.time() - end)
images = images.cuda()
target = target.cuda()
# compute outputy
logits = model(images)
loss = criterion(logits, target)
# measure accuracy and record loss
prec1, prec5 = utils.accuracy(logits, target, topk=(1, 5))
n = images.size(0)
losses.update(loss.item(), n) #accumulated loss
top1.update(prec1.item(), n)
top5.update(prec5.item(), n)
# compute gradient and do SGD step
optimizer.zero_grad()
loss.backward()
optimizer.step()
# measure elapsed time
batch_time.update(time.time() - end)
end = time.time()
if i % print_freq == 0:
logger.info(
'Epoch[{0}]({1}/{2}): '
'Loss {loss.avg:.4f} '
'Prec@1(1,5) {top1.avg:.2f}, {top5.avg:.2f}'.format(
epoch, i, num_iter, loss=losses,
top1=top1, top5=top5))
scheduler.step()
return losses.avg, top1.avg, top5.avg
def validate(epoch, val_loader, model, criterion, args):
batch_time = utils.AverageMeter('Time', ':6.3f')
losses = utils.AverageMeter('Loss', ':.4e')
top1 = utils.AverageMeter('Acc@1', ':6.2f')
top5 = utils.AverageMeter('Acc@5', ':6.2f')
# switch to evaluation mode
model.eval()
with torch.no_grad():
end = time.time()
for i, (images, target) in enumerate(val_loader):
images = images.cuda()
target = target.cuda()
# compute output
logits = model(images)
loss = criterion(logits, target)
# measure accuracy and record loss
pred1, pred5 = utils.accuracy(logits, target, topk=(1, 5))
n = images.size(0)
losses.update(loss.item(), n)
top1.update(pred1[0], n)
top5.update(pred5[0], n)
# measure elapsed time
batch_time.update(time.time() - end)
end = time.time()
logger.info(' * Acc@1 {top1.avg:.3f} Acc@5 {top5.avg:.3f}'
.format(top1=top1, top5=top5))
return losses.avg, top1.avg, top5.avg
if __name__ == '__main__':
main()