-
Notifications
You must be signed in to change notification settings - Fork 28
/
UNet.py
448 lines (390 loc) · 15 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
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
# https://github.com/openai/guided-diffusion/tree/27c20a8fab9cb472df5d6bdd6c8d11c8f430b924
import math
from abc import abstractmethod
import numpy as np
import torch
import torch.nn.functional as F
from torch import nn
class TimestepBlock(nn.Module):
"""
Any module where forward() takes timestep embeddings as a second argument.
"""
@abstractmethod
def forward(self, x, emb):
"""
Apply the module to `x` given `emb` timestep embeddings.
"""
class TimestepEmbedSequential(nn.Sequential, TimestepBlock):
"""
A sequential module that passes timestep embeddings to the children that
support it as an extra input.
"""
def forward(self, x, emb):
for layer in self:
if isinstance(layer, TimestepBlock):
x = layer(x, emb)
else:
x = layer(x)
return x
class PositionalEmbedding(nn.Module):
# PositionalEmbedding
"""
Computes Positional Embedding of the timestep
"""
def __init__(self, dim, scale=1):
super().__init__()
assert dim % 2 == 0
self.dim = dim
self.scale = scale
def forward(self, x):
device = x.device
half_dim = self.dim // 2
emb = np.log(10000) / half_dim
emb = torch.exp(torch.arange(half_dim, device=device) * -emb)
emb = torch.outer(x * self.scale, emb)
emb = torch.cat((emb.sin(), emb.cos()), dim=-1)
return emb
class Downsample(nn.Module):
def __init__(self, in_channels, use_conv, out_channels=None):
super().__init__()
self.channels = in_channels
out_channels = out_channels or in_channels
if use_conv:
# downsamples by 1/2
self.downsample = nn.Conv2d(in_channels, out_channels, 3, stride=2, padding=1)
else:
assert in_channels == out_channels
self.downsample = nn.AvgPool2d(kernel_size=2, stride=2)
def forward(self, x, time_embed=None):
assert x.shape[1] == self.channels
return self.downsample(x)
class Upsample(nn.Module):
def __init__(self, in_channels, use_conv, out_channels=None):
super().__init__()
self.channels = in_channels
self.use_conv = use_conv
# uses upsample then conv to avoid checkerboard artifacts
# self.upsample = nn.Upsample(scale_factor=2, mode="nearest")
if use_conv:
self.conv = nn.Conv2d(in_channels, out_channels, 3, padding=1)
def forward(self, x, time_embed=None):
assert x.shape[1] == self.channels
x = F.interpolate(x, scale_factor=2, mode="nearest")
if self.use_conv:
x = self.conv(x)
return x
class AttentionBlock(nn.Module):
"""
An attention block that allows spatial positions to attend to each other.
Originally ported from here, but adapted to the N-d case.
https://github.com/hojonathanho/diffusion/blob/1e0dceb3b3495bbe19116a5e1b3596cd0706c543/diffusion_tf/models/unet.py#L66.
"""
def __init__(self, in_channels, n_heads=1, n_head_channels=-1):
super().__init__()
self.in_channels = in_channels
self.norm = GroupNorm32(32, self.in_channels)
if n_head_channels == -1:
self.num_heads = n_heads
else:
assert (
in_channels % n_head_channels == 0
), f"q,k,v channels {in_channels} is not divisible by num_head_channels {n_head_channels}"
self.num_heads = in_channels // n_head_channels
# query, key, value for attention
self.to_qkv = nn.Conv1d(in_channels, in_channels * 3, 1)
self.attention = QKVAttention(self.num_heads)
self.proj_out = zero_module(nn.Conv1d(in_channels, in_channels, 1))
def forward(self, x, time=None):
b, c, *spatial = x.shape
x = x.reshape(b, c, -1)
qkv = self.to_qkv(self.norm(x))
h = self.attention(qkv)
h = self.proj_out(h)
return (x + h).reshape(b, c, *spatial)
class QKVAttention(nn.Module):
"""
A module which performs QKV attention. Matches legacy QKVAttention + input/ouput heads shaping
"""
def __init__(self, n_heads):
super().__init__()
self.n_heads = n_heads
def forward(self, qkv, time=None):
"""
Apply QKV attention.
:param qkv: an [N x (H * 3 * C) x T] tensor of Qs, Ks, and Vs.
:return: an [N x (H * C) x T] tensor after attention.
"""
bs, width, length = qkv.shape
assert width % (3 * self.n_heads) == 0
ch = width // (3 * self.n_heads)
q, k, v = qkv.reshape(bs * self.n_heads, ch * 3, length).split(ch, dim=1)
scale = 1 / math.sqrt(math.sqrt(ch))
weight = torch.einsum(
"bct,bcs->bts", q * scale, k * scale
) # More stable with f16 than dividing afterwards
weight = torch.softmax(weight.float(), dim=-1).type(weight.dtype)
a = torch.einsum("bts,bcs->bct", weight, v)
return a.reshape(bs, -1, length)
class ResBlock(TimestepBlock):
def __init__(
self,
in_channels,
time_embed_dim,
dropout,
out_channels=None,
use_conv=False,
up=False,
down=False
):
super().__init__()
out_channels = out_channels or in_channels
self.in_layers = nn.Sequential(
GroupNorm32(32, in_channels),
nn.SiLU(),
nn.Conv2d(in_channels, out_channels, 3, padding=1)
)
self.updown = up or down
if up:
self.h_upd = Upsample(in_channels, False)
self.x_upd = Upsample(in_channels, False)
elif down:
self.h_upd = Downsample(in_channels, False)
self.x_upd = Downsample(in_channels, False)
else:
self.h_upd = self.x_upd = nn.Identity()
self.embed_layers = nn.Sequential(
nn.SiLU(),
nn.Linear(time_embed_dim, out_channels)
)
self.out_layers = nn.Sequential(
GroupNorm32(32, out_channels),
nn.SiLU(),
nn.Dropout(p=dropout),
zero_module(nn.Conv2d(out_channels, out_channels, 3, padding=1))
)
if out_channels == in_channels:
self.skip_connection = nn.Identity()
elif use_conv:
self.skip_connection = nn.Conv2d(in_channels, out_channels, 3, padding=1)
else:
self.skip_connection = nn.Conv2d(in_channels, out_channels, 1)
def forward(self, x, time_embed):
if self.updown:
in_rest, in_conv = self.in_layers[:-1], self.in_layers[-1]
h = in_rest(x)
h = self.h_upd(h)
x = self.x_upd(x)
h = in_conv(h)
else:
h = self.in_layers(x)
emb_out = self.embed_layers(time_embed).type(h.dtype)
while len(emb_out.shape) < len(h.shape):
emb_out = emb_out[..., None]
h = h + emb_out
h = self.out_layers(h)
return self.skip_connection(x) + h
class UNetModel(nn.Module):
# UNet model
def __init__(
self,
img_size,
base_channels,
conv_resample=True,
n_heads=1,
n_head_channels=-1,
channel_mults="",
num_res_blocks=2,
dropout=0,
attention_resolutions="32,16,8",
biggan_updown=True,
in_channels=1
):
self.dtype = torch.float32
super().__init__()
if channel_mults == "":
if img_size == 512:
channel_mults = (0.5, 1, 1, 2, 2, 4, 4)
elif img_size == 256:
channel_mults = (1, 1, 2, 2, 4, 4)
elif img_size == 128:
channel_mults = (1, 1, 2, 3, 4)
elif img_size == 64:
channel_mults = (1, 2, 3, 4)
elif img_size == 32:
channel_mults = (1, 2, 3, 4)
else:
raise ValueError(f"unsupported image size: {img_size}")
attention_ds = []
for res in attention_resolutions.split(","):
attention_ds.append(img_size // int(res))
self.image_size = img_size
self.in_channels = in_channels
self.model_channels = base_channels
self.out_channels = in_channels
self.num_res_blocks = num_res_blocks
self.attention_resolutions = attention_resolutions
self.dropout = dropout
self.channel_mult = channel_mults
self.conv_resample = conv_resample
self.dtype = torch.float32
self.num_heads = n_heads
self.num_head_channels = n_head_channels
time_embed_dim = base_channels * 4
self.time_embedding = nn.Sequential(
PositionalEmbedding(base_channels, 1),
nn.Linear(base_channels, time_embed_dim),
nn.SiLU(),
nn.Linear(time_embed_dim, time_embed_dim),
)
ch = int(channel_mults[0] * base_channels)
self.down = nn.ModuleList(
[TimestepEmbedSequential(nn.Conv2d(self.in_channels, base_channels, 3, padding=1))]
)
channels = [ch]
ds = 1
for i, mult in enumerate(channel_mults):
# out_channels = base_channels * mult
for _ in range(num_res_blocks):
layers = [ResBlock(
ch,
time_embed_dim=time_embed_dim,
out_channels=base_channels * mult,
dropout=dropout,
)]
ch = base_channels * mult
# channels.append(ch)
if ds in attention_ds:
layers.append(
AttentionBlock(
ch,
n_heads=n_heads,
n_head_channels=n_head_channels,
)
)
self.down.append(TimestepEmbedSequential(*layers))
channels.append(ch)
if i != len(channel_mults) - 1:
out_channels = ch
self.down.append(
TimestepEmbedSequential(
ResBlock(
ch,
time_embed_dim=time_embed_dim,
out_channels=out_channels,
dropout=dropout,
down=True
)
if biggan_updown
else
Downsample(ch, conv_resample, out_channels=out_channels)
)
)
ds *= 2
ch = out_channels
channels.append(ch)
self.middle = TimestepEmbedSequential(
ResBlock(
ch,
time_embed_dim=time_embed_dim,
dropout=dropout
),
AttentionBlock(
ch,
n_heads=n_heads,
n_head_channels=n_head_channels
),
ResBlock(
ch,
time_embed_dim=time_embed_dim,
dropout=dropout
)
)
self.up = nn.ModuleList([])
for i, mult in reversed(list(enumerate(channel_mults))):
for j in range(num_res_blocks + 1):
inp_chs = channels.pop()
layers = [
ResBlock(
ch + inp_chs,
time_embed_dim=time_embed_dim,
out_channels=base_channels * mult,
dropout=dropout
)
]
ch = base_channels * mult
if ds in attention_ds:
layers.append(
AttentionBlock(
ch,
n_heads=n_heads,
n_head_channels=n_head_channels
),
)
if i and j == num_res_blocks:
out_channels = ch
layers.append(
ResBlock(
ch,
time_embed_dim=time_embed_dim,
out_channels=out_channels,
dropout=dropout,
up=True
)
if biggan_updown
else
Upsample(ch, conv_resample, out_channels=out_channels)
)
ds //= 2
self.up.append(TimestepEmbedSequential(*layers))
self.out = nn.Sequential(
GroupNorm32(32, ch),
nn.SiLU(),
zero_module(nn.Conv2d(base_channels * channel_mults[0], self.out_channels, 3, padding=1))
)
def forward(self, x, time):
time_embed = self.time_embedding(time)
skips = []
h = x.type(self.dtype)
for i, module in enumerate(self.down):
h = module(h, time_embed)
skips.append(h)
h = self.middle(h, time_embed)
for i, module in enumerate(self.up):
h = torch.cat([h, skips.pop()], dim=1)
h = module(h, time_embed)
h = h.type(x.dtype)
h = self.out(h)
return h
class GroupNorm32(nn.GroupNorm):
def forward(self, x):
return super().forward(x.float()).type(x.dtype)
def zero_module(module):
"""
Zero out the parameters of a module and return it.
"""
for p in module.parameters():
p.detach().zero_()
return module
def update_ema_params(target, source, decay_rate=0.9999):
targParams = dict(target.named_parameters())
srcParams = dict(source.named_parameters())
for k in targParams:
targParams[k].data.mul_(decay_rate).add_(srcParams[k].data, alpha=1 - decay_rate)
if __name__ == "__main__":
args = {
'img_size': 256,
'base_channels': 64,
'dropout': 0.3,
'num_heads': 4,
'num_head_channels': '32,16,8',
'lr': 1e-4,
'Batch_Size': 64
}
model = UNetModel(
args['img_size'], args['base_channels'], dropout=args[
"dropout"], n_heads=args["num_heads"], attention_resolutions=args["num_head_channels"],
in_channels=3
)
x = torch.randn(1, 3, 512, 512)
t_batch = torch.tensor([1], device=x.device).repeat(x.shape[0])
print(model(x, t_batch).shape)