-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathevaluation.py
442 lines (384 loc) · 16.5 KB
/
evaluation.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
from __future__ import print_function
import os
import pickle
import time
import logging
import numpy
from data import get_test_loader
import time
import numpy as np
from vocab import Vocabulary # NOQA
import torch
from model import CAMP, attention_sim
from collections import OrderedDict
import torch.distributed as dist
from torch.utils.data.distributed import DistributedSampler
from torch.autograd import Variable
import torch.backends.cudnn as cudnn
from model import max_length
class AverageMeter(object):
"""Computes and stores the average and current value"""
def __init__(self):
self.reset()
def reset(self):
self.val = 0
self.avg = 0
self.sum = 0
self.count = 0
def update(self, val, n=0):
self.val = val
self.sum += val * n
self.count += n
self.avg = self.sum / (.0001 + self.count)
def __str__(self):
"""String representation for logging
"""
# for values that should be recorded exactly e.g. iteration number
if self.count == 0:
return str(self.val)
# for stats
return '%.4f (%.4f)' % (self.val, self.avg)
class LogCollector(object):
"""A collection of logging objects that can change from train to val"""
def __init__(self):
# to keep the order of logged variables deterministic
self.meters = OrderedDict()
def update(self, k, v, n=0):
# create a new meter if previously not recorded
if k not in self.meters:
self.meters[k] = AverageMeter()
self.meters[k].update(v, n)
def __str__(self):
"""Concatenate the meters in one log line
"""
s = ''
for i, (k, v) in enumerate(self.meters.items()): # drop iter
if i > 0:
s += ' '
s += k + ' ' + str(v)
return s
def tb_log(self, tb_logger, prefix='', step=None):
"""Log using tensorboard
"""
for k, v in self.meters.items(): # drop iter
tb_logger.log_value(prefix + k, v.val, step=step)
def encode_data(model, data_loader, log_step=10, logging=print):
"""Encode all images and captions loadable by `data_loader`
"""
batch_time = AverageMeter()
val_logger = LogCollector()
# switch to evaluate mode
model.val_start()
end = time.time()
# numpy array to keep all the embeddings
img_embs = None
cap_embs = None
cap_masks = None
print("start loading val data...")
for i, (images, captions, lengths, ids, img_ids) in enumerate(data_loader):
# make sure val logger is used
model.logger = val_logger
# compute the embeddings
img_emb, cap_emb = model.forward_emb(images, captions, lengths,
volatile=True)
# logging("forward finish!")
# initialize the numpy arrays given the size of the embeddings
if img_embs is None:
if model.opt.cross_model:
img_embs = np.zeros((len(data_loader.dataset), img_emb.size(1), img_emb.size(2)))
cap_embs = np.zeros((len(data_loader.dataset), max_length+3, cap_emb.size(2)))
cap_masks = np.zeros((len(data_loader.dataset), max_length+3), dtype=int)
else:
img_embs = np.zeros((len(data_loader.dataset), img_emb.size(1)))
if model.opt.measure == "attention":
#cap_embs = np.zeros((len(data_loader.dataset), max_length+3, cap_emb.size(2)))
cap_embs = np.zeros((len(data_loader.dataset), cap_emb.size(1)))
else:
cap_embs = np.zeros((len(data_loader.dataset), cap_emb.size(1)))
# preserve the embeddings by copying from gpu and converting to numpy
img_embs[ids] = img_emb.data.cpu().numpy().copy()
cap_embs[ids] = cap_emb.data.cpu().numpy().copy()
l_list = [int(l_now) for l_now in lengths]
cur_mask = np.zeros((lengths.size(0), max_length+3), dtype=int)
for mask_idx, mask_l in enumerate(l_list):
cur_mask[mask_idx, :mask_l] = 1
cap_masks[ids] = cur_mask
# measure accuracy and record loss
# model.forward_loss(img_emb, cap_emb)
# measure elapsed time
batch_time.update(time.time() - end)
end = time.time()
if i % log_step == 0:
logging('Test: [{0}/{1}]\t'
'{e_log}\t'
'Time {batch_time.val:.3f} ({batch_time.avg:.3f})\t'
.format(
i, len(data_loader), batch_time=batch_time,
e_log="Unavailable"))
del images, captions
return img_embs, cap_embs, cap_masks
def evalrank(model_path, data_path=None, split='dev', fold5=False, return_ranks=False):
"""
Evaluate a trained model on either dev or test. If `fold5=True`, 5 fold
cross-validation is done (only for MSCOCO). Otherwise, the full data is
used for evaluation.
"""
# load model and options
logging.basicConfig(format='%(asctime)s %(message)s', level=logging.INFO)
checkpoint = torch.load(model_path)
opt = checkpoint['opt']
if data_path is not None:
opt.data_path = data_path
# load vocabulary used by the model
vocab = pickle.load(open(os.path.join(
opt.vocab_path, '%s_vocab.pkl' % opt.data_name), 'rb'))
opt.vocab_size = len(vocab)
opt.distributed = False
opt.use_all = True
opt.instance_loss = False
opt.attention = False
print(opt)
# construct model
model = VSE(opt)
if "cnn.classifier.1.weight" in checkpoint['model'][0]:
checkpoint['model'][0]["cnn.classifier.0.weight"] = checkpoint['model'][0].pop("cnn.classifier.1.weight")
checkpoint['model'][0]["cnn.classifier.0.bias"] = checkpoint['model'][0].pop("cnn.classifier.1.bias")
checkpoint['model'][0]["cnn.classifier.3.weight"] = checkpoint['model'][0].pop("cnn.classifier.4.weight")
checkpoint['model'][0]["cnn.classifier.3.bias"] = checkpoint['model'][0].pop("cnn.classifier.4.bias")
# load model state
model.load_state_dict(checkpoint['model'])
print('Loading dataset')
data_loader = get_test_loader(split, opt.data_name, vocab, opt.crop_size,
opt.batch_size, opt.workers, opt)
print('Computing results...')
img_embs, cap_embs = encode_data(model, data_loader)
print('Images: %d, Captions: %d' %
(img_embs.shape[0] / 5, cap_embs.shape[0]))
if not fold5:
# no cross-validation, full evaluation
r, rt = i2t(img_embs, cap_embs, measure=opt.measure, return_ranks=True)
ri, rti = t2i(img_embs, cap_embs,
measure=opt.measure, return_ranks=True)
ar = (r[0] + r[1] + r[2]) / 3
ari = (ri[0] + ri[1] + ri[2]) / 3
rsum = r[0] + r[1] + r[2] + ri[0] + ri[1] + ri[2]
print("rsum: %.1f" % rsum)
print("Average i2t Recall: %.1f" % ar)
print("Image to text: %.1f %.1f %.1f %.1f %.1f" % r)
print("Average t2i Recall: %.1f" % ari)
print("Text to image: %.1f %.1f %.1f %.1f %.1f" % ri)
else:
# 5fold cross-validation, only for MSCOCO
results = []
for i in range(5):
r, rt0 = i2t(img_embs[i * 5000:(i + 1) * 5000],
cap_embs[i * 5000:(i + 1) *
5000], measure=opt.measure,
return_ranks=True)
print("Image to text: %.1f, %.1f, %.1f, %.1f, %.1f" % r)
ri, rti0 = t2i(img_embs[i * 5000:(i + 1) * 5000],
cap_embs[i * 5000:(i + 1) *
5000], measure=opt.measure,
return_ranks=True)
if i == 0:
rt, rti = rt0, rti0
print("Text to image: %.1f, %.1f, %.1f, %.1f, %.1f" % ri)
ar = (r[0] + r[1] + r[2]) / 3
ari = (ri[0] + ri[1] + ri[2]) / 3
rsum = r[0] + r[1] + r[2] + ri[0] + ri[1] + ri[2]
print("rsum: %.1f ar: %.1f ari: %.1f" % (rsum, ar, ari))
results += [list(r) + list(ri) + [ar, ari, rsum]]
print("-----------------------------------")
print("Mean metrics: ")
mean_metrics = tuple(np.array(results).mean(axis=0).flatten())
print("rsum: %.1f" % (mean_metrics[10] * 6))
print("Average i2t Recall: %.1f" % mean_metrics[11])
print("Image to text: %.1f %.1f %.1f %.1f %.1f" %
mean_metrics[:5])
print("Average t2i Recall: %.1f" % mean_metrics[12])
print("Text to image: %.1f %.1f %.1f %.1f %.1f" %
mean_metrics[5:10])
if return_ranks:
return rt, rti
def i2t(images, captions, masks, npts=None, measure='cosine', return_ranks=False,
model=None):
"""
Images->Text (Image Annotation)
Images: (5N, K) matrix of images
Captions: (5N, K) matrix of captions
"""
if npts is None:
npts = images.shape[0] // 5
index_list = []
gv1_list = []
gv2_list = []
ranks = numpy.zeros(npts)
top1 = numpy.zeros(npts)
score_matrix = numpy.zeros((images.shape[0] // 5, captions.shape[0]))
for index in range(npts):
# Get query image
if model.opt.cross_model:
im = images[5 * index].reshape(1, images.shape[1], images.shape[2])
else:
im = images[5 * index].reshape(1, images.shape[1])
# Compute scores
if measure == 'attention':
bs = 5
if index % bs == 0:
# print ('['+str(index)+'/'+str(npts)+']')
mx = min(images.shape[0], 5 * (index + bs))
im2 = images[5 * index:mx:5]
d2 = attention_sim(Variable(torch.Tensor(im2)).cuda(),
Variable(torch.Tensor(captions)).cuda())
d2 = d2.data.cpu().numpy()
d = d2[index % bs]
elif 'cross_attention' in measure:
bs = 10
if index % bs == 0:
#print ('['+str(index)+'/'+str(npts)+']')
mx = min(images.shape[0], 5 * (index + bs))
im2 = images[5 * index:mx:5]
d2 = model.criterion(Variable(torch.Tensor(im2)).cuda(),
Variable(torch.Tensor(captions)).cuda(),
True, keep="regions",
mask=Variable(torch.ByteTensor(masks)).cuda())
d2 = d2.data.cpu().numpy()
d = d2[index % bs]
elif 'gate_fusion' in measure:
bs = 5
if index % bs == 0:
if index % 50 == 0:
print ('['+str(index)+'/'+str(npts)+']')
mx = min(images.shape[0], 5 * (index + bs))
im2 = images[5 * index:mx:5]
tt1 = time.time()
d2 = model.criterion(Variable(torch.Tensor(im2)).cuda(),
Variable(torch.Tensor(captions)).cuda(),
True, keep="regions",
mask=Variable(torch.ByteTensor(masks)).cuda())
tt2 = time.time()
d2 = d2.data.cpu().numpy()
d = d2[index % bs]
elif measure == 'cosine':
bs = 5
if index % bs == 0:
# print ('['+str(index)+'/'+str(npts)+']')
mx = min(images.shape[0], 5 * (index + bs))
im2 = images[5 * index:mx:5]
d2 = model.criterion(Variable(torch.Tensor(im2)).cuda(),
Variable(torch.Tensor(captions)).cuda(),
True, keep="regions")
d2 = d2.data.cpu().numpy()
d = d2[index % bs]
else:
d = numpy.dot(im, captions.T).flatten()
inds = numpy.argsort(d)[::-1]
index_list.append(inds[0])
score_matrix[index] = d
# Score
rank = 1e20
for i in range(5 * index, 5 * index + 5, 1):
tmp = numpy.where(inds == i)[0][0]
if tmp < rank:
rank = tmp
ranks[index] = rank
top1[index] = inds[0]
#i2t
stat_num = 0
minnum_rank_image = np.array([1e7]*npts)
for i in range(npts):
cur_rank = np.argsort(score_matrix[i])[::-1]
for index, j in enumerate(cur_rank):
if j in range(5*i, 5*i+5):
stat_num += 1
minnum_rank_image[i] = index
break
print ("i2t stat num:", stat_num)
i2t_r1 = 100.0 * len(numpy.where(minnum_rank_image<1)[0]) / len(minnum_rank_image)
i2t_r5 = 100.0 * len(numpy.where(minnum_rank_image<5)[0]) / len(minnum_rank_image)
i2t_r10 = 100.0 * len(numpy.where(minnum_rank_image<10)[0]) / len(minnum_rank_image)
i2t_medr = numpy.floor(numpy.median(minnum_rank_image)) + 1
i2t_meanr = minnum_rank_image.mean() + 1
#print("i2t results:", i2t_r1, i2t_r5, i2t_r10, i2t_medr, i2t_meanr)
#t2i
stat_num = 0
score_matrix = score_matrix.transpose()
minnum_rank_caption = np.array([1e7]*npts*5)
for i in range(5*npts):
img_id = i // 5
cur_rank = np.argsort(score_matrix[i])[::-1]
for index, j in enumerate(cur_rank):
if j == img_id:
stat_num += 1
minnum_rank_caption[i] = index
break
print ("t2i stat num:", stat_num)
t2i_r1 = 100.0 * len(numpy.where(minnum_rank_caption<1)[0]) / len(minnum_rank_caption)
t2i_r5 = 100.0 * len(numpy.where(minnum_rank_caption<5)[0]) / len(minnum_rank_caption)
t2i_r10 = 100.0 * len(numpy.where(minnum_rank_caption<10)[0]) / len(minnum_rank_caption)
t2i_medr = numpy.floor(numpy.median(minnum_rank_caption)) + 1
t2i_meanr = minnum_rank_caption.mean() + 1
# print("t2i results:", t2i_r1, t2i_r5, t2i_r10, t2i_medr, t2i_meanr)
# Compute metrics
r1 = 100.0 * len(numpy.where(ranks < 1)[0]) / len(ranks)
r5 = 100.0 * len(numpy.where(ranks < 5)[0]) / len(ranks)
r10 = 100.0 * len(numpy.where(ranks < 10)[0]) / len(ranks)
medr = numpy.floor(numpy.median(ranks)) + 1
meanr = ranks.mean() + 1
if return_ranks:
return (i2t_r1, i2t_r5, i2t_r10, i2t_medr, i2t_meanr), (t2i_r1, t2i_r5, t2i_r10, t2i_medr, t2i_meanr), score_matrix
else:
return (i2t_r1, i2t_r5, i2t_r10, i2t_medr, i2t_meanr), (t2i_r1, t2i_r5, t2i_r10, t2i_medr, t2i_meanr)
def t2i(images, captions, npts=None, measure='cosine', return_ranks=False,
model=None):
"""
Text->Images (Image Search)
Images: (5N, K) matrix of images
Captions: (5N, K) matrix of captions
"""
if npts is None:
npts = images.shape[0] // 5
ims = numpy.array([images[i] for i in range(0, len(images), 5)])
ranks = numpy.zeros(5 * npts)
top1 = numpy.zeros(5 * npts)
for index in range(npts):
# Get query captions
queries = captions[5 * index:5 * index + 5]
# Compute scores
if measure == 'attention':
bs = 5
if 5 * index % bs == 0:
mx = min(captions.shape[0], 5 * index + bs)
q2 = captions[5 * index:mx]
d2 = attention_sim(Variable(torch.Tensor(ims)).cuda(),
Variable(torch.Tensor(q2)).cuda())
d2 = d2.data.cpu().numpy()
d = d2[:, (5 * index) % bs:(5 * index) % bs + 5].T
elif measure == 'fusion':
bs = 25
if 5 * index % bs == 0:
print ('['+str(index)+'/'+str(npts)+']')
mx = min(captions.shape[0], 5 * index + bs)
q2 = captions[5 * index:mx]
d2 = model.criterion(Variable(torch.Tensor(ims)).cuda(),
Variable(torch.Tensor(q2)).cuda(),
True, keep="words")
d2 = d2.data.cpu().numpy()
d = d2[:, (5 * index) % bs:(5 * index) % bs + 5].T
else:
d = numpy.dot(queries, ims.T)
inds = numpy.zeros(d.shape)
for i in range(len(inds)):
inds[i] = numpy.argsort(d[i])[::-1]
ranks[5 * index + i] = numpy.where(inds[i] == index)[0][0]
top1[5 * index + i] = inds[i][0]
# Compute metrics
r1 = 100.0 * len(numpy.where(ranks < 1)[0]) / len(ranks)
r5 = 100.0 * len(numpy.where(ranks < 5)[0]) / len(ranks)
r10 = 100.0 * len(numpy.where(ranks < 10)[0]) / len(ranks)
medr = numpy.floor(numpy.median(ranks)) + 1
meanr = ranks.mean() + 1
if return_ranks:
return (r1, r5, r10, medr, meanr), (ranks, top1)
else:
return (r1, r5, r10, medr, meanr)