forked from yoshall/AirFormer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
airformer.py
480 lines (410 loc) · 18 KB
/
airformer.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
import torch
import torch.nn as nn
import torch.nn.functional as F
from src.base.model import BaseModel
from src.layers.embedding import AirEmbedding
import numpy as np
dartboard_map = {0: '50-200',
1: '50-200-500',
2: '50',
3: '25-100-250'}
class LatentLayer(nn.Module):
'''
The latent layer to compute mean and std
'''
def __init__(self,
dm_dim, # the dimension of deterministic states
latent_dim_in, # the dimension of input latent variables
latent_dim_out, # the dimension of output latent variables
hidden_dim, # the intermediate dimension
num_layers=2):
super(LatentLayer, self).__init__()
self.num_layers = num_layers
self.enc_in = nn.Sequential(
nn.Conv2d(dm_dim+latent_dim_in, hidden_dim, 1))
layers = []
for _ in range(num_layers):
layers.append(nn.Conv2d(hidden_dim, hidden_dim, 1))
layers.append(nn.ReLU(inplace=True))
self.enc_hidden = nn.Sequential(*layers)
self.enc_out_1 = nn.Conv2d(hidden_dim, latent_dim_out, 1)
self.enc_out_2 = nn.Conv2d(hidden_dim, latent_dim_out, 1)
def forward(self, x):
# x: [b, c, n, t]
h = self.enc_in(x)
for i in range(self.num_layers):
h = self.enc_hidden[i](h)
mu = torch.minimum(self.enc_out_1(h), torch.ones_like(h)*10)
sigma = torch.minimum(self.enc_out_2(h), torch.ones_like(h)*10)
return mu, sigma
class StochasticModel(nn.Module):
'''
The generative model.
The inference model can also use this implementation, while the input should be shifted
'''
def __init__(self,
dm_dim, # the dimension of the deterministic states
latent_dim, # the dimension of the latent variables
num_blocks=4):
super(StochasticModel, self).__init__()
self.layers = nn.ModuleList()
# the bottom n-1 layers
for _ in range(num_blocks-1):
self.layers.append(
LatentLayer(dm_dim,
latent_dim,
latent_dim,
latent_dim,
2))
# the top layer
self.layers.append(
LatentLayer(dm_dim,
0,
latent_dim,
latent_dim,
2))
def reparameterize(self, mu, sigma):
eps = torch.randn_like(sigma, requires_grad=False)
return mu + eps*sigma
def forward(self, d):
# d: [num_blocks, b, c, n, t]
# top-down
_mu, _logsigma = self.layers[-1](d[-1])
_sigma = torch.exp(_logsigma) + 1e-3 # for numerical stability
mus = [_mu]
sigmas = [_sigma]
z = [self.reparameterize(_mu, _sigma)]
for i in reversed(range(len(self.layers)-1)):
_mu, _logsigma = self.layers[i](torch.cat((d[i], z[-1]), dim=1))
_sigma = torch.exp(_logsigma) + 1e-3
mus.append(_mu)
sigmas.append(_sigma)
z.append(self.reparameterize(_mu, _sigma))
z = torch.stack(z)
mus = torch.stack(mus)
sigmas = torch.stack(sigmas)
return z, mus, sigmas
class AirFormer(BaseModel):
'''
the AirFormer model
'''
def __init__(self,
dropout=0.3, # dropout rate
spatial_flag=True, # whether to use DS-MSA
stochastic_flag=True, # whether to use latent vairables
hidden_channels=32, # hidden dimension
end_channels=512, # the decoder dimension
blocks=4, # the number of stacked AirFormer blocks
mlp_expansion=2, # the mlp expansion rate in transformers
num_heads=2, # the number of heads
dartboard=0, # the type of dartboard
**args):
super(AirFormer, self).__init__(**args)
self.dropout = dropout
self.blocks = blocks
self.spatial_flag = spatial_flag
self.stochastic_flag = stochastic_flag
self.residual_convs = nn.ModuleList()
self.skip_convs = nn.ModuleList()
self.bn = nn.ModuleList()
self.s_modules = nn.ModuleList()
self.t_modules = nn.ModuleList()
self.embedding_air = AirEmbedding()
self.alpha = 10 # the coefficient of kl loss
self.get_dartboard_info(dartboard)
# a conv for converting the input to the embedding
self.start_conv = nn.Conv2d(in_channels=self.input_dim,
out_channels=hidden_channels,
kernel_size=(1, 1))
for b in range(blocks):
window_size = self.seq_len // 2 ** (blocks - b - 1)
self.t_modules.append(CT_MSA(hidden_channels,
depth=1,
heads=num_heads,
window_size=window_size,
mlp_dim=hidden_channels*mlp_expansion,
num_time=self.seq_len, device=self.device))
if self.spatial_flag:
self.s_modules.append(DS_MSA(hidden_channels,
depth=1,
heads=num_heads,
mlp_dim=hidden_channels*mlp_expansion,
assignment=self.assignment,
mask=self.mask,
dropout=dropout))
else:
self.residual_convs.append(nn.Conv1d(in_channels=hidden_channels,
out_channels=hidden_channels,
kernel_size=(1, 1)))
self.bn.append(nn.BatchNorm2d(hidden_channels))
# create the generrative and inference model
if stochastic_flag:
self.generative_model = StochasticModel(
hidden_channels, hidden_channels, blocks)
self.inference_model = StochasticModel(
hidden_channels, hidden_channels, blocks)
self.reconstruction_model = \
nn.Sequential(nn.Conv2d(in_channels=hidden_channels*blocks,
out_channels=end_channels,
kernel_size=(1, 1),
bias=True),
nn.ReLU(inplace=True),
nn.Conv2d(in_channels=end_channels,
out_channels=self.input_dim,
kernel_size=(1, 1),
bias=True)
)
# create the decoder layers
if self.stochastic_flag:
self.end_conv_1 = nn.Conv2d(in_channels=hidden_channels*blocks*2,
out_channels=end_channels,
kernel_size=(1, 1),
bias=True)
else:
self.end_conv_1 = nn.Conv2d(in_channels=hidden_channels*blocks,
out_channels=end_channels,
kernel_size=(1, 1),
bias=True)
self.end_conv_2 = nn.Conv2d(in_channels=end_channels,
out_channels=self.horizon*self.output_dim,
kernel_size=(1, 1),
bias=True)
def get_dartboard_info(self, dartboard):
'''
get dartboard-related attributes
'''
path_assignment = 'data/local_partition/' + \
dartboard_map[dartboard] + '/assignment.npy'
path_mask = 'data/local_partition/' + \
dartboard_map[dartboard] + '/mask.npy'
print(path_assignment)
self.assignment = torch.from_numpy(
np.load(path_assignment)).float().to(self.device)
self.mask = torch.from_numpy(
np.load(path_mask)).bool().to(self.device)
def forward(self, inputs, supports=None):
'''
inputs: the historical data
supports: adjacency matrix (actually our method doesn't use it)
Including adj here is for consistency with GNN-based methods
'''
x_embed = self.embedding_air(inputs[..., 11:15].long())
x = torch.cat((inputs[..., :11], x_embed, inputs[..., 15:]), -1)
x = x.permute(0, 3, 2, 1) # [b, c, n, t]
x = self.start_conv(x)
d = [] # deterministic states
for i in range(self.blocks):
if self.spatial_flag:
x = self.s_modules[i](x)
else:
x = self.residual_convs[i](x)
x = self.t_modules[i](x) # [b, c, n, t]
x = self.bn[i](x)
d.append(x)
d = torch.stack(d) # [num_blocks, b, c, n, t]
# generatation and inference
if self.stochastic_flag:
d_shift = [(nn.functional.pad(d[i], pad=(1, 0))[..., :-1])
for i in range(len(d))]
d_shift = torch.stack(d_shift) # [num_blocks, b, c, n, t]
z_p, mu_p, sigma_p = self.generative_model(
d_shift) # run the generative model
z_q, mu_q, sigma_q = self.inference_model(
d) # run the inference model
# compute kl divergence loss
p = torch.distributions.Normal(mu_p, sigma_p)
q = torch.distributions.Normal(mu_q, sigma_q)
kl_loss = torch.distributions.kl_divergence(
q, p).mean() * self.alpha
# reshaping
num_blocks, B, C, N, T = d.shape
z_p = z_p.permute(1, 0, 2, 3, 4).reshape(
B, -1, N, T) # [B, num_blocks*C, N, T]
z_q = z_q.permute(1, 0, 2, 3, 4).reshape(
B, -1, N, T) # [B, num_blocks*C, N, T]
# reconstruction
x_rec = self.reconstruction_model(z_p) # [b, c, n, t]
x_rec = x_rec.permute(0, 3, 2, 1)
# prediction
num_blocks, B, C, N, T = d.shape
d = d.permute(1, 0, 2, 3, 4).reshape(
B, -1, N, T) # [B, num_blocks*C, N, T]
x_hat = torch.cat([d[..., -1:], z_q[..., -1:]], dim=1)
x_hat = F.relu(self.end_conv_1(x_hat))
x_hat = self.end_conv_2(x_hat)
return x_hat, x_rec, kl_loss
else:
num_blocks, B, C, N, T = d.shape
d = d.permute(1, 0, 2, 3, 4).reshape(
B, -1, N, T) # [B, num_blocks*C, N, T]
x_hat = F.relu(d[..., -1:])
x_hat = F.relu(self.end_conv_1(x_hat))
x_hat = self.end_conv_2(x_hat)
return x_hat
class SpatialAttention(nn.Module):
# dartboard project + MSA
def __init__(self,
dim,
heads=4,
qkv_bias=False,
qk_scale=None,
dropout=0.,
num_sectors=17,
assignment=None,
mask=None):
super().__init__()
assert dim % heads == 0, f"dim {dim} should be divided by num_heads {heads}."
self.dim = dim
self.num_heads = heads
head_dim = dim // heads
self.scale = qk_scale or head_dim ** -0.5
self.num_sector = num_sectors
self.assignment = assignment # [n, n, num_sector]
self.mask = mask # [n, num_sector]
self.q_linear = nn.Linear(dim, dim, bias=qkv_bias)
self.kv_linear = nn.Linear(dim, dim * 2, bias=qkv_bias)
self.relative_bias = nn.Parameter(torch.randn(heads, 1, num_sectors))
self.proj = nn.Linear(dim, dim)
self.proj_drop = nn.Dropout(dropout)
def forward(self, x):
# x: [b, n, c]
B, N, C = x.shape
# query: [bn, 1, c]
# key/value target: [bn, num_sector, c]
# [b, n, num_sector, c]
pre_kv = torch.einsum('bnc,mnr->bmrc', x, self.assignment)
pre_kv = pre_kv.reshape(-1, self.num_sector, C) # [bn, num_sector, c]
pre_q = x.reshape(-1, 1, C) # [bn, 1, c]
q = self.q_linear(pre_q).reshape(B*N, -1, self.num_heads, C //
self.num_heads).permute(0, 2, 1, 3) # [bn, num_heads, 1, c//num_heads]
kv = self.kv_linear(pre_kv).reshape(B*N, -1, 2, self.num_heads,
C // self.num_heads).permute(2, 0, 3, 1, 4)
k, v = kv[0], kv[1] # [bn, num_heads, num_sector, c//num_heads]
attn = (q @ k.transpose(-2, -1)) * self.scale
attn = attn.reshape(B, N, self.num_heads, 1,
self.num_sector) + self.relative_bias # you can fuse external factors here as well
mask = self.mask.reshape(1, N, 1, 1, self.num_sector)
# masking
attn = attn.masked_fill_(mask, float(
"-inf")).reshape(B * N, self.num_heads, 1, self.num_sector).softmax(dim=-1)
x = (attn @ v).transpose(1, 2).reshape(B, N, C)
x = self.proj(x)
x = self.proj_drop(x)
return x
class DS_MSA(nn.Module):
# Dartboard Spatial MSA
def __init__(self,
dim, # hidden dimension
depth, # number of MSA in DS-MSA
heads, # number of heads
mlp_dim, # mlp dimension
assignment, # dartboard assignment matrix
mask, # mask
dropout=0.): # dropout rate
super().__init__()
self.layers = nn.ModuleList([])
for i in range(depth):
self.layers.append(nn.ModuleList([
SpatialAttention(dim, heads=heads, dropout=dropout,
assignment=assignment, mask=mask,
num_sectors=assignment.shape[-1]),
PreNorm(dim, FeedForward(dim, mlp_dim, dropout=dropout))
]))
def forward(self, x):
# x: [b, c, n, t]
b, c, n, t = x.shape
x = x.permute(0, 3, 2, 1).reshape(b*t, n, c) # [b*t, n, c]
# x = x + self.pos_embedding # [b*t, n, c] we use relative PE instead
for attn, ff in self.layers:
x = attn(x) + x
x = ff(x) + x
x = x.reshape(b, t, n, c).permute(0, 3, 2, 1)
return x
class TemporalAttention(nn.Module):
def __init__(self, dim, heads=2, window_size=1, qkv_bias=False, qk_scale=None, dropout=0., causal=True, device=None):
super().__init__()
assert dim % heads == 0, f"dim {dim} should be divided by num_heads {heads}."
self.dim = dim
self.num_heads = heads
self.causal = causal
head_dim = dim // heads
self.scale = qk_scale or head_dim ** -0.5
self.window_size = window_size
self.qkv = nn.Linear(dim, dim * 3, bias=qkv_bias)
self.attn_drop = nn.Dropout(dropout)
self.proj = nn.Linear(dim, dim)
self.proj_drop = nn.Dropout(dropout)
self.mask = torch.tril(torch.ones(window_size, window_size)).to(
device) # mask for causality
def forward(self, x):
B_prev, T_prev, C_prev = x.shape
if self.window_size > 0:
x = x.reshape(-1, self.window_size, C_prev) # create local windows
B, T, C = x.shape
qkv = self.qkv(x).reshape(B, -1, 3, self.num_heads, C //
self.num_heads).permute(2, 0, 3, 1, 4)
q, k, v = qkv[0], qkv[1], qkv[2]
# merge key padding and attention masks
attn = (q @ k.transpose(-2, -1)) * self.scale # [b, heads, T, T]
if self.causal:
attn = attn.masked_fill_(self.mask == 0, float("-inf"))
x = (attn.softmax(dim=-1) @ v).transpose(1, 2).reshape(B, T, C)
x = self.proj(x)
x = self.proj_drop(x)
if self.window_size > 0: # reshape to the original size
x = x.reshape(B_prev, T_prev, C_prev)
return x
class CT_MSA(nn.Module):
# Causal Temporal MSA
def __init__(self,
dim, # hidden dim
depth, # the number of MSA in CT-MSA
heads, # the number of heads
window_size, # the size of local window
mlp_dim, # mlp dimension
num_time, # the number of time slot
dropout=0., # dropout rate
device=None): # device, e.g., cuda
super().__init__()
self.pos_embedding = nn.Parameter(torch.randn(1, num_time, dim))
self.layers = nn.ModuleList([])
for i in range(depth):
self.layers.append(nn.ModuleList([
TemporalAttention(dim=dim,
heads=heads,
window_size=window_size,
dropout=dropout,
device=device),
PreNorm(dim, FeedForward(dim, mlp_dim, dropout=dropout))
]))
def forward(self, x):
# x: [b, c, n, t]
b, c, n, t = x.shape
x = x.permute(0, 2, 3, 1).reshape(b*n, t, c) # [b*n, t, c]
x = x + self.pos_embedding # [b*n, t, c]
for attn, ff in self.layers:
x = attn(x) + x
x = ff(x) + x
x = x.reshape(b, n, t, c).permute(0, 3, 1, 2)
return x
# Pre Normalization in Transformer
class PreNorm(nn.Module):
def __init__(self, dim, fn):
super().__init__()
self.norm = nn.LayerNorm(dim)
self.fn = fn
def forward(self, x, **kwargs):
return self.fn(self.norm(x), **kwargs)
# FFN in Transformer
class FeedForward(nn.Module):
def __init__(self, dim, hidden_dim, dropout=0.):
super().__init__()
self.net = nn.Sequential(
nn.Linear(dim, hidden_dim),
nn.GELU(),
nn.Dropout(dropout),
nn.Linear(hidden_dim, dim),
nn.Dropout(dropout)
)
def forward(self, x):
return self.net(x)