-
Notifications
You must be signed in to change notification settings - Fork 0
/
unet.py
206 lines (171 loc) · 6.28 KB
/
unet.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
# References:
# https://github.com/w86763777/pytorch-ddpm/blob/master/model.py
import torch
from torch import nn
from torch.nn import functional as F
import math
class Swish(nn.Module):
def forward(self, x):
return x * torch.sigmoid(x)
class TimeEmbedding(nn.Module):
def __init__(self, max_len, d_model, dim):
assert d_model % 2 == 0
super().__init__()
emb = torch.arange(0, d_model, step=2) / d_model * math.log(10000)
emb = torch.exp(-emb)
pos = torch.arange(max_len).float()
emb = pos[:, None] * emb[None, :]
assert list(emb.shape) == [max_len, d_model // 2]
emb = torch.stack([torch.sin(emb), torch.cos(emb)], dim=-1)
assert list(emb.shape) == [max_len, d_model // 2, 2]
emb = emb.view(max_len, d_model)
self.timembedding = nn.Sequential(
nn.Embedding.from_pretrained(emb),
nn.Linear(d_model, dim),
Swish(),
nn.Linear(dim, dim),
)
def forward(self, t):
emb = self.timembedding(t)
return emb
class DownSample(nn.Module):
def __init__(self, in_ch):
super().__init__()
self.main = nn.Conv2d(in_ch, in_ch, 3, stride=2, padding=1)
def forward(self, x):
x = self.main(x)
return x
class UpSample(nn.Module):
def __init__(self, in_ch):
super().__init__()
self.main = nn.Conv2d(in_ch, in_ch, 3, stride=1, padding=1)
def forward(self, x):
x = F.interpolate(x, scale_factor=2, mode="nearest")
x = self.main(x)
return x
class AttnBlock(nn.Module):
def __init__(self, in_ch):
super().__init__()
self.group_norm = nn.GroupNorm(32, in_ch)
self.proj_q = nn.Conv2d(in_ch, in_ch, 1, stride=1, padding=0)
self.proj_k = nn.Conv2d(in_ch, in_ch, 1, stride=1, padding=0)
self.proj_v = nn.Conv2d(in_ch, in_ch, 1, stride=1, padding=0)
self.proj = nn.Conv2d(in_ch, in_ch, 1, stride=1, padding=0)
def forward(self, x):
B, C, H, W = x.shape
h = self.group_norm(x)
q = self.proj_q(h)
k = self.proj_k(h)
v = self.proj_v(h)
q = q.permute(0, 2, 3, 1).view(B, H * W, C)
k = k.view(B, C, H * W)
w = torch.bmm(q, k) * (int(C) ** (-0.5))
assert list(w.shape) == [B, H * W, H * W]
w = F.softmax(w, dim=-1)
v = v.permute(0, 2, 3, 1).view(B, H * W, C)
h = torch.bmm(w, v)
assert list(h.shape) == [B, H * W, C]
h = h.view(B, H, W, C).permute(0, 3, 1, 2)
h = self.proj(h)
return x + h
class ResBlock(nn.Module):
def __init__(self, in_ch, out_ch, tdim, dropout, attn=False):
super().__init__()
self.block1 = nn.Sequential(
nn.GroupNorm(32, in_ch),
Swish(),
nn.Conv2d(in_ch, out_ch, 3, stride=1, padding=1),
)
self.temb_proj = nn.Sequential(
Swish(),
nn.Linear(tdim, out_ch),
)
self.block2 = nn.Sequential(
nn.GroupNorm(32, out_ch),
Swish(),
nn.Dropout(dropout),
nn.Conv2d(out_ch, out_ch, 3, stride=1, padding=1),
)
if in_ch != out_ch:
self.shortcut = nn.Conv2d(in_ch, out_ch, 1, stride=1, padding=0)
else:
self.shortcut = nn.Identity()
if attn:
self.attn = AttnBlock(out_ch)
else:
self.attn = nn.Identity()
def forward(self, x, temb):
h = self.block1(x)
h = h + self.temb_proj(temb)[:, :, None, None]
h = self.block2(h)
h = h + self.shortcut(x)
h = self.attn(h)
return h
class UNet(nn.Module):
def __init__(self, ch=128, ch_mult=[1, 2, 2, 2], attn=[1], num_res_blocks=2, dropout=0.1):
super().__init__()
assert all([i < len(ch_mult) for i in attn]), "attn index out of bound"
tdim = ch * 4
self.time_embedding = TimeEmbedding(max_len=1000, d_model=ch, dim=tdim)
self.head = nn.Conv2d(3, ch, kernel_size=3, stride=1, padding=1)
self.downblocks = nn.ModuleList()
cxs = [ch] # record output channel when dowmsample for upsample
cur_ch = ch
for i, mult in enumerate(ch_mult):
out_ch = ch * mult
for _ in range(num_res_blocks):
self.downblocks.append(
ResBlock(
in_ch=cur_ch,
out_ch=out_ch,
tdim=tdim,
dropout=dropout,
attn=(i in attn)
)
)
cur_ch = out_ch
cxs.append(cur_ch)
if i != len(ch_mult) - 1:
self.downblocks.append(DownSample(cur_ch))
cxs.append(cur_ch)
self.middleblocks = nn.ModuleList([
ResBlock(cur_ch, cur_ch, tdim, dropout, attn=True),
ResBlock(cur_ch, cur_ch, tdim, dropout, attn=False),
])
self.upblocks = nn.ModuleList()
for i, mult in reversed(list(enumerate(ch_mult))):
out_ch = ch * mult
for _ in range(num_res_blocks + 1):
self.upblocks.append(ResBlock(
in_ch=cxs.pop() + cur_ch, out_ch=out_ch, tdim=tdim,
dropout=dropout, attn=(i in attn)))
cur_ch = out_ch
if i != 0:
self.upblocks.append(UpSample(cur_ch))
assert len(cxs) == 0
self.tail = nn.Sequential(
nn.GroupNorm(32, cur_ch),
Swish(),
nn.Conv2d(cur_ch, 3, kernel_size=3, stride=1, padding=1)
)
def forward(self, noisy_image, diffusion_step):
temb = self.time_embedding(diffusion_step)
x = self.head(noisy_image)
xs = [x]
for layer in self.downblocks:
if isinstance(layer, DownSample):
x = layer(x)
else:
x = layer(x, temb)
xs.append(x)
for layer in self.middleblocks:
x = layer(x, temb)
for layer in self.upblocks:
if isinstance(layer, UpSample):
x = layer(x)
else:
x = torch.cat([x, xs.pop()], dim=1)
x = layer(x, temb)
x = self.tail(x)
assert len(xs) == 0
return x