-
Notifications
You must be signed in to change notification settings - Fork 62
/
test_region_set.py
236 lines (188 loc) · 11.1 KB
/
test_region_set.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
from speaksee.data import TextField, ImageDetectionsField
from data import COCOControlSetField, FlickrDetectionField, FlickrControlSetField
from data.dataset import COCOEntities, FlickrEntities
from models import ControllableCaptioningModel
from models import ControllableCaptioningModel_NoVisualSentinel, ControllableCaptioningModel_SingleSentinel
from speaksee.data import DataLoader, DictionaryDataset, RawField
from speaksee.evaluation import Bleu, Meteor, Rouge, Cider, Spice
from speaksee.evaluation import PTBTokenizer
from utils import NounIoU
from utils import SinkhornNet
from config import *
import torch
import random
import numpy as np
import itertools
import argparse
import os
import munkres
from tqdm import tqdm
random.seed(1234)
torch.manual_seed(1234)
device = torch.device('cuda')
parser = argparse.ArgumentParser()
parser.add_argument('--exp_name', default='ours', type=str,
help='model name: ours | ours_without_visual_sentinel | ours_with_single_sentinel')
parser.add_argument('--dataset', default='coco', type=str, help='dataset: coco | flickr')
parser.add_argument('--sample_rl', action='store_true', help='test the model with cider optimization')
parser.add_argument('--sample_rl_nw', action='store_true', help='test the model with cider + nw optimization')
parser.add_argument('--batch_size', default=16, type=int, help='batch size')
parser.add_argument('--nb_workers', default=0, type=int, help='number of workers')
opt_test = parser.parse_args()
print(opt_test)
assert(opt_test.exp_name in ['ours', 'ours_without_visual_sentinel', 'ours_with_single_sentinel'])
if not opt_test.sample_rl and not opt_test.sample_rl_nw:
exp_name ='%s_%s' % (opt_test.exp_name, opt_test.dataset)
print('Loading \"%s\" model trained with cross-entropy loss.' % opt_test.exp_name)
if opt_test.sample_rl:
exp_name = '%s_%s_%s' % (opt_test.exp_name, opt_test.dataset, 'rl')
print('Loading \"%s\" model trained with CIDEr optimization.' % opt_test.exp_name)
if opt_test.sample_rl_nw:
exp_name = '%s_%s_%s' % (opt_test.exp_name, opt_test.dataset, 'rl_nw')
print('Loading \"%s\" model trained with CIDEr + NW optimization.' % opt_test.exp_name)
saved_data = torch.load('saved_models/%s/%s.pth' % (opt_test.exp_name, exp_name))
opt = saved_data['opt']
saved_data_sinkhorn = torch.load('saved_models/sinkhorn_network/sinkhorn_network_%s.pth' % opt_test.dataset)
opt_sinkhorn = saved_data_sinkhorn['opt']
if opt_test.dataset == 'coco':
image_field = ImageDetectionsField(detections_path=os.path.join(coco_root, 'coco_detections.hdf5'), load_in_tmp=False)
det_field = COCOControlSetField(detections_path=os.path.join(coco_root, 'coco_detections.hdf5'),
classes_path=os.path.join(coco_root, 'object_class_list.txt'),
img_shapes_path=os.path.join(coco_root, 'coco_img_shapes.json'),
precomp_glove_path=os.path.join(coco_root, 'object_class_glove.pkl'),
fix_length=opt_sinkhorn.max_len, max_detections=20)
text_field = TextField(init_token='<bos>', eos_token='<eos>', lower=True, remove_punctuation=True, fix_length=20)
dataset = COCOEntities(image_field, det_field, text_field,
img_root='',
ann_root=os.path.join(coco_root, 'annotations'),
entities_file=os.path.join(coco_root, 'coco_entities.json'),
id_root=os.path.join(coco_root, 'annotations'))
test_dataset = COCOEntities(image_field, det_field, RawField(),
img_root='',
ann_root=os.path.join(coco_root, 'annotations'),
entities_file=os.path.join(coco_root, 'coco_entities.json'),
id_root=os.path.join(coco_root, 'annotations'),
filtering=True)
noun_iou = NounIoU(pre_comp_file=os.path.join(coco_root, '%s_noun_glove.pkl' % opt_test.dataset))
elif opt_test.dataset == 'flickr':
image_field = FlickrDetectionField(detections_path=os.path.join(flickr_root, 'flickr30k_detections.hdf5'))
det_field = FlickrControlSetField(detections_path=os.path.join(flickr_root, 'flickr30k_detections.hdf5'),
classes_path=os.path.join(flickr_root, 'object_class_list.txt'),
img_shapes_path=os.path.join(flickr_root, 'flickr_img_shapes.json'),
precomp_glove_path=os.path.join(flickr_root, 'object_class_glove.pkl'),
fix_length=opt_sinkhorn.max_len)
text_field = TextField(init_token='<bos>', eos_token='<eos>', lower=True, remove_punctuation=True, fix_length=20)
dataset = FlickrEntities(image_field, text_field, det_field,
img_root='',
ann_file=os.path.join(flickr_root, 'flickr30k_annotations.json'),
entities_root=flickr_entities_root)
test_dataset = FlickrEntities(image_field, RawField(), det_field,
img_root='',
ann_file=os.path.join(flickr_root, 'flickr30k_annotations.json'),
entities_root=flickr_entities_root)
noun_iou = NounIoU(pre_comp_file=os.path.join(flickr_root, '%s_noun_glove.pkl' % opt_test.dataset))
else:
raise NotImplementedError
train_dataset, val_dataset, _ = dataset.splits
text_field.build_vocab(train_dataset, val_dataset, min_freq=5)
sinkhorn_net = SinkhornNet(opt_sinkhorn.max_len, opt_sinkhorn.n_iters, opt_sinkhorn.tau).to(device)
if opt_test.exp_name == 'ours':
model = ControllableCaptioningModel(20, len(text_field.vocab), text_field.vocab.stoi['<bos>'],
h2_first_lstm=opt.h2_first_lstm, img_second_lstm=opt.img_second_lstm).to(device)
elif opt_test.exp_name == 'ours_without_visual_sentinel':
model = ControllableCaptioningModel_NoVisualSentinel(20, len(text_field.vocab), text_field.vocab.stoi['<bos>'],
h2_first_lstm=opt.h2_first_lstm,
img_second_lstm=opt.img_second_lstm).to(device)
elif opt_test.exp_name == 'ours_with_single_sentinel':
model = ControllableCaptioningModel_SingleSentinel(20, len(text_field.vocab), text_field.vocab.stoi['<bos>'],
h2_first_lstm=opt.h2_first_lstm,
img_second_lstm=opt.img_second_lstm).to(device)
else:
raise NotImplementedError
_, _, test_dataset = test_dataset.splits
test_dataset = DictionaryDataset(test_dataset.examples, test_dataset.fields, 'image')
dataloader_test = DataLoader(test_dataset, batch_size=opt_test.batch_size, num_workers=opt_test.nb_workers)
model.eval()
model.load_state_dict(saved_data['state_dict'])
sinkhorn_net.eval()
sinkhorn_net.load_state_dict(saved_data_sinkhorn['state_dict'])
predictions = []
gt_captions = []
max_len = 20
with tqdm(desc='Test', unit='it', total=len(iter(dataloader_test))) as pbar:
for it, (keys, values) in enumerate(iter(dataloader_test)):
detections = keys
det_seqs_txt, det_seqs_vis, det_seqs_pos, det_seqs_all, captions = values
for i in range(detections.size(0)):
det_seqs_all_i = det_seqs_all[i].numpy()
if opt_test.dataset == 'coco':
det_seqs_all_sum = np.sum(np.abs(det_seqs_all_i), axis=-1)
elif opt_test.dataset == 'flickr':
det_seqs_all_sum = np.sum(np.abs(det_seqs_vis[i].numpy()), axis=-1)
else:
raise NotImplementedError
_, unique_indices, unique_inverse = np.unique(det_seqs_all_sum, axis=0, return_index=True, return_inverse=True)
det_seqs_vis_unique = det_seqs_vis[i][unique_indices]
det_seqs_txt_unique = det_seqs_txt[i][unique_indices]
det_seqs_pos_unique = det_seqs_pos[i][unique_indices]
det_seqs_all_unique = det_seqs_all_i[unique_indices]
this_captions = [[captions[i][ii] for ii in range(len(unique_inverse)) if unique_inverse[ii] == jj] for jj in range(det_seqs_all_unique.shape[0])]
det_seqs_perm = torch.cat((det_seqs_txt_unique, det_seqs_vis_unique, det_seqs_pos_unique), dim=-1).to(device)
matrices = sinkhorn_net(det_seqs_perm)
matrices = torch.transpose(matrices, 1, 2)
if isinstance(matrices, torch.Tensor):
matrices = matrices.detach().cpu().numpy()
m = munkres.Munkres()
det_seqs_recons = np.zeros(det_seqs_all_unique.shape)
for j, matrix in enumerate(matrices):
seqs = []
ass = m.compute(munkres.make_cost_matrix(matrix))
perm_matrix = np.zeros_like(matrix)
for a in ass:
perm_matrix[a] = 1
perm = np.reshape(det_seqs_all_unique[j], (det_seqs_all_unique.shape[1], -1))
recons = np.dot(perm_matrix, perm)
recons = np.reshape(recons, det_seqs_all_unique.shape[1:])
recons = recons[np.sum(recons, (1, 2)) != 0]
last = recons.shape[0] - 1
det_seqs_recons[j, :recons.shape[0]] = recons
det_seqs_recons[:, last + 1:] = recons[last:last+1]
detections_i, det_seqs_recons = detections[i].to(device), torch.tensor(det_seqs_recons).float().to(device)
detections_i = detections_i.unsqueeze(0).expand(det_seqs_recons.size(0), detections_i.size(0), detections_i.size(1))
out, _ = model.beam_search((detections_i, det_seqs_recons), eos_idxs=[text_field.vocab.stoi['<eos>'], -1],
beam_size=5, out_size=1)
out = out[0].data.cpu().numpy()
for o, caps in zip(out, this_captions):
predictions.append(np.expand_dims(o, axis=0))
gt_captions.append(caps)
pbar.update()
predictions = np.concatenate(predictions, axis=0)
gen = {}
gts = {}
scores_iou = []
print("Computing set contrallabity results.")
for i, cap in enumerate(predictions):
pred_cap = text_field.decode(cap, join_words=False)
pred_cap = ' '.join([k for k, g in itertools.groupby(pred_cap)])
gts[i] = gt_captions[i]
gen[i] = [pred_cap]
score_iou = 0.
for c in gt_captions[i]:
score = noun_iou.score(c, pred_cap)
score_iou += score
scores_iou.append(score_iou / len(gt_captions[i]))
gts_t = PTBTokenizer.tokenize(gts)
gen_t = PTBTokenizer.tokenize(gen)
val_bleu, _ = Bleu(n=4).compute_score(gts_t, gen_t)
method = ['Blue_1', 'Bleu_2', 'Bleu_3', 'Bleu_4']
for metric, score in zip(method, val_bleu):
print(metric, score)
val_meteor, _ = Meteor().compute_score(gts_t, gen_t)
print('METEOR', val_meteor)
val_rouge, _ = Rouge().compute_score(gts_t, gen_t)
print('ROUGE_L', val_rouge)
val_cider, _ = Cider().compute_score(gts_t, gen_t)
print('CIDEr', val_cider)
val_spice, _ = Spice().compute_score(gts_t, gen_t)
print('SPICE', val_spice)
print('Noun IoU', np.mean(scores_iou))