-
Notifications
You must be signed in to change notification settings - Fork 73
/
multi_label_classifier.py
323 lines (281 loc) · 12.5 KB
/
multi_label_classifier.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
import os
import sys
import time
import copy
import random
import logging
import numpy as np
import torch
print "Pytorch Version: ", torch.__version__
import torch.nn as nn
import torch.optim as optim
import torch.backends.cudnn as cudnn
from torch.autograd import Variable
from collections import OrderedDict, defaultdict
from data.loader import MultiLabelDataLoader
from models.model import load_model, save_model, modify_last_layer_lr
from options.options import Options
from util import util
from util.webvisualizer import WebVisualizer
def forward_batch(model, criterion, inputs, targets, opt, phase):
if opt.cuda:
inputs = inputs.cuda(opt.devices[0], async=True)
if phase in ["Train"]:
inputs_var = Variable(inputs, requires_grad=True)
#logging.info("Switch to Train Mode")
model.train()
elif phase in ["Validate", "Test"]:
inputs_var = Variable(inputs, volatile=True)
#logging.info("Switch to Test Mode")
model.eval()
# forward
if opt.cuda:
if len(opt.devices) > 1:
output = nn.parallel.data_parallel(model, inputs_var, opt.devices)
else:
output = model(inputs_var)
else:
output = model(inputs_var)
# calculate loss
target_vars = list()
for index in range(len(targets)):
if opt.cuda:
targets[index] = targets[index].cuda(opt.devices[0], async=True)
target_vars.append(Variable(targets[index]))
loss_list = list()
loss = Variable(torch.FloatTensor(1)).zero_()
if opt.cuda:
loss = loss.cuda(opt.devices[0])
for index in range(len(targets)):
sub_loss = criterion(output[index], target_vars[index])
loss_list.append(sub_loss.data[0])
loss += sub_loss
return output, loss, loss_list
def forward_dataset(model, criterion, data_loader, opt):
sum_batch = 0
accuracy = list()
avg_loss = list()
for i, data in enumerate(data_loader):
if opt.mode == "Train":
if random.random() > opt.validate_ratio:
continue
if opt.mode == "Test":
logging.info("test %s/%s image" %(i, len(data_loader)))
sum_batch += 1
inputs, targets = data
output, loss, loss_list = forward_batch(model, criterion, inputs, targets, opt, "Validate")
batch_accuracy = calc_accuracy(output, targets, opt.score_thres, opt.top_k)
# accumulate accuracy
if len(accuracy) == 0:
accuracy = copy.deepcopy(batch_accuracy)
for index, item in enumerate(batch_accuracy):
for k,v in item.iteritems():
accuracy[index][k]["ratio"] = v["ratio"]
else:
for index, item in enumerate(batch_accuracy):
for k,v in item.iteritems():
accuracy[index][k]["ratio"] += v["ratio"]
# accumulate loss
if len(avg_loss) == 0:
avg_loss = copy.deepcopy(loss_list)
else:
for index, loss in enumerate(loss_list):
avg_loss[index] += loss
# average on batches
for index, item in enumerate(accuracy):
for k,v in item.iteritems():
accuracy[index][k]["ratio"] /= float(sum_batch)
for index in range(len(avg_loss)):
avg_loss[index] /= float(sum_batch)
return accuracy, avg_loss
def calc_accuracy(outputs, targets, score_thres, top_k=(1,)):
max_k = max(top_k)
accuracy = []
thres_list = eval(score_thres)
if isinstance(thres_list, float) or isinstance(thres_list, int) :
thres_list = [eval(score_thres)]*len(targets)
for i in range(len(targets)):
target = targets[i]
output = outputs[i].data
batch_size = output.size(0)
curr_k = min(max_k, output.size(1))
top_value, index = output.cpu().topk(curr_k, 1)
index = index.t()
top_value = top_value.t()
correct = index.eq(target.cpu().view(1,-1).expand_as(index))
mask = (top_value>=thres_list[i])
correct = correct*mask
#print "masked correct: ", correct
res = defaultdict(dict)
for k in top_k:
k = min(k, output.size(1))
correct_k = correct[:k].view(-1).float().sum(0)[0]
res[k]["s"] = batch_size
res[k]["r"] = correct_k
res[k]["ratio"] = float(correct_k)/batch_size
accuracy.append(res)
return accuracy
def train(model, criterion, train_set, val_set, opt, labels=None):
# define web visualizer using visdom
webvis = WebVisualizer(opt)
# modify learning rate of last layer
finetune_params = modify_last_layer_lr(model.named_parameters(),
opt.lr, opt.lr_mult_w, opt.lr_mult_b)
# define optimizer
optimizer = optim.SGD(finetune_params,
opt.lr,
momentum=opt.momentum,
weight_decay=opt.weight_decay)
# define laerning rate scheluer
scheduler = optim.lr_scheduler.StepLR(optimizer,
step_size=opt.lr_decay_in_epoch,
gamma=opt.gamma)
if labels is not None:
rid2name, id2rid = labels
# record forward and backward times
train_batch_num = len(train_set)
total_batch_iter = 0
logging.info("####################Train Model###################")
for epoch in range(opt.sum_epoch):
epoch_start_t = time.time()
epoch_batch_iter = 0
logging.info('Begin of epoch %d' %(epoch))
for i, data in enumerate(train_set):
iter_start_t = time.time()
# train
inputs, targets = data
output, loss, loss_list = forward_batch(model, criterion, inputs, targets, opt, "Train")
optimizer.zero_grad()
loss.backward()
optimizer.step()
webvis.reset()
epoch_batch_iter += 1
total_batch_iter += 1
# display train loss and accuracy
if total_batch_iter % opt.display_train_freq == 0:
# accuracy
batch_accuracy = calc_accuracy(output, targets, opt.score_thres, opt.top_k)
util.print_loss(loss_list, "Train", epoch, total_batch_iter)
util.print_accuracy(batch_accuracy, "Train", epoch, total_batch_iter)
if opt.display_id > 0:
x_axis = epoch + float(epoch_batch_iter)/train_batch_num
# TODO support accuracy visualization of multiple top_k
plot_accuracy = [batch_accuracy[i][opt.top_k[0]] for i in range(len(batch_accuracy)) ]
accuracy_list = [item["ratio"] for item in plot_accuracy]
webvis.plot_points(x_axis, loss_list, "Loss", "Train")
webvis.plot_points(x_axis, accuracy_list, "Accuracy", "Train")
# display train data
if total_batch_iter % opt.display_data_freq == 0:
image_list = list()
show_image_num = int(np.ceil(opt.display_image_ratio * inputs.size()[0]))
for index in range(show_image_num):
input_im = util.tensor2im(inputs[index], opt.mean, opt.std)
class_label = "Image_" + str(index)
if labels is not None:
target_ids = [targets[i][index] for i in range(opt.class_num)]
rids = [id2rid[j][k] for j,k in enumerate(target_ids)]
class_label += "_"
class_label += "#".join([rid2name[j][k] for j,k in enumerate(rids)])
image_list.append((class_label, input_im))
image_dict = OrderedDict(image_list)
save_result = total_batch_iter % opt.update_html_freq
webvis.plot_images(image_dict, opt.display_id + 2*opt.class_num, epoch, save_result)
# validate and display validate loss and accuracy
if len(val_set) > 0 and total_batch_iter % opt.display_validate_freq == 0:
val_accuracy, val_loss = validate(model, criterion, val_set, opt)
x_axis = epoch + float(epoch_batch_iter)/train_batch_num
accuracy_list = [val_accuracy[i][opt.top_k[0]]["ratio"] for i in range(len(val_accuracy))]
util.print_loss(val_loss, "Validate", epoch, total_batch_iter)
util.print_accuracy(val_accuracy, "Validate", epoch, total_batch_iter)
if opt.display_id > 0:
webvis.plot_points(x_axis, val_loss, "Loss", "Validate")
webvis.plot_points(x_axis, accuracy_list, "Accuracy", "Validate")
# save snapshot
if total_batch_iter % opt.save_batch_iter_freq == 0:
logging.info("saving the latest model (epoch %d, total_batch_iter %d)" %(epoch, total_batch_iter))
save_model(model, opt, epoch)
# TODO snapshot loss and accuracy
logging.info('End of epoch %d / %d \t Time Taken: %d sec' %
(epoch, opt.sum_epoch, time.time() - epoch_start_t))
if epoch % opt.save_epoch_freq == 0:
logging.info('saving the model at the end of epoch %d, iters %d' %(epoch+1, total_batch_iter))
save_model(model, opt, epoch+1)
# adjust learning rate
scheduler.step()
lr = optimizer.param_groups[0]['lr']
logging.info('learning rate = %.7f epoch = %d' %(lr,epoch))
logging.info("--------Optimization Done--------")
def validate(model, criterion, val_set, opt):
return forward_dataset(model, criterion, val_set, opt)
def test(model, criterion, test_set, opt):
logging.info("####################Test Model###################")
test_accuracy, test_loss = forward_dataset(model, criterion, test_set, opt)
logging.info("data_dir: " + opt.data_dir + "/TestSet/")
logging.info("score_thres:"+ str(opt.score_thres))
for index, item in enumerate(test_accuracy):
logging.info("Attribute %d:" %(index))
for top_k, value in item.iteritems():
logging.info("----Accuracy of Top%d: %f" %(top_k, value["ratio"]))
logging.info("#################Finished Testing################")
def main():
# parse options
op = Options()
opt = op.parse()
# initialize train or test working dir
trainer_dir = "trainer_" + opt.name
opt.model_dir = os.path.join(opt.dir, trainer_dir, "Train")
opt.data_dir = os.path.join(opt.dir, trainer_dir, "Data")
opt.test_dir = os.path.join(opt.dir, trainer_dir, "Test")
if not os.path.exists(opt.data_dir):
os.makedirs(opt.data_dir)
if opt.mode == "Train":
if not os.path.exists(opt.model_dir):
os.makedirs(opt.model_dir)
log_dir = opt.model_dir
log_path = log_dir + "/train.log"
if opt.mode == "Test":
if not os.path.exists(opt.test_dir):
os.makedirs(opt.test_dir)
log_dir = opt.test_dir
log_path = log_dir + "/test.log"
# save options to disk
util.opt2file(opt, log_dir+"/opt.txt")
# log setting
log_format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
formatter = logging.Formatter(log_format)
fh = logging.FileHandler(log_path, 'a')
fh.setFormatter(formatter)
ch = logging.StreamHandler()
ch.setFormatter(formatter)
logging.getLogger().addHandler(fh)
logging.getLogger().addHandler(ch)
log_level = logging.INFO
logging.getLogger().setLevel(log_level)
# load train or test data
data_loader = MultiLabelDataLoader(opt)
if opt.mode == "Train":
train_set = data_loader.GetTrainSet()
val_set = data_loader.GetValSet()
elif opt.mode == "Test":
test_set = data_loader.GetTestSet()
num_classes = data_loader.GetNumClasses()
rid2name = data_loader.GetRID2Name()
id2rid = data_loader.GetID2RID()
opt.class_num = len(num_classes)
# load model
model = load_model(opt, num_classes)
# define loss function
criterion = nn.CrossEntropyLoss(weight=opt.loss_weight)
# use cuda
if opt.cuda:
model = model.cuda(opt.devices[0])
criterion = criterion.cuda(opt.devices[0])
cudnn.benchmark = True
# Train model
if opt.mode == "Train":
train(model, criterion, train_set, val_set, opt, (rid2name, id2rid))
# Test model
elif opt.mode == "Test":
test(model, criterion, test_set, opt)
if __name__ == "__main__":
main()