-
Notifications
You must be signed in to change notification settings - Fork 12
/
model.py
268 lines (215 loc) · 12.2 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
import torch
import torch.nn as nn
from torchcrf import CRF
from data_loader import TweetProcessor
class CharCNN(nn.Module):
def __init__(self,
max_word_len=30,
kernel_lst="2,3,4",
num_filters=32,
char_vocab_size=1000,
char_emb_dim=30,
final_char_dim=50):
super(CharCNN, self).__init__()
# Initialize character embedding
self.char_emb = nn.Embedding(char_vocab_size, char_emb_dim, padding_idx=0)
nn.init.uniform_(self.char_emb.weight, -0.25, 0.25)
kernel_lst = list(map(int, kernel_lst.split(","))) # "2,3,4" -> [2, 3, 4]
# Convolution for each kernel
self.convs = nn.ModuleList([
nn.Sequential(
nn.Conv1d(char_emb_dim, num_filters, kernel_size, padding=kernel_size // 2),
nn.Tanh(), # As the paper mentioned
nn.MaxPool1d(max_word_len - kernel_size + 1),
nn.Dropout(0.25) # As same as the original code implementation
) for kernel_size in kernel_lst
])
self.linear = nn.Sequential(
nn.Linear(num_filters * len(kernel_lst), 100),
nn.ReLU(), # As same as the original code implementation
nn.Dropout(0.25),
nn.Linear(100, final_char_dim)
)
def forward(self, x):
"""
:param x: (batch_size, max_seq_len, max_word_len)
:return: (batch_size, max_seq_len, final_char_dim)
"""
batch_size = x.size(0)
max_seq_len = x.size(1)
max_word_len = x.size(2)
x = self.char_emb(x) # (b, s, w, d)
x = x.view(batch_size * max_seq_len, max_word_len, -1) # (b*s, w, d)
x = x.transpose(2, 1) # (b*s, d, w): Conv1d takes in (batch, dim, seq_len), but raw embedded is (batch, seq_len, dim)
conv_lst = [conv(x) for conv in self.convs]
conv_concat = torch.cat(conv_lst, dim=-1) # (b*s, num_filters, len(kernel_lst))
conv_concat = conv_concat.view(conv_concat.size(0), -1) # (b*s, num_filters * len(kernel_lst))
output = self.linear(conv_concat) # (b*s, final_char_dim)
output = output.view(batch_size, max_seq_len, -1) # (b, s, final_char_dim)
return output
class BiLSTM(nn.Module):
def __init__(self, args, pretrained_word_matrix):
super(BiLSTM, self).__init__()
self.args = args
self.char_cnn = CharCNN(max_word_len=args.max_word_len,
kernel_lst=args.kernel_lst,
num_filters=args.num_filters,
char_vocab_size=args.char_vocab_size,
char_emb_dim=args.char_emb_dim,
final_char_dim=args.final_char_dim)
if pretrained_word_matrix is not None:
self.word_emb = nn.Embedding.from_pretrained(pretrained_word_matrix)
else:
self.word_emb = nn.Embedding(args.word_vocab_size, args.word_emb_dim, padding_idx=0)
nn.init.uniform_(self.word_emb.weight, -0.25, 0.25)
self.bi_lstm = nn.LSTM(input_size=args.word_emb_dim + args.final_char_dim,
hidden_size=args.hidden_dim // 2, # Bidirectional will double the hidden_size
bidirectional=True,
batch_first=True)
def forward(self, word_ids, char_ids):
"""
:param word_ids: (batch_size, max_seq_len)
:param char_ids: (batch_size, max_seq_len, max_word_len)
:return: (batch_size, max_seq_len, dim)
"""
w_emb = self.word_emb(word_ids)
c_emb = self.char_cnn(char_ids)
w_c_emb = torch.cat([w_emb, c_emb], dim=-1)
lstm_output, _ = self.bi_lstm(w_c_emb, None)
return lstm_output
class CoAttention(nn.Module):
def __init__(self, args):
super(CoAttention, self).__init__()
self.args = args
# linear for word-guided visual attention
self.text_linear_1 = nn.Linear(args.hidden_dim, args.hidden_dim, bias=True)
self.img_linear_1 = nn.Linear(args.hidden_dim, args.hidden_dim, bias=False)
self.att_linear_1 = nn.Linear(args.hidden_dim * 2, 1)
# linear for visual-guided textual attention
self.text_linear_2 = nn.Linear(args.hidden_dim, args.hidden_dim, bias=False)
self.img_linear_2 = nn.Linear(args.hidden_dim, args.hidden_dim, bias=True)
self.att_linear_2 = nn.Linear(args.hidden_dim * 2, 1)
def forward(self, text_features, img_features):
"""
:param text_features: (batch_size, max_seq_len, hidden_dim)
:param img_features: (batch_size, num_img_region, hidden_dim)
:return att_text_features (batch_size, max_seq_len, hidden_dim)
att_img_features (batch_size, max_seq_len, hidden_dim)
"""
############### 1. Word-guided visual attention ###############
# 1.1. Repeat the vectors -> [batch_size, max_seq_len, num_img_region, hidden_dim]
text_features_rep = text_features.unsqueeze(2).repeat(1, 1, self.args.num_img_region, 1)
img_features_rep = img_features.unsqueeze(1).repeat(1, self.args.max_seq_len, 1, 1)
# 1.2. Feed to single layer (d*k) -> [batch_size, max_seq_len, num_img_region, hidden_dim]
text_features_rep = self.text_linear_1(text_features_rep)
img_features_rep = self.img_linear_1(img_features_rep)
# 1.3. Concat & tanh -> [batch_size, max_seq_len, num_img_region, hidden_dim * 2]
concat_features = torch.cat([text_features_rep, img_features_rep], dim=-1)
concat_features = torch.tanh(concat_features)
# 1.4. Make attention matrix (linear -> squeeze -> softmax) -> [batch_size, max_seq_len, num_img_region]
visual_att = self.att_linear_1(concat_features).squeeze(-1)
visual_att = torch.softmax(visual_att, dim=-1)
# 1.5 Make new image vector with att matrix -> [batch_size, max_seq_len, hidden_dim]
att_img_features = torch.matmul(visual_att, img_features) # Vt_hat
############### 2. Visual-guided textual Attention ###############
# 2.1 Repeat the vectors -> [batch_size, max_seq_len, max_seq_len, hidden_dim]
img_features_rep = att_img_features.unsqueeze(2).repeat(1, 1, self.args.max_seq_len, 1)
text_features_rep = text_features.unsqueeze(1).repeat(1, self.args.max_seq_len, 1, 1)
# 2.2 Feed to single layer (d*k) -> [batch_size, max_seq_len, max_seq_len, hidden_dim]
img_features_rep = self.img_linear_2(img_features_rep)
text_features_rep = self.text_linear_2(text_features_rep)
# 2.3. Concat & tanh -> [batch_size, max_seq_len, max_seq_len, hidden_dim * 2]
concat_features = torch.cat([img_features_rep, text_features_rep], dim=-1)
concat_features = torch.tanh(concat_features)
# 2.4 Make attention matrix (linear -> squeeze -> softmax) -> [batch_size, max_seq_len, max_seq_len]
textual_att = self.att_linear_2(concat_features).squeeze(-1)
textual_att = torch.softmax(textual_att, dim=-1)
# 2.5 Make new text vector with att_matrix -> [batch_size, max_seq_len, hidden_dim]
att_text_features = torch.matmul(textual_att, text_features) # Ht_hat
return att_text_features, att_img_features
class GMF(nn.Module):
"""GMF (Gated Multimodal Fusion)"""
def __init__(self, args):
super(GMF, self).__init__()
self.args = args
self.text_linear = nn.Linear(args.hidden_dim, args.hidden_dim) # Inferred from code (dim isn't written on paper)
self.img_linear = nn.Linear(args.hidden_dim, args.hidden_dim)
self.gate_linear = nn.Linear(args.hidden_dim * 2, 1)
def forward(self, att_text_features, att_img_features):
"""
:param att_text_features: (batch_size, max_seq_len, hidden_dim)
:param att_img_features: (batch_size, max_seq_len, hidden_dim)
:return: multimodal_features
"""
new_img_feat = torch.tanh(self.img_linear(att_img_features)) # [batch_size, max_seq_len, hidden_dim]
new_text_feat = torch.tanh(self.text_linear(att_text_features)) # [batch_size, max_seq_len, hidden_dim]
gate_img = self.gate_linear(torch.cat([new_img_feat, new_text_feat], dim=-1)) # [batch_size, max_seq_len, 1]
gate_img = torch.sigmoid(gate_img) # [batch_size, max_seq_len, 1]
gate_img = gate_img.repeat(1, 1, self.args.hidden_dim) # [batch_size, max_seq_len, hidden_dim]
multimodal_features = torch.mul(gate_img, new_img_feat) + torch.mul(1 - gate_img, new_text_feat) # [batch_size, max_seq_len, hidden_dim]
return multimodal_features
class FiltrationGate(nn.Module):
"""
In this part, code is implemented in other way compare to equation on paper.
So I mixed the method between paper and code (e.g. Add `nn.Linear` after the concatenated matrix)
"""
def __init__(self, args):
super(FiltrationGate, self).__init__()
self.args = args
self.text_linear = nn.Linear(args.hidden_dim, args.hidden_dim, bias=False)
self.multimodal_linear = nn.Linear(args.hidden_dim, args.hidden_dim, bias=True)
self.gate_linear = nn.Linear(args.hidden_dim * 2, 1)
self.resv_linear = nn.Linear(args.hidden_dim, args.hidden_dim)
self.output_linear = nn.Linear(args.hidden_dim * 2, len(TweetProcessor.get_labels()))
def forward(self, text_features, multimodal_features):
"""
:param text_features: Original text feature from BiLSTM [batch_size, max_seq_len, hidden_dim]
:param multimodal_features: Feature from GMF [batch_size, max_seq_len, hidden_dim]
:return: output: Will be the input for CRF decoder [batch_size, max_seq_len, hidden_dim]
"""
# [batch_size, max_seq_len, 2 * hidden_dim]
concat_feat = torch.cat([self.text_linear(text_features), self.multimodal_linear(multimodal_features)], dim=-1)
# This part is not written on equation, but if is needed
filtration_gate = torch.sigmoid(self.gate_linear(concat_feat)) # [batch_size, max_seq_len, 1]
filtration_gate = filtration_gate.repeat(1, 1, self.args.hidden_dim) # [batch_size, max_seq_len, hidden_dim]
reserved_multimodal_feat = torch.mul(filtration_gate,
torch.tanh(self.resv_linear(multimodal_features))) # [batch_size, max_seq_len, hidden_dim]
output = self.output_linear(torch.cat([text_features, reserved_multimodal_feat], dim=-1)) # [batch_size, max_seq_len, num_tags]
return output
class ACN(nn.Module):
"""
ACN (Adaptive CoAttention Network)
CharCNN -> BiLSTM -> CoAttention -> GMF -> FiltrationGate -> CRF
"""
def __init__(self, args, pretrained_word_matrix=None):
super(ACN, self).__init__()
self.lstm = BiLSTM(args, pretrained_word_matrix)
# Transform each img vector as same dimensions ad the text vector
self.dim_match = nn.Sequential(
nn.Linear(args.img_feat_dim, args.hidden_dim),
nn.Tanh()
)
self.co_attention = CoAttention(args)
self.gmf = GMF(args)
self.filtration_gate = FiltrationGate(args)
self.crf = CRF(num_tags=len(TweetProcessor.get_labels()), batch_first=True)
def forward(self, word_ids, char_ids, img_feature, mask, label_ids):
"""
:param word_ids: (batch_size, max_seq_len)
:param char_ids: (batch_size, max_seq_len, max_word_len)
:param img_feature: (batch_size, num_img_region(=49), img_feat_dim(=512))
:param mask: (batch_size, max_seq_len)
:param label_ids: (batch_size, max_seq_len)
:return:
"""
text_features = self.lstm(word_ids, char_ids)
img_features = self.dim_match(img_feature) # [batch_size, num_img_region(=49), hidden_dim(=200)]
assert text_features.size(-1) == img_features.size(-1)
att_text_features, att_img_features = self.co_attention(text_features, img_features)
multimodal_features = self.gmf(att_text_features, att_img_features)
logits = self.filtration_gate(text_features, multimodal_features)
loss = 0
if label_ids is not None:
loss = self.crf(logits, label_ids, mask.byte(), reduction='mean')
loss = loss * -1 # negative log likelihood
return loss, logits