-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattention.py
More file actions
251 lines (241 loc) · 9.73 KB
/
Copy pathattention.py
File metadata and controls
251 lines (241 loc) · 9.73 KB
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
from keras import backend as K
from keras.engine.topology import Layer, InputSpec
import tensorflow as tf
class AttLayer(Layer):
def __init__(self,
W_regularizer=None, b_regularizer=None,
W_constraint=None, b_constraint=None,
bias=True, **kwargs):
"""
Keras Layer that implements an Attention mechanism for temporal data.
Supports Masking.
Follows the work of Raffel et al. [https://arxiv.org/abs/1512.08756]
# Input shape
3D tensor with shape: `(samples, steps, features)`.
# Output shape
2D tensor with shape: `(samples, features)`.
:param kwargs:
Just put it on top of an RNN Layer (GRU/LSTM/SimpleRNN) with return_sequences=True.
The dimensions are inferred based on the output shape of the RNN.
Example:
model.add(LSTM(64, return_sequences=True))
model.add(Attention())
"""
self.supports_masking = True
self.bias = bias
super(AttLayer, self).__init__(**kwargs)
def build(self, input_shape):
assert len(input_shape) == 3
self.W = self.add_weight((input_shape[-1], input_shape[-1]),
initializer='glorot_uniform',
name='{}_W'.format(self.name))
if self.bias:
self.b = self.add_weight((input_shape[-1],),
initializer='zeros',
name='{}_b'.format(self.name))
else:
self.b = None
self.uw = self.add_weight(( input_shape[-1],),
initializer='glorot_uniform',
name='{}_u'.format(self.name))
self.built = True
def compute_mask(self, input, input_mask=None):
# do not pass the mask to the next layers
return None
def call(self, x, mask=None):
eij = K.dot( x, self.W)
if self.bias:
eij += self.b
eij = K.tanh(eij)
eij = K.dot( eij , K.expand_dims( self.uw ) )
eij = tf.squeeze( eij , axis=-1 )
a = K.exp(eij)
if mask is not None:
a *= K.cast(mask, K.floatx())
a /= K.cast(K.sum(a, axis=1, keepdims=True) + K.epsilon(), K.floatx())
a = K.expand_dims(a)
weighted_input = x * a
out = K.sum(weighted_input, axis=1)
return out
def compute_output_shape(self, input_shape):
return input_shape[0], input_shape[-1]
# from keras import backend as K
# from keras.engine.topology import Layer, InputSpec
# from keras import initializations,regularizers,constraints
# from keras.optimizers import SGD, RMSprop, Adagrad
#
# class AttentionWithContext(Layer):
# """
# Attention operation, with a context/query vector, for temporal data.
# Supports Masking.
# Follows the work of Yang et al. [https://www.cs.cmu.edu/~diyiy/docs/naacl16.pdf]
# "Hierarchical Attention Networks for Document Classification"
# by using a context vector to assist the attention
# # Input shape
# 3D tensor with shape: `(samples, steps, features)`.
# # Output shape
# 2D tensor with shape: `(samples, features)`.
# :param kwargs:
# Just put it on top of an RNN Layer (GRU/LSTM/SimpleRNN) with return_sequences=True.
# The dimensions are inferred based on the output shape of the RNN.
# Example:
# model.add(LSTM(64, return_sequences=True))
# model.add(AttentionWithContext())
# """
#
# def __init__(self,
# W_regularizer=None, u_regularizer=None, b_regularizer=None,
# W_constraint=None, u_constraint=None, b_constraint=None,
# bias=True, **kwargs):
#
# self.supports_masking = True
# self.init = initializations.get('glorot_uniform')
#
# self.W_regularizer = regularizers.get(W_regularizer)
# self.u_regularizer = regularizers.get(u_regularizer)
# self.b_regularizer = regularizers.get(b_regularizer)
#
# self.W_constraint = constraints.get(W_constraint)
# self.u_constraint = constraints.get(u_constraint)
# self.b_constraint = constraints.get(b_constraint)
#
# self.bias = bias
# super(AttentionWithContext, self).__init__(**kwargs)
#
# def build(self, input_shape):
# assert len(input_shape) == 3
#
# self.W = self.add_weight((input_shape[-1], input_shape[-1],),
# initializer=self.init,
# name='{}_W'.format(self.name),
# regularizer=self.W_regularizer,
# constraint=self.W_constraint)
# if self.bias:
# self.b = self.add_weight((input_shape[-1],),
# initializer='zero',
# name='{}_b'.format(self.name),
# regularizer=self.b_regularizer,
# constraint=self.b_constraint)
#
# self.u = self.add_weight((input_shape[-1],),
# initializer=self.init,
# name='{}_u'.format(self.name),
# regularizer=self.u_regularizer,
# constraint=self.u_constraint)
#
# super(AttentionWithContext, self).build(input_shape)
#
# def compute_mask(self, input, input_mask=None):
# # do not pass the mask to the next layers
# return None
#
# def call(self, x, mask=None):
# uit = K.dot(x, self.W)
#
# if self.bias:
# uit += self.b
#
# uit = K.tanh(uit)
# ait = K.dot(uit, self.u)
#
# a = K.exp(ait)
#
# # apply mask after the exp. will be re-normalized next
# if mask is not None:
# # Cast the mask to floatX to avoid float64 upcasting in theano
# a *= K.cast(mask, K.floatx())
#
# # in some cases especially in the early stages of training the sum may be almost zero
# # and this results in NaN's. A workaround is to add a very small positive number ε to the sum.
# # a /= K.cast(K.sum(a, axis=1, keepdims=True), K.floatx())
# a /= K.cast(K.sum(a, axis=1, keepdims=True) + K.epsilon(), K.floatx())
#
# a = K.expand_dims(a)
# weighted_input = x * a
# return K.sum(weighted_input, axis=1)
#
# def get_output_shape_for(self, input_shape):
# return input_shape[0], input_shape[-1]
#
#
# class Attention(Layer):
# def __init__(self,
# W_regularizer=None, b_regularizer=None,
# W_constraint=None, b_constraint=None,
# bias=True, **kwargs):
# """
# Keras Layer that implements an Attention mechanism for temporal data.
# Supports Masking.
# Follows the work of Raffel et al. [https://arxiv.org/abs/1512.08756]
# # Input shape
# 3D tensor with shape: `(samples, steps, features)`.
# # Output shape
# 2D tensor with shape: `(samples, features)`.
# :param kwargs:
# Just put it on top of an RNN Layer (GRU/LSTM/SimpleRNN) with return_sequences=True.
# The dimensions are inferred based on the output shape of the RNN.
# Example:
# model.add(LSTM(64, return_sequences=True))
# model.add(Attention())
# """
# self.supports_masking = True
# self.init = initializations.get('glorot_uniform')
#
# self.W_regularizer = regularizers.get(W_regularizer)
# self.b_regularizer = regularizers.get(b_regularizer)
#
# self.W_constraint = constraints.get(W_constraint)
# self.b_constraint = constraints.get(b_constraint)
#
# self.bias = bias
# super(Attention, self).__init__(**kwargs)
#
# def build(self, input_shape):
# assert len(input_shape) == 3
#
# self.W = self.add_weight((input_shape[-1],),
# initializer=self.init,
# name='{}_W'.format(self.name),
# regularizer=self.W_regularizer,
# constraint=self.W_constraint)
# if self.bias:
# self.b = self.add_weight((input_shape[1],),
# initializer='zero',
# name='{}_b'.format(self.name),
# regularizer=self.b_regularizer,
# constraint=self.b_constraint)
# else:
# self.b = None
#
# self.built = True
#
# def compute_mask(self, input, input_mask=None):
# # do not pass the mask to the next layers
# return None
#
# def call(self, x, mask=None):
# eij = K.dot(x, self.W)
#
# if self.bias:
# eij += self.b
#
# eij = K.tanh(eij)
#
# a = K.exp(eij)
#
# # apply mask after the exp. will be re-normalized next
# if mask is not None:
# # Cast the mask to floatX to avoid float64 upcasting in theano
# a *= K.cast(mask, K.floatx())
#
# # in some cases especially in the early stages of training the sum may be almost zero
# # and this results in NaN's. A workaround is to add a very small positive number ε to the sum.
# # a /= K.cast(K.sum(a, axis=1, keepdims=True), K.floatx())
# a /= K.cast(K.sum(a, axis=1, keepdims=True) + K.epsilon(), K.floatx())
#
# a = K.expand_dims(a)
# weighted_input = x * a
# return K.sum(weighted_input, axis=1)
#
# def get_output_shape_for(self, input_shape):
# return input_shape[0], input_shape[-1]