-
Notifications
You must be signed in to change notification settings - Fork 2
/
model.py
1100 lines (960 loc) · 46.8 KB
/
model.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import torch
import torch.nn as nn
import torch.utils.checkpoint as checkpoint
from timm.models.layers import DropPath, to_2tuple, trunc_normal_
import torch.nn.functional as F
from einops import rearrange, repeat
from einops.layers.torch import Rearrange
import math
import numpy as np
import time
from torch import einsum
#########################################
class ConvBlock(nn.Module):
def __init__(self, in_channel, out_channel, strides=1):
super(ConvBlock, self).__init__()
self.strides = strides
self.in_channel=in_channel
self.out_channel=out_channel
self.block = nn.Sequential(
nn.Conv2d(in_channel, out_channel, kernel_size=3, stride=strides, padding=1),
nn.LeakyReLU(inplace=True),
nn.Conv2d(out_channel, out_channel, kernel_size=3, stride=strides, padding=1),
nn.LeakyReLU(inplace=True),
)
self.conv11 = nn.Conv2d(in_channel, out_channel, kernel_size=1, stride=strides, padding=0)
def forward(self, x):
out1 = self.block(x)
out2 = self.conv11(x)
out = out1 + out2
return out
def flops(self, H, W):
flops = H*W*self.in_channel*self.out_channel*(3*3+1)+H*W*self.out_channel*self.out_channel*3*3
return flops
#########################################
class PosCNN(nn.Module):
def __init__(self, in_chans, embed_dim=768, s=1):
super(PosCNN, self).__init__()
self.proj = nn.Sequential(nn.Conv2d(in_chans, embed_dim, 3, s, 1, bias=True, groups=embed_dim))
self.s = s
def forward(self, x, H=None, W=None):
B, N, C = x.shape
H = H or int(math.sqrt(N))
W = W or int(math.sqrt(N))
feat_token = x
cnn_feat = feat_token.transpose(1, 2).view(B, C, H, W)
if self.s == 1:
x = self.proj(cnn_feat) + cnn_feat
else:
x = self.proj(cnn_feat)
x = x.flatten(2).transpose(1, 2)
return x
def no_weight_decay(self):
return ['proj.%d.weight' % i for i in range(4)]
class SELayer(nn.Module):
def __init__(self, channel, reduction=16):
super(SELayer, self).__init__()
self.avg_pool = nn.AdaptiveAvgPool1d(1)
self.fc = nn.Sequential(
nn.Linear(channel, channel // reduction, bias=False),
nn.ReLU(inplace=True),
nn.Linear(channel // reduction, channel, bias=False),
nn.Sigmoid()
)
def forward(self, x): # x: [B, N, C]
x = torch.transpose(x, 1, 2) # [B, C, N]
b, c, _ = x.size()
y = self.avg_pool(x).view(b, c)
y = self.fc(y).view(b, c, 1)
x = x * y.expand_as(x)
x = torch.transpose(x, 1, 2) # [B, N, C]
return x
class SepConv2d(torch.nn.Module):
def __init__(self,
in_channels,
out_channels,
kernel_size,
stride=1,
padding=0,
dilation=1,act_layer=nn.ReLU):
super(SepConv2d, self).__init__()
self.depthwise = torch.nn.Conv2d(in_channels,
in_channels,
kernel_size=kernel_size,
stride=stride,
padding=padding,
dilation=dilation,
groups=in_channels)
self.pointwise = torch.nn.Conv2d(in_channels, out_channels, kernel_size=1)
self.act_layer = act_layer() if act_layer is not None else nn.Identity()
self.in_channels = in_channels
self.out_channels = out_channels
self.kernel_size = kernel_size
self.stride = stride
def forward(self, x):
x = self.depthwise(x)
x = self.act_layer(x)
x = self.pointwise(x)
return x
def flops(self, H, W):
flops = 0
flops += H*W*self.in_channels*self.kernel_size**2/self.stride**2
flops += H*W*self.in_channels*self.out_channels
return flops
#########################################
######## Embedding for q,k,v ########
class ConvProjection(nn.Module):
def __init__(self, dim, heads = 8, dim_head = 64, kernel_size=3, q_stride=1, k_stride=1, v_stride=1, dropout = 0.,
last_stage=False,bias=True):
super().__init__()
inner_dim = dim_head * heads
self.heads = heads
pad = (kernel_size - q_stride)//2
self.to_q = SepConv2d(dim, inner_dim, kernel_size, q_stride, pad, bias)
self.to_k = SepConv2d(dim, inner_dim, kernel_size, k_stride, pad, bias)
self.to_v = SepConv2d(dim, inner_dim, kernel_size, v_stride, pad, bias)
def forward(self, x, attn_kv=None):
b, n, c, h = *x.shape, self.heads
l = int(math.sqrt(n))
w = int(math.sqrt(n))
attn_kv = x if attn_kv is None else attn_kv
x = rearrange(x, 'b (l w) c -> b c l w', l=l, w=w)
attn_kv = rearrange(attn_kv, 'b (l w) c -> b c l w', l=l, w=w)
# print(attn_kv)
q = self.to_q(x)
q = rearrange(q, 'b (h d) l w -> b h (l w) d', h=h)
k = self.to_k(attn_kv)
v = self.to_v(attn_kv)
k = rearrange(k, 'b (h d) l w -> b h (l w) d', h=h)
v = rearrange(v, 'b (h d) l w -> b h (l w) d', h=h)
return q,k,v
def flops(self, H, W):
flops = 0
flops += self.to_q.flops(H, W)
flops += self.to_k.flops(H, W)
flops += self.to_v.flops(H, W)
return flops
class LinearProjection(nn.Module):
def __init__(self, dim, heads = 8, dim_head = 64, dropout = 0., bias=True):
super().__init__()
inner_dim = dim_head * heads
self.heads = heads
self.to_q = nn.Linear(dim, inner_dim, bias = bias)
self.to_kv = nn.Linear(dim, inner_dim * 2, bias = bias)
self.dim = dim
self.inner_dim = inner_dim
def forward(self, x, attn_kv=None):
B_, N, C = x.shape
attn_kv = x if attn_kv is None else attn_kv
q = self.to_q(x).reshape(B_, N, 1, self.heads, C // self.heads).permute(2, 0, 3, 1, 4)
kv = self.to_kv(attn_kv).reshape(B_, N, 2, self.heads, C // self.heads).permute(2, 0, 3, 1, 4)
q = q[0]
k, v = kv[0], kv[1]
return q,k,v
def flops(self, H, W):
flops = H*W*self.dim*self.inner_dim*3
return flops
class LinearProjection_Concat_kv(nn.Module):
def __init__(self, dim, heads = 8, dim_head = 64, dropout = 0., bias=True):
super().__init__()
inner_dim = dim_head * heads
self.heads = heads
self.to_qkv = nn.Linear(dim, inner_dim * 3, bias = bias)
self.to_kv = nn.Linear(dim, inner_dim * 2, bias = bias)
self.dim = dim
self.inner_dim = inner_dim
def forward(self, x, attn_kv=None):
B_, N, C = x.shape
attn_kv = x if attn_kv is None else attn_kv
qkv_dec = self.to_qkv(x).reshape(B_, N, 3, self.heads, C // self.heads).permute(2, 0, 3, 1, 4)
kv_enc = self.to_kv(attn_kv).reshape(B_, N, 2, self.heads, C // self.heads).permute(2, 0, 3, 1, 4)
q, k_d, v_d = qkv_dec[0], qkv_dec[1], qkv_dec[2] # make torchscript happy (cannot use tensor as tuple)
k_e, v_e = kv_enc[0], kv_enc[1]
k = torch.cat((k_d,k_e),dim=2)
v = torch.cat((v_d,v_e),dim=2)
return q,k,v
def flops(self, H, W):
flops = H*W*self.dim*self.inner_dim*5
return flops
#########################################
########### window-based self-attention #############
class WindowAttention(nn.Module):
def __init__(self, dim, win_size,num_heads, token_projection='linear', qkv_bias=True, qk_scale=None, attn_drop=0., proj_drop=0.,se_layer=False):
super().__init__()
self.dim = dim
self.win_size = win_size # Wh, Ww
self.num_heads = num_heads
head_dim = dim // num_heads
self.scale = qk_scale or head_dim ** -0.5
# define a parameter table of relative position bias
self.relative_position_bias_table = nn.Parameter(
torch.zeros((2 * win_size[0] - 1) * (2 * win_size[1] - 1), num_heads)) # 2*Wh-1 * 2*Ww-1, nH
# get pair-wise relative position index for each token inside the window
coords_h = torch.arange(self.win_size[0]) # [0,...,Wh-1]
coords_w = torch.arange(self.win_size[1]) # [0,...,Ww-1]
coords = torch.stack(torch.meshgrid([coords_h, coords_w])) # 2, Wh, Ww
coords_flatten = torch.flatten(coords, 1) # 2, Wh*Ww
relative_coords = coords_flatten[:, :, None] - coords_flatten[:, None, :] # 2, Wh*Ww, Wh*Ww
relative_coords = relative_coords.permute(1, 2, 0).contiguous() # Wh*Ww, Wh*Ww, 2
relative_coords[:, :, 0] += self.win_size[0] - 1 # shift to start from 0
relative_coords[:, :, 1] += self.win_size[1] - 1
relative_coords[:, :, 0] *= 2 * self.win_size[1] - 1
relative_position_index = relative_coords.sum(-1) # Wh*Ww, Wh*Ww
self.register_buffer("relative_position_index", relative_position_index)
# self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias)
if token_projection =='conv':
self.qkv = ConvProjection(dim,num_heads,dim//num_heads,bias=qkv_bias)
elif token_projection =='linear_concat':
self.qkv = LinearProjection_Concat_kv(dim,num_heads,dim//num_heads,bias=qkv_bias)
else:
self.qkv = LinearProjection(dim,num_heads,dim//num_heads,bias=qkv_bias)
self.token_projection = token_projection
self.attn_drop = nn.Dropout(attn_drop)
self.proj = nn.Linear(dim, dim)
self.se_layer = SELayer(dim) if se_layer else nn.Identity()
self.proj_drop = nn.Dropout(proj_drop)
trunc_normal_(self.relative_position_bias_table, std=.02)
self.softmax = nn.Softmax(dim=-1)
def forward(self, x, attn_kv=None, mask=None):
B_, N, C = x.shape
q, k, v = self.qkv(x,attn_kv)
q = q * self.scale
attn = (q @ k.transpose(-2, -1))
relative_position_bias = self.relative_position_bias_table[self.relative_position_index.view(-1)].view(
self.win_size[0] * self.win_size[1], self.win_size[0] * self.win_size[1], -1) # Wh*Ww,Wh*Ww,nH
relative_position_bias = relative_position_bias.permute(2, 0, 1).contiguous() # nH, Wh*Ww, Wh*Ww
ratio = attn.size(-1)//relative_position_bias.size(-1)
relative_position_bias = repeat(relative_position_bias, 'nH l c -> nH l (c d)', d = ratio)
attn = attn + relative_position_bias.unsqueeze(0)
if mask is not None:
nW = mask.shape[0]
mask = repeat(mask, 'nW m n -> nW m (n d)',d = ratio)
attn = attn.view(B_ // nW, nW, self.num_heads, N, N*ratio) + mask.unsqueeze(1).unsqueeze(0)
attn = attn.view(-1, self.num_heads, N, N*ratio)
attn = self.softmax(attn)
else:
attn = self.softmax(attn)
attn = self.attn_drop(attn)
x = (attn @ v).transpose(1, 2).reshape(B_, N, C)
x = self.proj(x)
x = self.se_layer(x)
x = self.proj_drop(x)
return x
def extra_repr(self) -> str:
return f'dim={self.dim}, win_size={self.win_size}, num_heads={self.num_heads}'
def flops(self, H, W):
# calculate flops for 1 window with token length of N
# print(N, self.dim)
flops = 0
N = self.win_size[0]*self.win_size[1]
nW = H*W/N
# qkv = self.qkv(x)
# flops += N * self.dim * 3 * self.dim
flops += self.qkv.flops(H, W)
# attn = (q @ k.transpose(-2, -1))
if self.token_projection !='linear_concat':
flops += nW * self.num_heads * N * (self.dim // self.num_heads) * N
# x = (attn @ v)
flops += nW * self.num_heads * N * N * (self.dim // self.num_heads)
else:
flops += nW * self.num_heads * N * (self.dim // self.num_heads) * N*2
# x = (attn @ v)
flops += nW * self.num_heads * N * N*2 * (self.dim // self.num_heads)
# x = self.proj(x)
flops += nW * N * self.dim * self.dim
print("W-MSA:{%.2f}"%(flops/1e9))
return flops
#########################################
########### feed-forward network #############
class Mlp(nn.Module):
def __init__(self, in_features, hidden_features=None, out_features=None, act_layer=nn.GELU, drop=0.):
super().__init__()
out_features = out_features or in_features
hidden_features = hidden_features or in_features
self.fc1 = nn.Linear(in_features, hidden_features)
self.act = act_layer()
self.fc2 = nn.Linear(hidden_features, out_features)
self.drop = nn.Dropout(drop)
self.in_features = in_features
self.hidden_features = hidden_features
self.out_features = out_features
def forward(self, x):
x = self.fc1(x)
x = self.act(x)
x = self.drop(x)
x = self.fc2(x)
x = self.drop(x)
return x
def flops(self, H, W):
flops = 0
# fc1
flops += H*W*self.in_features*self.hidden_features
# fc2
flops += H*W*self.hidden_features*self.out_features
print("MLP:{%.2f}"%(flops/1e9))
return flops
class LeFF(nn.Module):
def __init__(self, dim=32, hidden_dim=128, act_layer=nn.GELU,drop = 0.):
super().__init__()
self.linear1 = nn.Sequential(nn.Linear(dim, hidden_dim),
act_layer())
self.dwconv = nn.Sequential(nn.Conv2d(hidden_dim,hidden_dim,groups=hidden_dim,kernel_size=3,stride=1,padding=1),
act_layer())
self.linear2 = nn.Sequential(nn.Linear(hidden_dim, dim))
self.dim = dim
self.hidden_dim = hidden_dim
def forward(self, x):
# bs x hw x c
bs, hw, c = x.size()
hh = int(math.sqrt(hw))
x = self.linear1(x)
# spatial restore
x = rearrange(x, ' b (h w) (c) -> b c h w ', h = hh, w = hh)
# bs,hidden_dim,32x32
x = self.dwconv(x)
# flaten
x = rearrange(x, ' b c h w -> b (h w) c', h = hh, w = hh)
x = self.linear2(x)
return x
def flops(self, H, W):
flops = 0
# fc1
flops += H*W*self.dim*self.hidden_dim
# dwconv
flops += H*W*self.hidden_dim*3*3
# fc2
flops += H*W*self.hidden_dim*self.dim
print("LeFF:{%.2f}"%(flops/1e9))
return flops
#########################################
########### window operation#############
def window_partition(x, win_size, dilation_rate=1):
B, H, W, C = x.shape
if dilation_rate !=1:
x = x.permute(0,3,1,2) # B, C, H, W
assert type(dilation_rate) is int, 'dilation_rate should be a int'
x = F.unfold(x, kernel_size=win_size,dilation=dilation_rate,padding=4*(dilation_rate-1),stride=win_size) # B, C*Wh*Ww, H/Wh*W/Ww
windows = x.permute(0,2,1).contiguous().view(-1, C, win_size, win_size) # B' ,C ,Wh ,Ww
windows = windows.permute(0,2,3,1).contiguous() # B' ,Wh ,Ww ,C
else:
x = x.view(B, H // win_size, win_size, W // win_size, win_size, C)
windows = x.permute(0, 1, 3, 2, 4, 5).contiguous().view(-1, win_size, win_size, C) # B' ,Wh ,Ww ,C
return windows
def window_reverse(windows, win_size, H, W, dilation_rate=1):
# B' ,Wh ,Ww ,C
B = int(windows.shape[0] / (H * W / win_size / win_size))
x = windows.view(B, H // win_size, W // win_size, win_size, win_size, -1)
if dilation_rate !=1:
x = windows.permute(0,5,3,4,1,2).contiguous() # B, C*Wh*Ww, H/Wh*W/Ww
x = F.fold(x, (H, W), kernel_size=win_size, dilation=dilation_rate, padding=4*(dilation_rate-1),stride=win_size)
else:
x = x.permute(0, 1, 3, 2, 4, 5).contiguous().view(B, H, W, -1)
return x
#########################################
# Downsample Block
class Downsample(nn.Module):
def __init__(self, in_channel, out_channel):
super(Downsample, self).__init__()
self.conv = nn.Sequential(
nn.Conv2d(in_channel, out_channel, kernel_size=4, stride=2, padding=1),
)
self.in_channel = in_channel
self.out_channel = out_channel
def forward(self, x):
B, L, C = x.shape
# import pdb;pdb.set_trace()
H = int(math.sqrt(L))
W = int(math.sqrt(L))
x = x.transpose(1, 2).contiguous().view(B, C, H, W)
out = self.conv(x).flatten(2).transpose(1,2).contiguous() # B H*W C
return out
def flops(self, H, W):
flops = 0
# conv
flops += H/2*W/2*self.in_channel*self.out_channel*4*4
print("Downsample:{%.2f}"%(flops/1e9))
return flops
# Upsample Block
class Upsample(nn.Module):
def __init__(self, in_channel, out_channel):
super(Upsample, self).__init__()
self.deconv = nn.Sequential(
nn.ConvTranspose2d(in_channel, out_channel, kernel_size=2, stride=2),
)
self.in_channel = in_channel
self.out_channel = out_channel
def forward(self, x):
B, L, C = x.shape
H = int(math.sqrt(L))
W = int(math.sqrt(L))
x = x.transpose(1, 2).contiguous().view(B, C, H, W)
out = self.deconv(x).flatten(2).transpose(1,2).contiguous() # B H*W C
return out
def flops(self, H, W):
flops = 0
# conv
flops += H*2*W*2*self.in_channel*self.out_channel*2*2
print("Upsample:{%.2f}"%(flops/1e9))
return flops
class Upsample_advanced(nn.Module):
def __init__(self, in_channel, out_channel,factor):
super(Upsample_advanced, self).__init__()
self.deconv = nn.Sequential(
nn.ConvTranspose2d(in_channel, out_channel, kernel_size=2, stride=factor),
)
self.in_channel = in_channel
self.out_channel = out_channel
def forward(self, x):
B, L, C = x.shape
H = int(math.sqrt(L))
W = int(math.sqrt(L))
x = x.transpose(1, 2).contiguous().view(B, C, H, W)
out = self.deconv(x).flatten(2).transpose(1,2).contiguous() # B H*W C
return out
def flops(self, H, W):
flops = 0
# conv
flops += H*2*W*2*self.in_channel*self.out_channel*2*2
print("Upsample:{%.2f}"%(flops/1e9))
return flops
# Input Projection
class InputProj(nn.Module):
def __init__(self, in_channel=3, out_channel=64, kernel_size=3, stride=1, norm_layer=None,act_layer=nn.LeakyReLU):
super().__init__()
self.proj = nn.Sequential(
nn.Conv2d(in_channel, out_channel, kernel_size=3, stride=stride, padding=kernel_size//2),
act_layer(inplace=True)
)
if norm_layer is not None:
self.norm = norm_layer(out_channel)
else:
self.norm = None
self.in_channel = in_channel
self.out_channel = out_channel
def forward(self, x):
B, C, H, W = x.shape
x = self.proj(x).flatten(2).transpose(1, 2).contiguous() # B H*W C
if self.norm is not None:
x = self.norm(x)
return x
def flops(self, H, W):
flops = 0
# conv
flops += H*W*self.in_channel*self.out_channel*3*3
if self.norm is not None:
flops += H*W*self.out_channel
print("Input_proj:{%.2f}"%(flops/1e9))
return flops
# Output Projection
class OutputProj(nn.Module):
def __init__(self, in_channel=64, out_channel=3, kernel_size=3, stride=1, norm_layer=None,act_layer=None):
super().__init__()
self.proj = nn.Sequential(
nn.Conv2d(in_channel, out_channel, kernel_size=3, stride=stride, padding=kernel_size//2),
)
if act_layer is not None:
self.proj.add_module(act_layer(inplace=True))
if norm_layer is not None:
self.norm = norm_layer(out_channel)
else:
self.norm = None
self.in_channel = in_channel
self.out_channel = out_channel
def forward(self, x):
B, L, C = x.shape
H = int(math.sqrt(L))
W = int(math.sqrt(L))
x = x.transpose(1, 2).view(B, C, H, W)
x = self.proj(x)
if self.norm is not None:
x = self.norm(x)
return x
def flops(self, H, W):
flops = 0
# conv
flops += H*W*self.in_channel*self.out_channel*3*3
if self.norm is not None:
flops += H*W*self.out_channel
print("Output_proj:{%.2f}"%(flops/1e9))
return flops
class LeWinTransformerBlock(nn.Module):
def __init__(self, dim, input_resolution, num_heads, win_size=8, shift_size=0,
mlp_ratio=4., qkv_bias=True, qk_scale=None, drop=0., attn_drop=0., drop_path=0.,
act_layer=nn.GELU, norm_layer=nn.LayerNorm,token_projection='linear',token_mlp='leff',se_layer=False):
super().__init__()
self.dim = dim
self.input_resolution = input_resolution
self.num_heads = num_heads
self.win_size = win_size
self.shift_size = shift_size
self.mlp_ratio = mlp_ratio
self.token_mlp = token_mlp
if min(self.input_resolution) <= self.win_size:
self.shift_size = 0
self.win_size = min(self.input_resolution)
assert 0 <= self.shift_size < self.win_size, "shift_size must in 0-win_size"
self.norm1 = norm_layer(dim)
self.attn = WindowAttention(
dim, win_size=to_2tuple(self.win_size), num_heads=num_heads,
qkv_bias=qkv_bias, qk_scale=qk_scale, attn_drop=attn_drop, proj_drop=drop,
token_projection=token_projection,se_layer=se_layer)
self.drop_path = DropPath(drop_path) if drop_path > 0. else nn.Identity()
self.norm2 = norm_layer(dim)
mlp_hidden_dim = int(dim * mlp_ratio)
self.mlp = Mlp(in_features=dim, hidden_features=mlp_hidden_dim,act_layer=act_layer, drop=drop) if token_mlp=='ffn' else LeFF(dim,mlp_hidden_dim,act_layer=act_layer, drop=drop)
def extra_repr(self) -> str:
return f"dim={self.dim}, input_resolution={self.input_resolution}, num_heads={self.num_heads}, " \
f"win_size={self.win_size}, shift_size={self.shift_size}, mlp_ratio={self.mlp_ratio}"
def forward(self, x, mask=None):
B, L, C = x.shape
H = int(math.sqrt(L))
W = int(math.sqrt(L))
## input mask
if mask != None:
input_mask = F.interpolate(mask, size=(H,W)).permute(0,2,3,1)
input_mask_windows = window_partition(input_mask, self.win_size) # nW, win_size, win_size, 1
attn_mask = input_mask_windows.view(-1, self.win_size * self.win_size) # nW, win_size*win_size
attn_mask = attn_mask.unsqueeze(2)*attn_mask.unsqueeze(1) # nW, win_size*win_size, win_size*win_size
attn_mask = attn_mask.masked_fill(attn_mask!=0, float(-100.0)).masked_fill(attn_mask == 0, float(0.0))
else:
attn_mask = None
## shift mask
if self.shift_size > 0:
# calculate attention mask for SW-MSA
shift_mask = torch.zeros((1, H, W, 1)).type_as(x)
h_slices = (slice(0, -self.win_size),
slice(-self.win_size, -self.shift_size),
slice(-self.shift_size, None))
w_slices = (slice(0, -self.win_size),
slice(-self.win_size, -self.shift_size),
slice(-self.shift_size, None))
cnt = 0
for h in h_slices:
for w in w_slices:
shift_mask[:, h, w, :] = cnt
cnt += 1
shift_mask_windows = window_partition(shift_mask, self.win_size) # nW, win_size, win_size, 1
shift_mask_windows = shift_mask_windows.view(-1, self.win_size * self.win_size) # nW, win_size*win_size
shift_attn_mask = shift_mask_windows.unsqueeze(1) - shift_mask_windows.unsqueeze(2) # nW, win_size*win_size, win_size*win_size
shift_attn_mask = shift_attn_mask.masked_fill(shift_attn_mask != 0, float(-100.0)).masked_fill(shift_attn_mask == 0, float(0.0))
attn_mask = attn_mask + shift_attn_mask if attn_mask is not None else shift_attn_mask
shortcut = x
x = self.norm1(x)
x = x.view(B, H, W, C)
# cyclic shift
if self.shift_size > 0:
shifted_x = torch.roll(x, shifts=(-self.shift_size, -self.shift_size), dims=(1, 2))
else:
shifted_x = x
# partition windows
x_windows = window_partition(shifted_x, self.win_size) # nW*B, win_size, win_size, C N*C->C
x_windows = x_windows.view(-1, self.win_size * self.win_size, C) # nW*B, win_size*win_size, C
# W-MSA/SW-MSA
attn_windows = self.attn(x_windows, mask=attn_mask) # nW*B, win_size*win_size, C
# merge windows
attn_windows = attn_windows.view(-1, self.win_size, self.win_size, C)
shifted_x = window_reverse(attn_windows, self.win_size, H, W) # B H' W' C
# reverse cyclic shift
if self.shift_size > 0:
x = torch.roll(shifted_x, shifts=(self.shift_size, self.shift_size), dims=(1, 2))
else:
x = shifted_x
x = x.view(B, H * W, C)
# FFN
x = shortcut + self.drop_path(x)
x = x + self.drop_path(self.mlp(self.norm2(x)))
del attn_mask
return x
def flops(self):
flops = 0
H, W = self.input_resolution
# norm1
flops += self.dim * H * W
# W-MSA/SW-MSA
flops += self.attn.flops(H, W)
# norm2
flops += self.dim * H * W
# mlp
flops += self.mlp.flops(H,W)
print("LeWin:{%.2f}"%(flops/1e9))
return flops
class TRANSFORMER_BLOCK(nn.Module):
def __init__(self, dim, output_dim, input_resolution, depth, num_heads, win_size,
mlp_ratio=4., qkv_bias=True, qk_scale=None, drop=0., attn_drop=0.,
drop_path=0., norm_layer=nn.LayerNorm, use_checkpoint=False,
token_projection='linear',token_mlp='ffn',se_layer=False):
super().__init__()
self.dim = dim
self.input_resolution = input_resolution
self.depth = depth
self.use_checkpoint = use_checkpoint
# build blocks
self.blocks = nn.ModuleList([
LeWinTransformerBlock(dim=dim, input_resolution=input_resolution,
num_heads=num_heads, win_size=win_size,
shift_size=0 if (i % 2 == 0) else win_size // 2,
mlp_ratio=mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop, attn_drop=attn_drop,
drop_path=drop_path[i] if isinstance(drop_path, list) else drop_path,
norm_layer=norm_layer,token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
for i in range(depth)])
def extra_repr(self) -> str:
return f"dim={self.dim}, input_resolution={self.input_resolution}, depth={self.depth}"
def forward(self, x, mask=None):
for blk in self.blocks:
if self.use_checkpoint:
x = checkpoint.checkpoint(blk, x)
else:
x = blk(x,mask)
return x
def flops(self):
flops = 0
for blk in self.blocks:
flops += blk.flops()
return flops
class Network(nn.Module):
def __init__(self, img_size=128, in_chans=3,
embed_dim=32, depths=[2, 2, 2, 2, 2, 2, 2, 2, 2], num_heads=[1, 2, 4, 8, 16, 16, 8, 4, 2],
win_size=8, mlp_ratio=4., qkv_bias=True, qk_scale=None,
drop_rate=0., attn_drop_rate=0., drop_path_rate=0.1,
norm_layer=nn.LayerNorm, patch_norm=True,
use_checkpoint=False, token_projection='linear', token_mlp='ffn', se_layer=False,
dowsample=Downsample, upsample=Upsample, **kwargs):
super().__init__()
self.num_enc_layers = len(depths)//2
self.num_dec_layers = len(depths)//2
self.embed_dim = embed_dim
self.patch_norm = patch_norm
self.mlp_ratio = mlp_ratio
self.token_projection = token_projection
self.mlp = token_mlp
self.win_size =win_size
self.reso = img_size
self.pos_drop = nn.Dropout(p=drop_rate)
# stochastic depth
enc_dpr = [x.item() for x in torch.linspace(0, drop_path_rate, sum(depths[:self.num_enc_layers]))]
conv_dpr = [drop_path_rate]*depths[4]
dec_dpr = enc_dpr[::-1]
# build layers
# Input/Output
self.input_proj = InputProj(in_channel=in_chans, out_channel=embed_dim, kernel_size=3, stride=1, act_layer=nn.LeakyReLU)
self.output_proj = OutputProj(in_channel=3*embed_dim, out_channel=in_chans, kernel_size=3, stride=1)
self.output_proj1 = OutputProj(in_channel=embed_dim, out_channel=in_chans, kernel_size=3, stride=1)
# Encoder
self.encoderlayer_0 = TRANSFORMER_BLOCK(dim=embed_dim,
output_dim=embed_dim,
input_resolution=(img_size,
img_size),
depth=depths[0],
num_heads=num_heads[0],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:0]):sum(depths[:1])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.dowsample_0 = dowsample(embed_dim, embed_dim*2)
self.hs_downsample = dowsample(embed_dim, embed_dim)
self.hs_upsample = upsample(3*embed_dim,embed_dim)
self.qs_upsample = upsample(5*embed_dim,embed_dim)
self.qs_upsample1 = upsample(embed_dim,embed_dim)
self.upsample_poolup1 = upsample(3*embed_dim,embed_dim)
self.upsample_poolup2 = upsample(5*embed_dim,embed_dim*3)
self.encoderlayer_1 = TRANSFORMER_BLOCK(dim=embed_dim*3,
output_dim=embed_dim*2,
input_resolution=(img_size // 2,
img_size // 2),
depth=depths[1],
num_heads=num_heads[1],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:1]):sum(depths[:2])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.dowsample_1 = dowsample(embed_dim*3, embed_dim*4)
self.encoderlayer_2 = TRANSFORMER_BLOCK(dim=embed_dim*5,
output_dim=embed_dim*4,
input_resolution=(img_size // (2 ** 2),
img_size // (2 ** 2)),
depth=depths[2],
num_heads=num_heads[2],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:2]):sum(depths[:3])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.dowsample_2 = dowsample(embed_dim*5, embed_dim*8)
self.encoderlayer_3 = TRANSFORMER_BLOCK(dim=embed_dim*8,
output_dim=embed_dim*8,
input_resolution=(img_size // (2 ** 3),
img_size // (2 ** 3)),
depth=depths[3],
num_heads=num_heads[3],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:3]):sum(depths[:4])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.dowsample_3 = dowsample(embed_dim*8, embed_dim*16)
# Bottleneck
self.conv = TRANSFORMER_BLOCK(dim=embed_dim*9,
output_dim=embed_dim*8,
input_resolution=(img_size // (2 ** 4),
img_size // (2 ** 4)),
depth=depths[4],
num_heads=num_heads[4],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=conv_dpr,
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
# Decoder
self.upsample_0 = upsample(embed_dim*9, embed_dim*8)
self.decoderlayer_0 = TRANSFORMER_BLOCK(dim=embed_dim*14,
output_dim=embed_dim*16,
input_resolution=(img_size // (2 ** 3),
img_size // (2 ** 3)),
depth=depths[5],
num_heads=num_heads[5],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=dec_dpr[:depths[5]],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.upsample_1 = upsample(embed_dim*14, embed_dim*4)
self.decoderlayer_1 = TRANSFORMER_BLOCK(dim=embed_dim*8,
output_dim=embed_dim*8,
input_resolution=(img_size // (2 ** 2),
img_size // (2 ** 2)),
depth=depths[6],
num_heads=num_heads[6],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=dec_dpr[sum(depths[5:6]):sum(depths[5:7])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.upsample_2 = upsample(embed_dim*8, embed_dim*2)
self.decoderlayer_2 = TRANSFORMER_BLOCK(dim=embed_dim*3,
output_dim=embed_dim*4,
input_resolution=(img_size // 2,
img_size // 2),
depth=depths[7],
num_heads=num_heads[7],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=dec_dpr[sum(depths[5:7]):sum(depths[5:8])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.upsample_3 = upsample(embed_dim*4, embed_dim)
self.decoderlayer_3 = TRANSFORMER_BLOCK(dim=embed_dim*2,
output_dim=embed_dim*2,
input_resolution=(img_size,
img_size),
depth=depths[8],
num_heads=num_heads[8],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=dec_dpr[sum(depths[5:8]):sum(depths[5:9])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
# 1/2 scale stream
self.hs1 = TRANSFORMER_BLOCK(dim=embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // 2,
img_size // 2),
depth=depths[1],
num_heads=num_heads[1],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:1]):sum(depths[:2])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.hs2 = TRANSFORMER_BLOCK(dim=3*embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // 2,
img_size // 2),
depth=depths[1],
num_heads=num_heads[1],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:1]):sum(depths[:2])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.hs3 = TRANSFORMER_BLOCK(dim=3*embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // 2,
img_size // 2),
depth=depths[1],
num_heads=num_heads[1],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:1]):sum(depths[:2])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.hs4 = TRANSFORMER_BLOCK(dim=3*embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // 2,
img_size // 2),
depth=depths[1],
num_heads=num_heads[1],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:1]):sum(depths[:2])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.qs1 = TRANSFORMER_BLOCK(dim=embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // (2 ** 2),
img_size // (2 ** 2)),
depth=depths[2],
num_heads=num_heads[2],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:2]):sum(depths[:3])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.qs2 = TRANSFORMER_BLOCK(dim=5*embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // (2 ** 2),
img_size // (2 ** 2)),
depth=depths[2],
num_heads=num_heads[2],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:2]):sum(depths[:3])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.qs3 = TRANSFORMER_BLOCK(dim=5*embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // (2 ** 2),
img_size // (2 ** 2)),
depth=depths[2],
num_heads=num_heads[2],
win_size=win_size,
mlp_ratio=self.mlp_ratio,
qkv_bias=qkv_bias, qk_scale=qk_scale,
drop=drop_rate, attn_drop=attn_drop_rate,
drop_path=enc_dpr[sum(depths[:2]):sum(depths[:3])],
norm_layer=norm_layer,
use_checkpoint=use_checkpoint,
token_projection=token_projection,token_mlp=token_mlp,se_layer=se_layer)
self.qs4 = TRANSFORMER_BLOCK(dim=5*embed_dim,
output_dim=embed_dim,
input_resolution=(img_size // (2 ** 2),
img_size // (2 ** 2)),
depth=depths[2],