-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils_upt.py
416 lines (359 loc) · 15.2 KB
/
utils_upt.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
import os
import torch
import pickle
import numpy as np
import scipy.io as sio
from tqdm import tqdm
from collections import defaultdict
from torch.utils.data import Dataset
from vcoco.vcoco import VCOCO
from hicodet.hicodet import HICODet
import pocket
from pocket.core import DistributedLearningEngine
from pocket.utils import DetectionAPMeter, HandyTimer, BoxPairAssociation, all_gather
import sys
sys.path.append('detr')
import datasets.transforms as T
def custom_collate(batch):
images = []
targets = []
for im, tar in batch:
images.append(im)
targets.append(tar)
return images, targets
class DataFactory(Dataset):
def __init__(self, name, partition, data_root):
if name not in ['hicodet', 'vcoco']:
raise ValueError("Unknown dataset ", name)
if name == 'hicodet':
assert partition in ['train2015', 'test2015'], \
"Unknown HICO-DET partition " + partition
self.dataset = HICODet(
root=os.path.join(data_root, 'hico_20160224_det/images', partition),
anno_file=os.path.join(data_root, 'instances_{}.json'.format(partition)),
target_transform=pocket.ops.ToTensor(input_format='dict')
)
else:
assert partition in ['train', 'val', 'trainval', 'test'], \
"Unknown V-COCO partition " + partition
image_dir = dict(
train='mscoco2014/train2014',
val='mscoco2014/train2014',
trainval='mscoco2014/train2014',
test='mscoco2014/val2014'
)
self.dataset = VCOCO(
root=os.path.join(data_root, image_dir[partition]),
anno_file=os.path.join(data_root, 'instances_vcoco_{}.json'.format(partition)
), target_transform=pocket.ops.ToTensor(input_format='dict')
)
# Prepare dataset transforms
normalize = T.Compose([
T.ToTensor(),
T.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
])
scales = [480, 512, 544, 576, 608, 640, 672, 704, 736, 768, 800]
if partition.startswith('train'):
self.transforms = T.Compose([
T.RandomHorizontalFlip(),
T.ColorJitter(.4, .4, .4),
T.RandomSelect(
T.RandomResize(scales, max_size=1333),
T.Compose([
T.RandomResize([400, 500, 600]),
T.RandomSizeCrop(384, 600),
T.RandomResize(scales, max_size=1333),
])
), normalize,
])
else:
self.transforms = T.Compose([
T.RandomResize([800], max_size=1333),
normalize,
])
self.name = name
def __len__(self):
return len(self.dataset)
def __getitem__(self, i):
image, target = self.dataset[i]
if self.name == 'hicodet':
target['labels'] = target['verb']
# Convert ground truth boxes to zero-based index and the
# representation from pixel indices to coordinates
target['boxes_h'][:, :2] -= 1
target['boxes_o'][:, :2] -= 1
else:
target['labels'] = target['actions']
target['object'] = target.pop('objects')
image, target = self.transforms(image, target)
return image, target
class CacheTemplate(defaultdict):
"""A template for VCOCO cached results """
def __init__(self, **kwargs):
super().__init__()
for k, v in kwargs.items():
self[k] = v
def __missing__(self, k):
seg = k.split('_')
# Assign zero score to missing actions
if seg[-1] == 'agent':
return 0.
# Assign zero score and a tiny box to missing <action,role> pairs
else:
return [0., 0., .1, .1, 0.]
class CustomisedDLE(DistributedLearningEngine):
def __init__(self, net, dataloader, val_loader, max_norm=0, num_classes=117, **kwargs):
super().__init__(net, None, dataloader, **kwargs)
self.max_norm = max_norm
self.num_classes = num_classes
self.val_loader = val_loader
self.meter = DetectionAPMeter(self.num_classes, algorithm='11P')
self.n_epoch = 0
self.n_iter = 0
def distance_scale_scores(self, scores, labels, boxes_h, boxes_o, image_shape, args):
def scale_box(box, image_shape): # scale box to 0 ~ 1
h, w = image_shape
box[:, 0] /= w
box[:, 1] /= h
box[:, 2] /= w
box[:, 3] /= h
return box
score_thres = args.score_thres
dist_thres = args.dist_thres
dist_scaler = args.dist_scaler
# dist_thres * dist scaler should > 1
boxes_h = scale_box(boxes_h.clone(), image_shape)
boxes_o = scale_box(boxes_o.clone(), image_shape)
dist = (boxes_h - boxes_o).pow(2).sum(dim=-1).sqrt()
scaler = torch.ones_like(scores)
scale_index = torch.nonzero(torch.logical_and(scores > score_thres, dist > dist_thres))
scaler[scale_index] = dist[scale_index] * dist_scaler
pos_index = torch.where(labels > 0)[0]
scores = (scores * scaler).clamp(min=0., max=1.)
return scores
@torch.no_grad()
def test_hico(self, dataloader, args):
net = self._state.net
net.eval()
attn_map_list = []
boxes_h_list = []
boxes_o_list = []
label_list = []
dataset = dataloader.dataset.dataset
associate = BoxPairAssociation(min_iou=0.5)
conversion = torch.from_numpy(np.asarray(
dataset.object_n_verb_to_interaction, dtype=float
))
meter = DetectionAPMeter(
600, nproc=1,
num_gt=dataset.anno_interaction,
algorithm='11P'
)
scores_list = []; interactions_list = []
labels_list = []; shapes_list = []
boxesh_list = []; boxeso_list = []
objlabel_list = []
for i, batch in enumerate(tqdm(dataloader)):
inputs = pocket.ops.relocate_to_cuda(batch[0])
output = net(inputs)
# Skip images without detections
if output is None or len(output) == 0:
continue
# Batch size is fixed as 1 for inference
assert len(output) == 1, f"Batch size is not 1 but {len(output)}."
output = pocket.ops.relocate_to_cpu(output[0], ignore=True)
target = batch[-1][0]
# Format detections
boxes = output['boxes']
boxes_h, boxes_o = boxes[output['pairing']].unbind(0) # npair x 4 , npair x 4, unscaled, for each H-O pair
objects = output['objects']
scores = output['scores'] # npair
verbs = output['labels'] # verb index: npair
interactions = conversion[objects, verbs]
# print(objects)
attn_map_list.append(output['attn_maps'])
# Recover target box scale
gt_bx_h = net.module.recover_boxes(target['boxes_h'], target['size'])
gt_bx_o = net.module.recover_boxes(target['boxes_o'], target['size'])
# Associate detected pairs with ground truth pairs
labels = torch.zeros_like(scores)
unique_hoi = interactions.unique()
for hoi_idx in unique_hoi:
gt_idx = torch.nonzero(target['hoi'] == hoi_idx).squeeze(1)
det_idx = torch.nonzero(interactions == hoi_idx).squeeze(1)
if len(gt_idx):
labels[det_idx] = associate(
(gt_bx_h[gt_idx].view(-1, 4),
gt_bx_o[gt_idx].view(-1, 4)),
(boxes_h[det_idx].view(-1, 4),
boxes_o[det_idx].view(-1, 4)),
scores[det_idx].view(-1)
)
meter.append(scores, interactions, labels)
scores_list.append(scores)
interactions_list.append(interactions)
labels_list.append(labels)
shapes_list.append(target['size'])
boxesh_list.append(boxes_h); boxeso_list.append(boxes_o)
objlabel_list.append(objects)
return meter.eval()
@torch.no_grad()
def cache_hico(self, dataloader, cache_dir='matlab'):
net = self._state.net
net.eval()
dataset = dataloader.dataset.dataset
conversion = torch.from_numpy(np.asarray(
dataset.object_n_verb_to_interaction, dtype=float
))
object2int = dataset.object_to_interaction
# Include empty images when counting
nimages = len(dataset.annotations)
all_results = np.empty((600, nimages), dtype=object)
for i, batch in enumerate(tqdm(dataloader)):
inputs = pocket.ops.relocate_to_cuda(batch[0])
output = net(inputs)
# Skip images without detections
if output is None or len(output) == 0:
continue
# Batch size is fixed as 1 for inference
assert len(output) == 1, f"Batch size is not 1 but {len(output)}."
output = pocket.ops.relocate_to_cpu(output[0], ignore=True)
# NOTE Index i is the intra-index amongst images excluding those
# without ground truth box pairs
image_idx = dataset._idx[i]
# Format detections
boxes = output['boxes']
boxes_h, boxes_o = boxes[output['pairing']].unbind(0)
objects = output['objects']
scores = output['scores']
verbs = output['labels']
interactions = conversion[objects, verbs]
# Rescale the boxes to original image size
ow, oh = dataset.image_size(i)
h, w = output['size']
scale_fct = torch.as_tensor([
ow / w, oh / h, ow / w, oh / h
]).unsqueeze(0)
boxes_h *= scale_fct
boxes_o *= scale_fct
# Convert box representation to pixel indices
boxes_h[:, 2:] -= 1
boxes_o[:, 2:] -= 1
# Group box pairs with the same predicted class
permutation = interactions.argsort()
boxes_h = boxes_h[permutation]
boxes_o = boxes_o[permutation]
interactions = interactions[permutation]
scores = scores[permutation]
# Store results
unique_class, counts = interactions.unique(return_counts=True)
n = 0
for cls_id, cls_num in zip(unique_class, counts):
all_results[cls_id.long(), image_idx] = torch.cat([
boxes_h[n: n + cls_num],
boxes_o[n: n + cls_num],
scores[n: n + cls_num, None]
], dim=1).numpy()
n += cls_num
# Replace None with size (0,0) arrays
for i in range(600):
for j in range(nimages):
if all_results[i, j] is None:
all_results[i, j] = np.zeros((0, 0))
if not os.path.exists(cache_dir):
os.makedirs(cache_dir)
# Cache results
for object_idx in range(80):
interaction_idx = object2int[object_idx]
sio.savemat(
os.path.join(cache_dir, f'detections_{(object_idx + 1):02d}.mat'),
dict(all_boxes=all_results[interaction_idx])
)
@torch.no_grad()
def cache_vcoco(self, dataloader, cache_dir='vcoco_cache'):
net = self._state.net
net.eval()
dataset = dataloader.dataset.dataset
all_results = []
for i, batch in enumerate(tqdm(dataloader)):
inputs = pocket.ops.relocate_to_cuda(batch[0])
output = net(inputs)
# Skip images without detections
if output is None or len(output) == 0:
continue
# Batch size is fixed as 1 for inference
assert len(output) == 1, f"Batch size is not 1 but {len(output)}."
output = pocket.ops.relocate_to_cpu(output[0], ignore=True)
# NOTE Index i is the intra-index amongst images excluding those
# without ground truth box pairs
image_id = dataset.image_id(i)
# Format detections
boxes = output['boxes']
boxes_h, boxes_o = boxes[output['pairing']].unbind(0)
scores = output['scores']
actions = output['labels']
# Rescale the boxes to original image size
ow, oh = dataset.image_size(i)
h, w = output['size']
scale_fct = torch.as_tensor([
ow / w, oh / h, ow / w, oh / h
]).unsqueeze(0)
boxes_h *= scale_fct
boxes_o *= scale_fct
for bh, bo, s, a in zip(boxes_h, boxes_o, scores, actions):
a_name = dataset.actions[a].split()
result = CacheTemplate(image_id=image_id, person_box=bh.tolist())
result[a_name[0] + '_agent'] = s.item()
result['_'.join(a_name)] = bo.tolist() + [s.item()]
all_results.append(result)
if not os.path.exists(cache_dir):
os.makedirs(cache_dir)
with open(os.path.join(cache_dir, 'cache.pkl'), 'wb') as f:
# Use protocol 2 for compatibility with Python2
pickle.dump(all_results, f, 2)
def _on_end_epoch(self):
self.n_epoch += 1
super()._on_end_epoch()
def _on_each_iteration(self):
self._state.optimizer.zero_grad()
loss_dict = self._state.net(*self._state.inputs, epoch=self.n_epoch, targets=self._state.targets)
if loss_dict['interaction_loss'].isnan():
self._state.loss = torch.tensor(0.)
return
# raise ValueError(f"The HOI loss is NaN for rank {self._rank}")
self._state.loss = sum(loss for loss in loss_dict.values())
self._state.loss.backward()
self._state.optimizer.step()
self.n_iter += 1
def _synchronise_and_log_results(self, output, meter):
scores = []; pred = []; labels = []
# Collate results within the batch
for result in output:
scores.append(result['scores'].detach().cpu().numpy())
labels.append(result['prediction'].cpu().float().numpy())
pred.append(result["labels"].cpu().numpy())
# Sync across subprocesses
all_results = np.stack([
np.concatenate(scores),
np.concatenate(pred),
np.concatenate(labels)
])
all_results_sync = all_gather(all_results)
# Collate and log results in master process
if self._rank == 0:
scores, pred, labels = torch.from_numpy(
np.concatenate(all_results_sync, axis=1)
).unbind(0)
meter.append(scores, pred, labels)
@torch.no_grad()
def validate(self):
meter = DetectionAPMeter(self.num_classes, algorithm='11P')
self._state.net.eval()
for batch in self.val_loader:
inputs = pocket.ops.relocate_to_cuda(batch)
results = self._state.net(*inputs)
# Evaluate mAP in master process
if self._rank == 0:
return meter.eval()
else:
return None