-
Notifications
You must be signed in to change notification settings - Fork 24
/
utils.py
330 lines (289 loc) · 12.1 KB
/
utils.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
"""
Utilities
Fred Zhang <frederic.zhang@anu.edu.au>
The Australian National University
Australian Centre for Robotic Vision
"""
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, BoxPairAssociation
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, max_norm=0, num_classes=117, **kwargs):
super().__init__(net, None, dataloader, **kwargs)
self.max_norm = max_norm
self.num_classes = num_classes
def _on_each_iteration(self):
loss_dict = self._state.net(
*self._state.inputs, targets=self._state.targets)
if loss_dict['interaction_loss'].isnan():
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.optimizer.zero_grad(set_to_none=True)
self._state.loss.backward()
if self.max_norm > 0:
torch.nn.utils.clip_grad_norm_(self._state.net.parameters(), self.max_norm)
self._state.optimizer.step()
@torch.no_grad()
def test_hico(self, dataloader):
net = self._state.net
net.eval()
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'
)
for batch in 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)
objects = output['objects']
scores = output['scores']
verbs = output['labels']
interactions = conversion[objects, verbs]
# 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)
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)