-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeletion_v4_coco.py
402 lines (318 loc) · 13.3 KB
/
deletion_v4_coco.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
from torch.utils.data.sampler import Sampler
from pycocotools.coco import COCO
import argparse
import os
import time
import sys
import warnings
from srblib import abs_path
from PIL import ImageFilter, Image
import torch
import torch.nn as nn
import torch.nn.parallel
import torch.backends.cudnn as cudnn
import torch.optim
import torch.utils.data
import torch.utils.data.distributed
import torchvision.transforms as transforms
import torchvision.datasets as datasets
import torchvision.models as models
import numpy as np
import matplotlib.pyplot as plt
from tqdm import tqdm, trange
import skimage
# Fixing for deterministic results
torch.backends.cudnn.deterministic = True
torch.backends.cudnn.benchmark = False
# bibliotecas inpainter
sys.path.insert(0, './generativeimptorch')
from utils.tools import get_config, get_model_list
from model.networks import Generator
dataset_dir = './coco'
annotation_dir = './coco/annotations'
subset = 'val2014'
im_path = os.path.join(dataset_dir, subset)
ann_path = os.path.join(annotation_dir, 'instances_{}.json'.format(subset))
imagenet_class_mappings = './imagenet_class_mappings'
input_dir_path = 'coco_validation.txt'
text_file = abs_path(input_dir_path)
def imagenet_label_mappings():
fileName = os.path.join(imagenet_class_mappings, 'imagenet_label_mapping')
with open(fileName, 'r') as f:
image_label_mapping = {int(x.split(":")[0]): x.split(":")[1].strip()
for x in f.readlines() if len(x.strip()) > 0}
return image_label_mapping
transform_coco = transforms.Compose([
transforms.Resize((256, 256)),
transforms.CenterCrop(224),
transforms.ToTensor(),
transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225]),
])
class RangeSampler(Sampler):
def __init__(self, r):
self.r = r
def __iter__(self):
return iter(self.r)
def __len__(self):
return len(self.r)
img_name_list = []
with open(text_file, 'r') as f:
for line in f:
img_name_list.append(int(line.split('.jpg')[0].split('_')[-1]))
class CocoDetection:
def __init__(self, root, annFile, transform):
self.coco = COCO(annFile)
self.root = root
self.transform = transform
self.new_ids = img_name_list
def __getitem__(self, index):
id = self.new_ids[index]
path = self.coco.loadImgs(id)[0]["file_name"]
image = Image.open(os.path.join(self.root, path)).convert("RGB")
ann = (self.coco.loadAnns(self.coco.getAnnIds(id)))[0]
mask = self.coco.annToMask(ann)
if self.transform is not None:
image = self.transform(image)
mask = transforms.Resize((256, 256))(Image.fromarray(mask))
mask = transforms.CenterCrop(224)(mask)
mask = transforms.ToTensor()(mask)
mask = torch.nn.functional.normalize(mask, p=float('inf')).int()
return image, mask, path
def __len__(self):
return len(self.new_ids)
def tensor_imshow(inp, title=None, **kwargs):
"""Imshow for Tensor."""
inp = inp.numpy().transpose((1, 2, 0))
# Mean and std for ImageNet
mean = np.array([0.485, 0.456, 0.406])
std = np.array([0.229, 0.224, 0.225])
inp = std * inp + mean
inp = np.clip(inp, 0, 1)
plt.imshow(inp, **kwargs)
if title is not None:
plt.title(title)
# plt.show()
torch.manual_seed(0)
learning_rate = 0.1 * 0.8 # orig (0.3) 0.1 (preservation sparser) 0.3 (preservation dense)
max_iterations = 228 # 130 *2
l1_coeff = 0.01e-5 * 2 # *2 *4 *0.5 (robusto)
size = 224
tv_beta = 3
tv_coeff = 1e-2
factorTV = 5 * 0.5 * 0.005 # 1(dense) o 0.5 (sparser/sharp) #0.5 (preservation)
def inpainter(img, mask):
config = get_config('./generativeimptorch/configs/config.yaml')
checkpoint_path = os.path.join('./generativeimptorch/checkpoints',
config['dataset_name'],
config['mask_type'] + '_' + config['expname'])
cuda = config['cuda']
device_ids = config['gpu_ids']
with torch.no_grad(): # enter no grad context
# Test a single masked image with a given mask
x = img
# denormaliza imagenet y se normaliza a inpainter [-1,1] mean=0.5, std=0.5
x = transforms.Normalize(mean=[0.015 / 0.229, 0.044 / 0.224, 0.094 / 0.225],
std=[0.5 / 0.229, 0.5 / 0.224, 0.5 / 0.225])(x)
x = x * (mask)
# Define the trainer
netG = Generator(config['netG'], cuda, device_ids)
# Resume weight
last_model_name = get_model_list(checkpoint_path, "gen", iteration=0)
netG.load_state_dict(torch.load(last_model_name))
# netG = torch.nn.parallel.DataParallel(netG, device_ids=[0, 1])
netG.cuda()
# Inference
x1, x2, offset_flow = netG(x, (1. - mask))
return x2
def tv_norm(input, tv_beta):
img = input[:, 0, :]
row_grad = torch.abs((img[:, :-1, :] - img[:, 1:, :])).pow(tv_beta).sum(dim=(1, 2))
col_grad = torch.abs((img[:, :, :-1] - img[:, :, 1:])).pow(tv_beta).sum(dim=(1, 2))
return row_grad + col_grad
torch.cuda.set_device(0) # especificar cual gpu 0 o 1
model = models.googlenet(pretrained=True)
model.cuda()
model.eval()
for param in model.parameters():
param.requires_grad = False
print('GPU 0 explicacion ver 4 COCO')
list_of_layers = ['conv1',
'conv2',
'conv3',
'inception3a',
'inception3b',
'inception4a',
'inception4b',
'inception4c',
'inception4d',
'inception4e',
'inception5a',
'inception5b',
'fc'
]
activation_orig = {}
def get_activation_orig(name):
def hook(model, input, output):
activation_orig[name] = output
return hook
def get_activation_mask(name):
def hook(model, input, output):
act_mask = output
# print(act_mask.shape). #debug
# print(activation_orig[name].shape) #debug
limite_sup = (act_mask <= torch.fmax(torch.tensor(0), activation_orig[name]))
limite_inf = (act_mask >= torch.fmin(torch.tensor(0), activation_orig[name]))
oper = limite_sup * limite_inf
# print('oper shape=',oper.shape). #debug
act_mask.requires_grad_(True)
act_mask.retain_grad()
h = act_mask.register_hook(lambda grad: grad * oper)
# x.register_hook(update_gradients(2))
# activation[name]=act_mask
# h.remove()
return hook
def my_explanation(img_batch, max_iterations, gt_category):
F_hook = []
exp_hook = []
for name, layer in model.named_children():
if name in list_of_layers:
F_hook.append(layer.register_forward_hook(get_activation_orig(name)))
# se calculan las activaciones para el batch de imágenes y se almacenan en la lista activation_orig
# la funcion "feed forward" registra los hook
org_softmax = torch.nn.Softmax(dim=1)(model(img_batch))
# se borran los hook registrados en Feed Forward
for fh in F_hook:
fh.remove()
for name, layer in model.named_children():
if name in list_of_layers:
exp_hook.append(layer.register_forward_hook(get_activation_mask(name)))
for param in model.parameters():
param.requires_grad = False
np.random.seed(seed=0)
mask = torch.from_numpy(np.float32(np.random.uniform(0, 0.01, size=(1, 1, 224, 224))))
mask = mask.expand(img_batch.size(0), 1, 224, 224)
mask = mask.cuda()
mask.requires_grad = True
# null_img = torch.zeros(img_batch.size(0), 3, 224, 224).cuda()
# null_img_blur = transforms.GaussianBlur(kernel_size=223, sigma=10)(img_batch)
# null_img_blur.requires_grad = False
# null_img = null_img_blur.cuda()
optimizer = torch.optim.Adam([mask], lr=learning_rate)
for i in trange(max_iterations):
extended_mask = mask.expand(img_batch.size(0), 3, 224, 224)
img_inpainted = inpainter(img_batch, mask)
img_inpainted = transforms.Normalize(mean=-1, std=2)(img_inpainted)
img_inpainted = transforms.Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225])(img_inpainted)
perturbated_input = img_batch.mul(extended_mask) + img_inpainted.mul(1 - extended_mask)
# perturbated_input = perturbated_input.to(torch.float32)
optimizer.zero_grad()
outputs = torch.nn.Softmax(dim=1)(model(perturbated_input)) # (3,1000)
preds = outputs[torch.arange(0, img_batch.size(0)).tolist(), gt_category.tolist()]
loss = l1_coeff * torch.sum(torch.abs(1 - mask), dim=(1, 2, 3)) + preds + \
factorTV * tv_coeff * tv_norm(mask, tv_beta)
loss.backward(gradient=torch.ones_like(loss).cuda())
optimizer.step()
mask.data.clamp_(0, 1)
for eh in exp_hook:
eh.remove()
# Para visualizar las máscaras
# mask_np = (mask.cpu().detach().numpy())
#
# for i in range(mask_np.shape[0]):
# plt.imshow(1 - mask_np[i, 0, :, :])
# plt.show()
return mask
def calculate_iou(gt_mask, exp_mask):
# max_val = exp_mask.max()
thres_vals = np.arange(0.05, 1, 0.05)
# num_thres = len(thres_vals)
out = []
for thres in thres_vals:
pred_mask = np.where(exp_mask > thres, 1, 0)
mask_intersection = np.bitwise_and(gt_mask.astype(int), pred_mask.astype(int))
mask_union = np.bitwise_or(gt_mask.astype(int), pred_mask.astype(int))
IOU = np.sum(mask_intersection) / np.sum(mask_union)
out.append(IOU)
return np.array(out)
COCO_ds = CocoDetection(root=im_path,
annFile=ann_path,
transform=transform_coco)
data_loader = torch.utils.data.DataLoader(COCO_ds, batch_size=1, shuffle=False,
num_workers=8, pin_memory=True,
#sampler=RangeSampler(range(1, 5))
)
print('longitud data loader:', len(data_loader))
im_label_map = imagenet_label_mappings()
thres_vals = np.arange(0.05, 1, 0.05)
iou_table = np.zeros((len(data_loader)*data_loader.batch_size, 3))
save_path = './output_v4_coco'
for i, (images, masks, paths) in enumerate(data_loader):
print(i)
images = images.cuda()
pred = torch.nn.Softmax(dim=1)(model(images))
pr, cl = torch.max(pred, 1)
pred_target = cl.cpu().numpy()
pr = pr.cpu().numpy()
exp_mask = my_explanation(images, max_iterations, pred_target)
exp_mask = 1. - exp_mask.cpu().detach().numpy()
gt_masks = masks.numpy()
for idx, path in enumerate(paths):
mask_file = ('{}.npy'.format(path.split('.jpg')[0]))
np.save(os.path.abspath(os.path.join(save_path, mask_file)), exp_mask[idx, 0, :])
# iou = calculate_iou(gt_masks[idx, 0, :], exp_mask[idx, 0, :])
# iou_arg = np.argmax(iou)
# iou_table[i * data_loader.batch_size + idx, 0] = i * data_loader.batch_size + idx
# iou_table[i*data_loader.batch_size+idx, 1] = iou[iou_arg]
# iou_table[i*data_loader.batch_size+idx, 2] = iou_arg
# print('path: ', path, ' iou = ', iou[iou_arg])
# # title = 'p={:.1f} cat={}'.format(pr[idx], im_label_map.get(pred_target[idx]))
# title = 'iou = {}'.format(iou[iou_arg])
# tensor_imshow(images[idx].cpu(), title=title)
# plt.axis('off')
# exp_mask_th = exp_mask[idx, 0, :]
# exp_mask_th = np.where(exp_mask_th > thres_vals[iou_arg], 1, 0)
# plt.imshow(exp_mask_th, cmap='jet', alpha=0.5)
# plt.show()
# tensor_imshow(images[idx].cpu(), title='coco {}'.format(np.sum(gt_masks[idx, 0, :])))
# plt.axis('off')
# plt.imshow(masks[idx, 0, :], cmap='jet', alpha=0.5)
# plt.show()
#
# mask_intersection = np.bitwise_and(gt_masks[idx, 0, :].astype(int), exp_mask_th.astype(int))
# mask_union = np.bitwise_or(gt_masks[idx, 0, :].astype(int), exp_mask_th.astype(int))
#
# tensor_imshow(images[idx].cpu(), title='intersection {}'.format(np.sum(mask_intersection)))
# plt.axis('off')
# plt.imshow(mask_intersection, cmap='jet', alpha=0.5)
# plt.show()
#
# tensor_imshow(images[idx].cpu(), title='union {}'.format(np.sum(mask_union)))
# plt.axis('off')
# plt.imshow(mask_union, cmap='jet', alpha=0.5)
# plt.show()
# print(iou_table)
# print(iou_table.mean(axis=0))
# for i, (image, mask, path) in enumerate(data_loader):
# image.requires_grad = False
# image = image.cuda()
# pred = torch.nn.Softmax(dim=1)(model(image))
# pr, cl = torch.topk(pred, 1)
# pr = pr.cpu().detach().numpy()[0][0]
# pred_target = cl.cpu().detach().numpy()[0][0]
# title = 'p={:.1f} cat={}'.format(pr, im_label_map.get(pred_target))
# tensor_imshow(image[0].cpu(), title=title)
# # plt.show()
# mask = my_explanation(image, max_iterations, pred_target)
# mask_np = np.squeeze(mask.cpu().detach().numpy())
# plt.axis('off')
# plt.imshow(mask_np, cmap='jet', alpha=0.5)
# # print('path ', path[0].split('.jpg')[0])
# # print('mask max ', mask.numpy().max())
# # print('mask min ', mask.numpy().min())
# plt.show()
# COCO_ds.coco
# image_np = np.array(image)
# plt.imshow(image_np)
# plt.show()