-
Notifications
You must be signed in to change notification settings - Fork 27
/
ACNet_models_V1_delA.py
383 lines (316 loc) · 13.6 KB
/
ACNet_models_V1_delA.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
import torch
from torch import nn
from torch.nn import functional as F
import math
import torch.utils.model_zoo as model_zoo
from utils import utils
from torch.utils.checkpoint import checkpoint
model_urls = {
'resnet18': 'https://download.pytorch.org/models/resnet18-5c106cde.pth',
'resnet34': 'https://download.pytorch.org/models/resnet34-333f7ec4.pth',
'resnet50': 'https://download.pytorch.org/models/resnet50-19c8e357.pth',
'resnet101': 'https://download.pytorch.org/models/resnet101-5d3b4d8f.pth',
'resnet152': 'https://download.pytorch.org/models/resnet152-b121ed2d.pth',
}
class ACNet(nn.Module):
def __init__(self, num_class=37, pretrained=False):
super(ACNet, self).__init__()
layers = [3, 4, 6, 3]
block = Bottleneck
transblock = TransBasicBlock
# RGB image branch
self.inplanes = 64
self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, padding=3,
bias=False)
self.bn1 = nn.BatchNorm2d(64)
self.relu = nn.ReLU(inplace=True)
self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)
self.layer1 = self._make_layer(block, 64, layers[0])
self.layer2 = self._make_layer(block, 128, layers[1], stride=2)
self.layer3 = self._make_layer(block, 256, layers[2], stride=2) # use PSPNet extractors
self.layer4 = self._make_layer(block, 512, layers[3], stride=2)
# depth image branch
self.inplanes = 64
self.conv1_d = nn.Conv2d(1, 64, kernel_size=7, stride=2, padding=3,
bias=False)
self.bn1_d = nn.BatchNorm2d(64)
self.relu_d = nn.ReLU(inplace=True)
self.maxpool_d = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)
self.layer1_d = self._make_layer(block, 64, layers[0])
self.layer2_d = self._make_layer(block, 128, layers[1], stride=2)
self.layer3_d = self._make_layer(block, 256, layers[2], stride=2)
self.layer4_d = self._make_layer(block, 512, layers[3], stride=2)
# merge branch
self.atten_rgb_0 = self.channel_attention(64)
self.atten_depth_0 = self.channel_attention(64)
self.maxpool_m = nn.MaxPool2d(kernel_size=3, stride=2, padding=1)
self.atten_rgb_1 = self.channel_attention(64*4)
self.atten_depth_1 = self.channel_attention(64*4)
# self.conv_2 = nn.Conv2d(64*4, 64*4, kernel_size=1) #todo 用cat和conv降回通道数
self.atten_rgb_2 = self.channel_attention(128*4)
self.atten_depth_2 = self.channel_attention(128*4)
self.atten_rgb_3 = self.channel_attention(256*4)
self.atten_depth_3 = self.channel_attention(256*4)
self.atten_rgb_4 = self.channel_attention(512*4)
self.atten_depth_4 = self.channel_attention(512*4)
self.inplanes = 64
self.layer1_m = self._make_layer(block, 64, layers[0])
self.layer2_m = self._make_layer(block, 128, layers[1], stride=2)
self.layer3_m = self._make_layer(block, 256, layers[2], stride=2)
self.layer4_m = self._make_layer(block, 512, layers[3], stride=2)
# agant module
self.agant0 = self._make_agant_layer(64, 64)
self.agant1 = self._make_agant_layer(64*4, 64)
self.agant2 = self._make_agant_layer(128*4, 128)
self.agant3 = self._make_agant_layer(256*4, 256)
self.agant4 = self._make_agant_layer(512*4, 512)
#transpose layer
self.inplanes = 512
self.deconv1 = self._make_transpose(transblock, 256, 6, stride=2)
self.deconv2 = self._make_transpose(transblock, 128, 4, stride=2)
self.deconv3 = self._make_transpose(transblock, 64, 3, stride=2)
self.deconv4 = self._make_transpose(transblock, 64, 3, stride=2)
# final blcok
self.inplanes = 64
self.final_conv = self._make_transpose(transblock, 64, 3)
self.final_deconv = nn.ConvTranspose2d(self.inplanes, num_class, kernel_size=2,
stride=2, padding=0, bias=True)
self.out5_conv = nn.Conv2d(256, num_class, kernel_size=1, stride=1, bias=True)
self.out4_conv = nn.Conv2d(128, num_class, kernel_size=1, stride=1, bias=True)
self.out3_conv = nn.Conv2d(64, num_class, kernel_size=1, stride=1, bias=True)
self.out2_conv = nn.Conv2d(64, num_class, kernel_size=1, stride=1, bias=True)
# weight initial
for m in self.modules():
if isinstance(m, nn.Conv2d):
n = m.kernel_size[0] * m.kernel_size[1] * m.out_channels
m.weight.data.normal_(0, math.sqrt(2. / n))
elif isinstance(m, nn.BatchNorm2d):
m.weight.data.fill_(1)
m.bias.data.zero_()
if pretrained:
self._load_resnet_pretrained()
def encoder(self, rgb, depth):
rgb = self.conv1(rgb)
rgb = self.bn1(rgb)
rgb = self.relu(rgb)
depth = self.conv1_d(depth)
depth = self.bn1_d(depth)
depth = self.relu_d(depth)
# print('!!!!! ', rgb.shape)
m0 = rgb + depth
rgb = self.maxpool(rgb)
depth = self.maxpool_d(depth)
m = self.maxpool_m(m0)
# block 1
rgb = self.layer1(rgb)
depth = self.layer1_d(depth)
m = self.layer1_m(m)
m1 = m + rgb + depth
# block 2
rgb = self.layer2(rgb)
depth = self.layer2_d(depth)
m = self.layer2_m(m1)
m2 = m + rgb + depth
# block 3
rgb = self.layer3(rgb)
depth = self.layer3_d(depth)
m = self.layer3_m(m2)
m3 = m + rgb + depth
# block 4
rgb = self.layer4(rgb)
depth = self.layer4_d(depth)
m = self.layer4_m(m3)
m4 = m + rgb + depth
return m0, m1, m2, m3, m4 # channel of m is 2048
def decoder(self, fuse0, fuse1, fuse2, fuse3, fuse4):
agant4 = self.agant4(fuse4)
# upsample 1
x = self.deconv1(agant4)
if self.training:
out5 = self.out5_conv(x)
x = x + self.agant3(fuse3)
# upsample 2
x = self.deconv2(x)
if self.training:
out4 = self.out4_conv(x)
x = x + self.agant2(fuse2)
# upsample 3
x = self.deconv3(x)
if self.training:
out3 = self.out3_conv(x)
x = x + self.agant1(fuse1)
# upsample 4
x = self.deconv4(x)
if self.training:
out2 = self.out2_conv(x)
x = x + self.agant0(fuse0)
# final
x = self.final_conv(x)
out = self.final_deconv(x)
if self.training:
return out, out2, out3, out4, out5
return out
def forward(self, rgb, depth, phase_checkpoint=False):
fuses = self.encoder(rgb, depth)
m = self.decoder(*fuses)
return m
def _make_layer(self, block, planes, blocks, stride=1, dilation=1):
downsample = None
if stride != 1 or self.inplanes != planes * block.expansion:
downsample = nn.Sequential(
nn.Conv2d(self.inplanes, planes * block.expansion,
kernel_size=1, stride=stride, bias=False),
nn.BatchNorm2d(planes * block.expansion),
)
layers = []
layers.append(block(self.inplanes, planes, stride, downsample))
self.inplanes = planes * block.expansion
for i in range(1, blocks):
layers.append(block(self.inplanes, planes, dilation=dilation))
return nn.Sequential(*layers)
def channel_attention(self, num_channel, ablation=False):
# todo add convolution here
pool = nn.AdaptiveAvgPool2d(1)
conv = nn.Conv2d(num_channel, num_channel, kernel_size=1)
# bn = nn.BatchNorm2d(num_channel)
activation = nn.Sigmoid() # todo modify the activation function
return nn.Sequential(*[pool, conv, activation])
def _make_agant_layer(self, inplanes, planes):
layers = nn.Sequential(
nn.Conv2d(inplanes, planes, kernel_size=1,
stride=1, padding=0, bias=False),
nn.BatchNorm2d(planes),
nn.ReLU(inplace=True)
)
return layers
def _make_transpose(self, block, planes, blocks, stride=1):
upsample = None
if stride != 1:
upsample = nn.Sequential(
nn.ConvTranspose2d(self.inplanes, planes,
kernel_size=2, stride=stride,
padding=0, bias=False),
nn.BatchNorm2d(planes),
)
elif self.inplanes != planes:
upsample = nn.Sequential(
nn.Conv2d(self.inplanes, planes,
kernel_size=1, stride=stride, bias=False),
nn.BatchNorm2d(planes),
)
layers = []
for i in range(1, blocks):
layers.append(block(self.inplanes, self.inplanes))
layers.append(block(self.inplanes, planes, stride, upsample))
self.inplanes = planes
return nn.Sequential(*layers)
def _load_resnet_pretrained(self):
pretrain_dict = model_zoo.load_url(utils.model_urls['resnet50'])
model_dict = {}
state_dict = self.state_dict()
for k, v in pretrain_dict.items():
# print('%%%%% ', k)
if k in state_dict:
if k.startswith('conv1'):
model_dict[k] = v
# print('##### ', k)
model_dict[k.replace('conv1', 'conv1_d')] = torch.mean(v, 1).data. \
view_as(state_dict[k.replace('conv1', 'conv1_d')])
elif k.startswith('bn1'):
model_dict[k] = v
model_dict[k.replace('bn1', 'bn1_d')] = v
elif k.startswith('layer'):
model_dict[k] = v
model_dict[k[:6]+'_d'+k[6:]] = v
model_dict[k[:6]+'_m'+k[6:]] = v
state_dict.update(model_dict)
self.load_state_dict(state_dict)
class Bottleneck(nn.Module):
expansion = 4
def __init__(self, inplanes, planes, stride=1, downsample=None, dilation=1):
super(Bottleneck, self).__init__()
self.conv1 = nn.Conv2d(inplanes, planes, kernel_size=1, bias=False)
self.bn1 = nn.BatchNorm2d(planes)
self.conv2 = nn.Conv2d(planes, planes, kernel_size=3, stride=stride, dilation=dilation,
padding=dilation, bias=False)
self.bn2 = nn.BatchNorm2d(planes)
self.conv3 = nn.Conv2d(planes, planes * 4, kernel_size=1, bias=False)
self.bn3 = nn.BatchNorm2d(planes * 4)
self.relu = nn.ReLU(inplace=True)
self.downsample = downsample
self.stride = stride
def forward(self, x):
residual = x
out = self.conv1(x)
out = self.bn1(out)
out = self.relu(out)
out = self.conv2(out)
out = self.bn2(out)
out = self.relu(out)
out = self.conv3(out)
out = self.bn3(out)
if self.downsample is not None:
residual = self.downsample(x)
out += residual
out = self.relu(out)
return out
class PSPModule(nn.Module):
def __init__(self, features, out_features=1024, sizes=(1, 2, 3, 6)):
super().__init__()
self.stages = []
self.stages = nn.ModuleList([self._make_stage(features, size) for size in sizes])
self.bottleneck = nn.Conv2d(features * (len(sizes) + 1), out_features, kernel_size=1)
self.relu = nn.ReLU()
def _make_stage(self, features, size):
prior = nn.AdaptiveAvgPool2d(output_size=(size, size))
conv = nn.Conv2d(features, features, kernel_size=1, bias=False)
return nn.Sequential(prior, conv)
def forward(self, feats):
h, w = feats.size(2), feats.size(3)
priors = [F.upsample(input=stage(feats), size=(h, w), mode='bilinear') for stage in self.stages] + [feats]
bottle = self.bottleneck(torch.cat(priors, 1))
return self.relu(bottle)
class PSPUpsample(nn.Module):
def __init__(self, in_channels, out_channels):
super().__init__()
self.conv = nn.Sequential(
nn.Conv2d(in_channels, out_channels, 3, padding=1),
nn.BatchNorm2d(out_channels),
nn.PReLU()
)
def forward(self, x):
h, w = 2 * x.size(2), 2 * x.size(3)
p = F.upsample(input=x, size=(h, w), mode='bilinear')
return self.conv(p)
def conv3x3(in_planes, out_planes, stride=1):
"3x3 convolution with padding"
return nn.Conv2d(in_planes, out_planes, kernel_size=3, stride=stride,
padding=1, bias=False)
class TransBasicBlock(nn.Module):
expansion = 1
def __init__(self, inplanes, planes, stride=1, upsample=None, **kwargs):
super(TransBasicBlock, self).__init__()
self.conv1 = conv3x3(inplanes, inplanes)
self.bn1 = nn.BatchNorm2d(inplanes)
self.relu = nn.ReLU(inplace=True)
if upsample is not None and stride != 1:
self.conv2 = nn.ConvTranspose2d(inplanes, planes,
kernel_size=3, stride=stride, padding=1,
output_padding=1, bias=False)
else:
self.conv2 = conv3x3(inplanes, planes, stride)
self.bn2 = nn.BatchNorm2d(planes)
self.upsample = upsample
self.stride = stride
def forward(self, x):
residual = x
out = self.conv1(x)
out = self.bn1(out)
out = self.relu(out)
out = self.conv2(out)
out = self.bn2(out)
if self.upsample is not None:
residual = self.upsample(x)
out += residual
out = self.relu(out)
return out