-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradcam4face_class.py
436 lines (337 loc) · 15.2 KB
/
gradcam4face_class.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
import os
import argparse
import cv2
from skimage.transform import resize
import torch
from torch.autograd import Function
from torchvision import transforms
from Code_tomse2 import Model_Parts
import numpy as np
from PIL import Image
from vidaug import augment as aug
"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6371279/"
class FeatureExtractor():
""" Class for extracting activations and
registering gradients from targetted intermediate layers """
def __init__(self, model, target_layers):
self.model = model
self.target_layers = target_layers
self.gradients = []
def save_gradient(self, grad):
self.gradients.append(grad)
def __call__(self, x, layer_name):
outputs = []
self.gradients = []
if layer_name in ['layer1', 'layer2', 'layer3', 'layer4']:
for name, module in self.model._modules.items():
x = module(x)
if name in self.target_layers:
x.register_hook(self.save_gradient)
outputs += [x]
else:
x = self.model(x)
x.register_hook(self.save_gradient)
outputs += [x]
return outputs, x
class ModelOutputs():
""" Class for making a forward pass, and getting:
1. The network output.
2. Activations from intermeddiate targetted layers.
3. Gradients from intermeddiate targetted layers. """
def __init__(self, model, feature_module, target_layers):
self.model = model
self.feature_module = feature_module
self.feature_extractor = FeatureExtractor(self.feature_module, target_layers)
def get_gradients(self):
return self.feature_extractor.gradients
def __call__(self, x):
target_activations = []
for mod in [self.model]:
for name, module in mod._modules.items():
if name == 'visual_encoder':
for sub_name, sub_module in module._modules.items():
if sub_module == self.feature_module:
target_activations, x = self.feature_extractor(x, sub_name)
elif "avgpool" in sub_name.lower():
x = sub_module(x)
x = x.view(x.size(0), -1)
else:
x = sub_module(x)
else:
if module == self.feature_module:
target_activations, x = self.feature_extractor(x, name)
else:
x = module(x)
x = torch.nn.functional.log_softmax(x, dim=1)
return target_activations, x
def deprocess_image(img):
""" see https://github.com/jacobgil/keras-grad-cam/blob/master/grad-cam.py#L65 """
img = img - np.mean(img)
img = img / (np.std(img) + 1e-5)
img = img * 0.1
img = img + 0.5
img = np.clip(img, 0, 1)
return np.uint8(img * 255)
def show_cam_on_image(img, mask):
heatmap = cv2.applyColorMap(np.uint8(255 * mask), cv2.COLORMAP_JET)
heatmap = np.float32(heatmap) / 255
cam = heatmap + np.float32(img)
cam = cam / np.max(cam)
return np.uint8(255 * cam)
def cams_on_img_seqs(cams, input_img):
cam_seqs = []
for i in range(len(cams)):
img = input_img[i, :, :, :]
img = np.array(img)
img = img * 0.5 + 0.5
# Opencv loads as BGR:
img = img.transpose((1, 2, 0))
cam = show_cam_on_image(img, cams[i, :, :])
cam = cam[:, :, ::-1]
cam = Image.fromarray(cam)
cam_seqs.append(cam)
return cam_seqs
def camgb_on_img_seqs(cams, gb):
camgb_seqs = []
gb = gb.transpose((1, 0, 2, 3))
for i in range(len(cams)):
sub_gb = gb[i, :]
sub_gb = sub_gb.transpose((1, 2, 0))
cam_mask = cv2.merge([cams[i], cams[i], cams[i]])
cam_gb = deprocess_image(cam_mask * sub_gb)
cam_gb = Image.fromarray(cam_gb)
camgb_seqs.append(cam_gb)
return camgb_seqs
def save_result(img_seqs, save_dir, batch_id, group_id, mode):
assert mode in ['cam', 'camgb']
save_dir = os.path.join(save_dir, mode)
if not os.path.exists(save_dir):
os.makedirs(save_dir)
save_name = 'batch' + str(batch_id) + '_' + 'group' + str(group_id)
for i, img in enumerate(img_seqs):
img.save(os.path.join(save_dir, save_name + '_' + str(i) + '.jpg'))
img_seqs[0].save(os.path.join(save_dir, save_name + '.gif'), save_all=True, append_images=img_seqs, duration=100)
class GradCam:
def __init__(self, model, feature_module, target_layer_names, use_cuda):
self.model = model
self.feature_module = feature_module
self.model.eval()
self.cuda = use_cuda
if self.cuda:
self.model = model.cuda()
self.extractor = ModelOutputs(self.model, self.feature_module, target_layer_names)
def forward(self, input_img):
return self.model(input_img)
def __call__(self, input_img, target_category=None):
if self.cuda:
input_img = input_img.cuda()
features, output = self.extractor(input_img)
if target_category is None:
target_category = torch.argmax(output.cpu(), dim=1)
target_category = target_category.view([output.shape[0], 1])
else:
target_category = torch.full(size=(output.shape[0], 1), fill_value=target_category)
one_hot = torch.full(size=output.size(), fill_value=0, dtype=torch.long)
one_hot = one_hot.scatter_(dim=1, index=target_category, value=1).float()
one_hot = one_hot.clone().detach().requires_grad_(True)
if self.cuda:
one_hot = one_hot.cuda()
one_hot = torch.sum(one_hot * output) / output.shape[0]
self.feature_module.zero_grad()
self.model.zero_grad()
one_hot.backward(retain_graph=True)
grads_val = self.extractor.get_gradients()[-1].cpu().data.numpy()
target = features[-1]
cams = []
for i in range(target.shape[0]):
sub_target = target.cpu().data.numpy()[i, :]
# weights = np.mean(grads_val, axis=(2, 3, 4))[0, :] / np.prod(grads_val.shape[2:5])
weights = np.mean(grads_val, axis=(2, 3, 4))[i, :]
cam = np.zeros(sub_target.shape[1:], dtype=np.float32)
for i, w in enumerate(weights):
cam += w * sub_target[i, :, :, :]
cam = np.maximum(cam, 0)
cam = resize(cam, input_img.shape[2:])
cam = cam - np.min(cam)
cam = cam / np.max(cam)
cams.append(cam)
return cams
class GuidedBackpropReLU(Function):
@staticmethod
def forward(self, input_img):
positive_mask = (input_img > 0).type_as(input_img)
output = torch.addcmul(torch.zeros(input_img.size()).type_as(input_img), input_img, positive_mask)
self.save_for_backward(input_img, output)
return output
@staticmethod
def backward(self, grad_output):
input_img, output = self.saved_tensors
grad_input = None
positive_mask_1 = (input_img > 0).type_as(grad_output)
positive_mask_2 = (grad_output > 0).type_as(grad_output)
grad_input = torch.addcmul(torch.zeros(input_img.size()).type_as(input_img),
torch.addcmul(torch.zeros(input_img.size()).type_as(input_img), grad_output,
positive_mask_1), positive_mask_2)
return grad_input
class GuidedBackpropReLUModel:
def __init__(self, model, use_cuda):
self.model = model
self.model.eval()
self.cuda = use_cuda
if self.cuda:
self.model = model.cuda()
def recursive_relu_apply(module_top):
for idx, module in module_top._modules.items():
recursive_relu_apply(module)
if module.__class__.__name__ == 'ReLU':
module_top._modules[idx] = GuidedBackpropReLU.apply
# replace ReLU with GuidedBackpropReLU
recursive_relu_apply(self.model)
def forward(self, input_img):
return self.model(input_img)
def __call__(self, input_img, target_category=None):
if self.cuda:
input_img = input_img.cuda()
input_img = input_img.requires_grad_(True)
output = self.forward(input_img)
output = torch.nn.functional.log_softmax(output, dim=1)
if target_category is None:
target_category = torch.argmax(output.cpu(), dim=1)
target_category = target_category.view([output.shape[0], 1])
else:
target_category = torch.full(size=(output.shape[0], 1), fill_value=target_category)
one_hot = torch.full(size=output.size(), fill_value=0, dtype=torch.long)
one_hot = one_hot.scatter_(dim=1, index=target_category, value=1).float()
one_hot = one_hot.clone().detach().requires_grad_(True)
if self.cuda:
one_hot = one_hot.cuda()
one_hot = torch.sum(one_hot * output) / output.shape[0]
one_hot.backward(retain_graph=True)
output = input_img.grad.cpu().data.numpy()
return output
# model load
def LoadParameter(_structure, _parameterDir):
device = "cuda" if torch.cuda.is_available() else "cpu"
checkpoint = torch.load(_parameterDir, map_location=torch.device(device))
pretrained_state_dict = checkpoint['state_dict']
model_state_dict = _structure.state_dict()
for key in pretrained_state_dict:
model_state_dict[key.replace('module.', '')] = pretrained_state_dict[key]
_structure.load_state_dict(model_state_dict)
return _structure
def sample_seg_full(orig_list, seg_num=32):
ed_list = []
part = int(len(orig_list)) // seg_num
if part == 0:
print('less 32')
else:
for n in range(int(part)):
ed_list.append(orig_list[n * seg_num: n * seg_num + seg_num])
return ed_list
def load_imgs_total_frame_cam(video_root, video_name):
imgs_first_dict = {}
imgs_first = []
index = []
video_path = os.path.join(video_root, video_name[:video_name.rfind('.')])
img_lists = os.listdir(video_path)
img_lists.sort(key=lambda x: int(x.split('.')[0])) # sort files by ascending
imgs_first_dict[video_name] = []
for frame in img_lists:
imgs_first_dict[video_name].append(
(os.path.join(video_path, frame)))
### return video frame index #####
ed_list = sample_seg_full(imgs_first_dict[video_name])
for id, seg_list in enumerate(ed_list):
imgs_first.append(seg_list)
index.append(np.ones(len(seg_list)) * id)
ind = np.arange(0, len(index), 1)
return imgs_first, ind
class LoadData_cam(torch.utils.data.Dataset):
def __init__(self, video_root, video_list, transform=None, transformVideoAug=None):
self.imgs_dict, self.dict_index = load_imgs_total_frame_cam(video_root, video_list)
self.transform = transform
self.transformVideoAug = transformVideoAug
def __getitem__(self, index):
image_list = []
image_clips = self.imgs_dict[index]
for item in image_clips:
img = Image.open(item).convert("RGB")
image_list.append(img)
if self.transformVideoAug is not None:
image_list = self.transformVideoAug(image_list)
if self.transform is not None:
image_list = [self.transform(image) for image in image_list]
image_list = torch.stack(image_list, dim=0)
return image_list
def __len__(self):
return len(self.dict_index)
# dataloader
def LoadPredictDataset(root_train, arg_train_list, batch_size):
pre_dataset = LoadData_cam(
video_root=root_train,
video_list=arg_train_list,
# transformVideoAug=transforms.Compose([aug.Resize([224, 224])]),
transform=transforms.Compose([transforms.ToTensor(),
transforms.Normalize(mean=(0.5, 0.5, 0.5),
std=(0.5, 0.5, 0.5))])
)
pre_loader = torch.utils.data.DataLoader(
pre_dataset,
batch_size=batch_size, shuffle=False,
num_workers=0, pin_memory=True, drop_last=True)
return pre_loader
def get_args():
parser = argparse.ArgumentParser()
parser.add_argument('--use-cuda', action='store_true', default=True,
help='Use NVIDIA GPU acceleration')
parser.add_argument('--data_dir', default=r'/home/xiaotao/Desktop/Data-S235-align', type=str, metavar='N',
help='the directory of videos need to be predicted')
parser.add_argument('--model_dir', default=r'./model/epoch13_loss_0.0729_acc_0.952', type=str,
help='the directory of predicted model')
parser.add_argument('--video_name', default='Morning-0.mp4', type=str,
metavar='N', help='the list of video names need to be predicted')
parser.add_argument('--batch_size', default=2, type=int,
help='batch size')
args = parser.parse_args()
args.use_cuda = args.use_cuda and torch.cuda.is_available()
if args.use_cuda:
print("Using GPU for acceleration")
else:
print("Using CPU for computation")
return args
if __name__ == '__main__':
""" python grad_cam.py <path_to_image>
1. Loads an image with opencv.
2. Preprocesses it for VGG19 and converts to a pytorch variable.
3. Makes a forward pass to find the category index with the highest score,
and computes intermediate activations.
Makes the visualization. """
args = get_args()
model = Model_Parts.FullModal_VisualFeatureAttention(num_class=2, feature_dim=256, non_local_pos=3,
first_channel=64)
model = LoadParameter(model, args.model_dir)
model1 = Model_Parts.FullModal_VisualFeatureAttention(num_class=2, feature_dim=256, non_local_pos=3,
first_channel=64)
model1 = LoadParameter(model1, args.model_dir)
# get grad_cam model
grad_cam = GradCam(model=model, feature_module=model.visual_encoder.layer4,
target_layer_names=["1"], use_cuda=args.use_cuda)
gb_model = GuidedBackpropReLUModel(model=model1, use_cuda=args.use_cuda)
# get input
dataloader = LoadPredictDataset(args.data_dir, args.video_name, args.batch_size)
for batch_id, input_img in enumerate(dataloader):
input_var = np.transpose(input_img, (0, 2, 1, 3, 4))
# cam
# target category: If None, returns the map for the highest scoring category. Otherwise, targets the requested category.
grayscale_cam = grad_cam(input_var, target_category=None)
# cams on sub video
for i in range(len(grayscale_cam)):
cam_seqs = cams_on_img_seqs(grayscale_cam[i], input_img[i])
save_dir = os.path.join('./result', args.video_name.split('.')[0])
save_result(cam_seqs, save_dir, batch_id, i, 'cam')
gb = gb_model(input_var, target_category=None)
# camgb on sub video
for i in range(len(gb)):
camgb_seqs = camgb_on_img_seqs(grayscale_cam[i], gb[i, :, :, :, :])
save_dir = os.path.join('./result', args.video_name.split('.')[0])
save_result(camgb_seqs, save_dir, batch_id, i, 'camgb')