-
Notifications
You must be signed in to change notification settings - Fork 1
/
layers.py
executable file
·475 lines (397 loc) · 20.7 KB
/
layers.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
"""Assortment of layers for use in models.py.
Authors:
Sahil Khose ([email protected])
Abhiraj Tiwari ([email protected])
"""
import math
import torch
import torch.nn as nn
import torch.nn.functional as F
from util import masked_softmax
# --------------- Model Layers ------------------
class InputEmbeddingLayer(nn.Module):
"""Embedding layer used in QANet, without character-level embedding.
Word embedding of 300-D
"""
def __init__(self, word_vectors, drop_prob=0.1):
"""
@param word_vectors (torch.Tensor): Pre-trained word vectors.
@param drop_prob (float): Probability of zero-ing out activations.
"""
super(InputEmbeddingLayer, self).__init__()
self.embed = nn.Embedding.from_pretrained(word_vectors)
self.dropout = torch.nn.Dropout(drop_prob)
def forward(self, x):
"""Looks up word embeddings for the words in a batch of sentences.
@param x (torch.Tensor): (batch_size, sent_len)
@returns emb (torch.Tensor): Word embeddings for the batch of sentences. (batch_size, word_embed, sent_len)
"""
emb = self.embed(x) # (batch_size, sent_len, word_embed)
emb = self.dropout(emb) # (batch_size, sent_len, word_embed)
return emb.permute(0, 2, 1) # (batch_size, word_embed, sent_len)
class EmbeddingEncoderLayer(nn.Module):
"""Embedding Encoder layer which encodes using convolution, self attention and feed forward network.
Takes input from Input Embedding Layer.
"""
def __init__(self, conv_layers, kernel_size, filters, heads, enc_blocks, drop_prob, sent_len, word_embed, hidden_size):
"""
@param conv_layers (int): Number of convolution layers in one Encoder Block.
@param kernel_size (int): Kernel size of the convolution layers.
@param filters (int): Number of filters for the convolution layers.
@param heads (int): Number of heads for multihead attention.
@param enc_blocks (int): Number of Encoder Blocks.
@param drop_prob (float): Probability of zero-ing out activations.
@param sent_len (int): Input sentence size.
@param word_embed (int): Pretrained word vector size.
@param hidden_size (int): Number of features in the hidden state at each layer.
"""
super(EmbeddingEncoderLayer, self).__init__()
self.emb_enc = nn.ModuleList([
EncoderBlock(conv_layers, kernel_size,
filters, heads, drop_prob, sent_len, word_embed=word_embed, hidden_size=hidden_size),
*(EncoderBlock(conv_layers, kernel_size,
filters, heads, drop_prob, sent_len, word_embed=hidden_size, hidden_size=hidden_size)
for _ in range(enc_blocks-1))
])
def forward(self, x, mask):
"""Encodes the word embeddings.
@param x (torch.Tensor): Word embeddings. (batch_size, word_embed, sent_len)
@returns x (torch.Tensor): Encoded Word embeddings. (batch_size, hidden_size, sent_len)
"""
for layer in self.emb_enc:
x = layer(x, mask) # (batch_size, hidden_size, sent_len)
return x # (batch_size, hidden_size, sent_len)
class CQAttentionLayer(nn.Module):
"""Context Query Attention Layer.
Takes 2 inputs: Context Encoded Embedding and Question Encoded Embedding.
Understood and Influenced from: https://github.com/tailerr/QANet-pytorch/
"""
def __init__(self, hidden_size, drop_prob=0.1):
"""
@param drop_prob (float): Probability of zero-ing out activations.
"""
super(CQAttentionLayer, self).__init__()
self.hidden_size = hidden_size
w = torch.empty(hidden_size*3) # (3*hidden_size)
lim = 1/hidden_size
nn.init.uniform_(w, -math.sqrt(lim), math.sqrt(lim))
self.w = nn.Parameter(w)
self.drop_prob = drop_prob
def forward(self, context, question, c_mask, q_mask):
"""
@param context (torch.Tensor): Encoded context embedding. (batch_size, hidden_size, c_len)
@param question (torch.Tensor): Encoded question embedding. (batch_size, hidden_size, q_len)
"""
if len(q_mask.shape) != 4:
q_mask = q_mask.unsqueeze(1) # (batch_size, 1, q_len)
if len(c_mask.shape) != 4:
c_mask = c_mask.unsqueeze(2) # (batch_size, c_len, 1) use for masked_softmax
# c_mask = c_mask.unsqueeze(1) # (batch_size, 1, c_len) use for custom mask code
context = context.permute(0, 2, 1) # (batch_size, c_len, hidden_size)
query = question.permute(0, 2, 1) # (batch_size, q_len, hidden_size)
c_len = context.size(1)
q_len = query.size(1)
# nn.functional.dropout(context, self.dropout, self.training, True)
# nn.functional.dropout(query, self.dropout, self.training, True)
c = context.repeat(q_len, 1, 1, 1).permute([1, 0, 2, 3])
# (q_len, batch_size, c_len, hidden_size) --> (batch_size, q_len, c_len, hidden_size)
q = query.repeat(c_len, 1, 1, 1).permute([1, 2, 0, 3])
# (c_len, batch_size, q_len, hidden_size) --> (batch_size, q_len, c_len, hidden_size)
cq = c*q # (batch_size, q_len, c_len, hidden_size)
# s = torch.matmul(torch.cat((q, c, cq), 3), self.w).transpose(1, 2)
s = (torch.cat((q, c, cq), dim=3) @ self.w).transpose(1, 2)
# (batch_size, q_len, c_len, 3*hidden_size) --> (batch_size, q_len, c_len) --> (batch_size, c_len, q_len)
# if q_mask is not None:
# s = s.masked_fill(q_mask == 0, float("-1e20")) #TODO add a mask here.
# # #? how to use 2 masks
# s1 = nn.functional.softmax(s, dim=2) # (batch_size, c_len, q_len)
# s2 = nn.functional.softmax(s, dim=1) # (batch_size, c_len, q_len)
# print(s.shape, q_mask.shape, c_mask.shape)
s1 = masked_softmax(s, q_mask, dim=2) # (batch_size, c_len, q_len)
s2 = masked_softmax(s, c_mask, dim=1) # (batch_size, c_len, q_len)
a = torch.bmm(s1, query) # (batch_size, c_len, hidden_size)
l = torch.bmm(s1, s2.transpose(1, 2)) # (batch_size, c_len, c_len)
b = torch.bmm(l, context) # (batch_size, c_len, hidden_size)
# * concat over hidden_state only
output = torch.cat((context, a, context*a, context*b), dim=2) # (batch_size, c_len, 4*hidden_size)
# print(output[0])
return nn.functional.dropout(output, p=self.drop_prob).permute(0, 2, 1) # (batch_size, 4*hidden_size, c_len)
# return s2
class ModelEncoderLayer(nn.Module):
"""Model Encoder layer which encodes using convolution, self attention and feed forward network.
Takes input from CQAttention Layer.
"""
def __init__(self, conv_layers, kernel_size, filters, heads, enc_blocks, drop_prob, sent_len, word_embed, hidden_size):
"""
@param conv_layers (int): Number of convolution layers in one Encoder Block.
@param kernel_size (int): Kernel size of the convolution layers.
@param filters (int): Number of filters for the convolution layers.
@param heads (int): Number of heads for multihead attention.
@param enc_blocks (int): Number of Encoder Blocks.
@param drop_prob (float): Probability of zero-ing out activations.
@param sent_len (int): Input sentence size.
@param word_embed (int): Word vector size.
@param hidden_size (int): Number of features in the hidden state at each layer.
"""
super(ModelEncoderLayer, self).__init__()
self.model_enc = nn.ModuleList([
EncoderBlock(conv_layers, kernel_size,
filters, heads, drop_prob, sent_len, word_embed=word_embed, hidden_size=hidden_size),
*(EncoderBlock(conv_layers, kernel_size,
filters, heads, drop_prob, sent_len, word_embed=hidden_size, hidden_size=hidden_size)
for _ in range(enc_blocks-1))
])
def forward(self, x, mask):
"""Encodes the word vectors.
@param x (torch.Tensor): Input word vectors from CQAttention. (batch_size, , sent_len)
@returns x (torch.Tensor): Encoded Word Vectors. (batch_size, hidden_size, sent_len)
"""
for layer in self.model_enc:
x = layer(x, mask) # (batch_size, hidden_size, sent_len)
return x
class OutputLayer(nn.Module):
"""Output Layer which outputs the probability distribution for the answer span in the context span.
Takes inputs from 2 Model Encoder Layers.
"""
def __init__(self, drop_prob, word_embed):
"""
@param drop_prob (float): Probability of zero-ing out activations.
@param word_embed (int): Word vector size. (128)
"""
super(OutputLayer, self).__init__()
self.ff = nn.Linear(2*word_embed, 1)
def forward(self, input_1, input_2, mask):
"""Encodes the word embeddings.
@param input_1 (torch.Tensor): Word vectors from first Model Encoder Layer. (batch_size, hidden_size, sent_len)
@param input_2 (torch.Tensor): Word vectors from second Model Encoder Layer. (batch_size, hidden_size, sent_len)
@returns p (torch.Tensor): Probability distribution for start/end token. (batch_size, sent_len)
"""
x = torch.cat((input_1, input_2), dim=1) # (batch_size, 2*hidden_size, sent_len)
x = self.ff(x.permute(0, 2, 1)).permute(0, 2, 1) # (batch_size, 1, sent_len)
# Shapes: (batch_size, sent_len)
logits = x.squeeze()
# print("logits: ", logits.shape) # (2, 200)
log_p = masked_softmax(logits, mask, log_softmax=True)
# print("log_p: ", log_p.shape) # (2, 1, 2, 200)
return log_p
# ---------------- Helper Layers ----------------------
class EncoderBlock(nn.Module):
"""Encoder Block used in Input Embedding Layer and Model Embedding Layer.
"""
def __init__(self, conv_layers, kernel_size, filters, heads, drop_prob, sent_len, word_embed, hidden_size):
"""
@param conv_layers (int): Number of convolution layers in one Encoder Block.
@param kernel_size (int): Kernel size of the convolution layers.
@param filters (int): Number of filters for the convolution layers.
@param heads (int): Number of heads for multihead attention.
@param drop_prob (float): Probability of zero-ing out activations.
@param sent_len (int): Input sentence size.
@param word_embed (int): Word vector size.
@param hidden_size (int): Number of features in the hidden state at each layer.
"""
super(EncoderBlock, self).__init__()
# print("SENT_LEN: ", sent_len)
# print("WORD_EMBED: ", word_embed)
self.pos_enc = PositionalEncoder(sent_len, word_embed)
self.conv = nn.ModuleList([
ConvBlock(word_embed=word_embed, sent_len=sent_len,
hidden_size=hidden_size, kernel_size=kernel_size),
*(ConvBlock(word_embed=hidden_size, sent_len=sent_len,
hidden_size=hidden_size, kernel_size=kernel_size)
for _ in range(conv_layers - 1))
])
self.att = SelfAttentionBlock(hidden_size=hidden_size, sent_len=sent_len, heads=heads, drop_prob=drop_prob)
self.ff = FeedForwardBlock(hidden_size=hidden_size, sent_len=sent_len)
def forward(self, x, mask):
"""Encodes the word vectors.
@param x (torch.Tensor): Word vectors. (batch_size, word_embed, sent_len)
@returns x (torch.Tensor): Encoded Word embeddings. (batch_size, hidden_size, sent_len)
"""
x = self.pos_enc(x) # (batch_size, hidden_size, sent_len)
for layer in self.conv:
x = layer(x) # (batch_size, hidden_size, sent_len)
x = self.att(x, mask) # (batch_size, hidden_size, sent_len)
x = self.ff(x) # (batch_size, hidden_size, sent_len)
return x
class PositionalEncoder(nn.Module):
"""Generate positional encoding for a vector
Args:
length (int): length of the input sentence to be encoded
d_model (int): dimention of the word vector
Returns:
torch.Tensor: positionaly encoded vector
"""
def __init__(self, length, hidden_size):
super(PositionalEncoder, self).__init__()
f = torch.Tensor([10000 ** (-i / hidden_size) if i % 2 == 0 else -10000 **
((1 - i) / hidden_size) for i in range(hidden_size)]).unsqueeze(dim=1)
phase = torch.Tensor([0 if i % 2 == 0 else math.pi / 2 for i in range(hidden_size)]).unsqueeze(dim=1)
pos = torch.arange(length).repeat(hidden_size, 1).to(torch.float)
self.pos_encoding = nn.Parameter(torch.sin(torch.add(torch.mul(pos, f), phase)), requires_grad=False)
def forward(self, x):
# print("__"*80)
# print(x.shape)
# print((self.pos_encoding[0:x.size(1)]).shape)
# print("__"*80)
return x + self.pos_encoding[0:x.size(1)]
class SelfAttention(nn.Module):
"""Self Attention used in Self Attention Block for Encoder Block.
Refer to Attention is all you need paper to understand terminology
"""
def __init__(self, hidden_size, heads, drop_prob):
"""
@param word_embed (int): Word vector size.
@param sent_len (int): Input sentence size.
@param heads (int): Number of heads for multihead attention.
@param drop_prob (float): Probability of zero-ing out activations.
"""
# print(hidden_size, heads)
assert(hidden_size % heads == 0)
super(SelfAttention, self).__init__()
self.d_model = hidden_size
self.h = heads
self.d_v = self.d_model//heads
self.W_q = nn.Linear(in_features=self.d_v, out_features=self.d_v, bias=False)
self.W_k = nn.Linear(in_features=self.d_v, out_features=self.d_v, bias=False)
self.W_v = nn.Linear(in_features=self.d_v, out_features=self.d_v, bias=False)
self.linear = nn.Linear(in_features=self.d_model, out_features=self.d_model, bias=False)
def forward(self, values, keys, query, mask=None):
"""
@param x (torch.Tensor): Word vectors. (batch_size, hidden_size, sent_len)
@returns x (torch.Tensor): Word vectors with self attention. (batch_size, hidden_size, sent_len)
"""
if len(mask.shape) != 4:
mask = mask.unsqueeze(1).unsqueeze(2) # (batch_size, 1, 1, sent_len)
N = query.shape[0] # batch_size
value_len, key_len, query_len = values.shape[2], keys.shape[2], query.shape[2]
# print(values.shape)
values = values.permute(0, 2, 1)
keys = keys.permute(0, 2, 1)
query = query.permute(0, 2, 1)
# print("__"*80)
# print("__"*80)
# print(values.shape)
# print("__"*80)
# print("__"*80)
#TODO the order is supposed to be linear -> split
# Split embedding in self.head pieces:
values = values.reshape(N, value_len, self.h, self.d_v)
keys = keys.reshape(N, key_len, self.h, self.d_v)
queries = query.reshape(N, query_len, self.h, self.d_v)
values = self.W_v(values)
keys = self.W_k(keys)
queries = self.W_q(queries)
energy = torch.einsum("nqhd,nkhd->nhqk", [queries, keys])
# queries shape: (N, query_len, heads, heads_dim)
# keys shape: (N, key_len, heads, heads_dim)
# energy shape: (N, heads, query_len, key_len)
# if mask is not None:
# energy = energy.masked_fill(mask == 0, float("-1e20"))
# print("__"*80)
# print("energy")
# print(energy.shape)
# print("mask")
# print(mask.shape)
# print(mask)
# print("__"*80)
# attention = torch.softmax(energy / (self.d_model ** (1/2)), dim=3)
attention = masked_softmax(energy / (self.d_model ** (1/2)), mask, dim=3)
out = torch.einsum("nhql,nlhd->nqhd", [attention, values]).reshape(N, query_len, self.h*self.d_v)
# attention shape: (N, heads, query_len, key_len)
# values shape: (N, value_len, heads, heads_dim)
# after einsum: (N, query_len, heads, head_dim) then flatten last two dimensions
out = self.linear(out)
return out # (batch_size, sent_len, hidden_size)
# ---------------- Helper Residual Blocks ----------------------
class ConvBlock(nn.Module):
"""Conv Block used in Encoder Block.
"""
def __init__(self, word_embed, sent_len, hidden_size, kernel_size):
"""
@param word_embed (int): Word vector size.
@param sent_len (int): Input sentence size.
@param out_channels (int): Number of output features.
@param kernel_size (int): Kernel size of the convolution layers.
"""
super(ConvBlock, self).__init__()
self.word_embed = word_embed
self.hidden_size = hidden_size
self.layer_norm = nn.LayerNorm([word_embed, sent_len])
self.conv = nn.Conv1d(word_embed, hidden_size, kernel_size, padding=kernel_size//2)
self.w_s = nn.Linear(word_embed, hidden_size) # linear projection
def forward(self, x):
"""
@param x (torch.Tensor): Word vectors. (batch_size, word_embed, sent_len)
@returns x (torch.Tensor): Word vectors. (batch_size, hidden_size, sent_len)
Shortcut Connections based on the paper:
"Deep Residual Learning for Image Recognition"
by Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun
(https://arxiv.org/abs/1512.03385)
For linear projection before Shortcut Connection:
Refer Equation 2 (Section 3.2) in https://arxiv.org/pdf/1512.03385.pdf
"""
x_l = self.layer_norm(x) # (batch_size, word_embed, sent_len)
if(self.word_embed != self.hidden_size):
x = self.w_s(x.permute(0, 2, 1)).permute(0, 2, 1) # (batch_size, hidden_size, sent_len)
x = x + self.conv(x_l) # (batch_size, hidden_size, sent_len)
return x
class SelfAttentionBlock(nn.Module):
"""Self Attention Block used in Encoder Block.
"""
def __init__(self, hidden_size, sent_len, heads, drop_prob):
"""
@param word_embed (int): Word vector size.
@param sent_len (int): Input sentence size.
@param heads (int): Number of heads for multihead attention.
@param drop_prob (float): Probability of zero-ing out activations.
"""
super(SelfAttentionBlock, self).__init__()
self.layer_norm = nn.LayerNorm([hidden_size, sent_len])
self.self_attn = SelfAttention(hidden_size, heads, drop_prob)
def forward(self, x, mask):
"""
@param x (torch.Tensor): Word vectors. (batch_size, hidden_size, sent_len)
@returns x (torch.Tensor): Word vectors with self attention. (batch_size, hidden_size, sent_len)
"""
a = self.layer_norm(x) # (batch_size, hidden_size, sent_len)
att = self.self_attn(a, a, a, mask=mask)
# print(att.shape)
att = att.permute(0, 2, 1) # (batch_size, hidden_size, sent_len)
return x + att
class FeedForwardBlock(nn.Module):
"""Feed Forward Block used in Encoder Block.
"""
def __init__(self, hidden_size, sent_len):
"""
@param word_embed (int): Word vector size.
@param sent_len (int): Input sentence size.
"""
super(FeedForwardBlock, self).__init__()
self.layer_norm = nn.LayerNorm([hidden_size, sent_len])
self.ff = nn.Sequential(
nn.Linear(in_features=hidden_size, out_features=hidden_size),
nn.ReLU()
)
def forward(self, x):
"""
@param x (torch.Tensor): Word vectors. (batch_size, hidden_size, sent_len)
@returns x (torch.Tensor): Word vectors. (batch_size, hidden_size, sent_len)
"""
x_l = self.layer_norm(x) # (batch_size, hidden_size, sent_len)
x = x + self.ff(x_l.permute(0, 2, 1)).permute(0, 2, 1) # (batch_size, hidden_size, sent_len)
return x
if __name__ == "__main__":
torch.manual_seed(0)
x = torch.randn((32, 300, 100)) # (batch_size, word_embed, sent_len)
x_b = EncoderBlock(conv_layers=4, kernel_size=7, filters=128,
heads=8, drop_prob=0, sent_len=100, word_embed=300, hidden_size=128)(x)
x_e = EmbeddingEncoderLayer(conv_layers=4, kernel_size=7, filters=128,
heads=8, enc_blocks=9, drop_prob=0, sent_len=100, word_embed=300, hidden_size=128)(x)
x_m = ModelEncoderLayer(conv_layers=2, kernel_size=5, filters=128,
heads=8, enc_blocks=8, drop_prob=0, sent_len=100, word_embed=128, hidden_size=128)(x_e)
print(x.shape, x_b.shape, x_e.shape, x_m.shape, sep='\n')
print()
smeb_1 = torch.randn((32, 200, 100))
smeb_2 = torch.randn((32, 200, 100))
out = OutputLayer(0., 200)
print(out(smeb_1, smeb_2).shape)