forked from carpedm20/NTM-tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ntm_cell.py
364 lines (295 loc) · 14.1 KB
/
ntm_cell.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
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from functools import reduce
import numpy as np
import tensorflow as tf
from tensorflow.python.ops import array_ops
from utils import *
from ops import *
class NTMCell(object):
def __init__(self, input_dim, output_dim,
mem_size=128, mem_dim=20, controller_dim=100,
controller_layer_size=1, shift_range=1,
write_head_size=1, read_head_size=1):
"""Initialize the parameters for an NTM cell.
Args:
input_dim: int, The number of units in the LSTM cell
output_dim: int, The dimensionality of the inputs into the LSTM cell
mem_size: (optional) int, The size of memory [128]
mem_dim: (optional) int, The dimensionality for memory [20]
controller_dim: (optional) int, The dimensionality for controller [100]
controller_layer_size: (optional) int, The size of controller layer [1]
"""
# initialize configs
self.input_dim = input_dim
self.output_dim = output_dim
self.mem_size = mem_size
self.mem_dim = mem_dim
self.controller_dim = controller_dim
self.controller_layer_size = controller_layer_size
self.shift_range = shift_range
self.write_head_size = write_head_size
self.read_head_size = read_head_size
self.depth = 0
self.states = []
def __call__(self, input_, state=None, scope=None):
"""Run one step of NTM.
Args:
inputs: input Tensor, 2D, 1 x input_size.
state: state Dictionary which contains M, read_w, write_w, read,
output, hidden.
scope: VariableScope for the created subgraph; defaults to class name.
Returns:
A tuple containing:
- A 2D, batch x output_dim, Tensor representing the output of the LSTM
after reading "input_" when previous state was "state".
Here output_dim is:
num_proj if num_proj was set,
num_units otherwise.
- A 2D, batch x state_size, Tensor representing the new state of LSTM
after reading "input_" when previous state was "state".
"""
if state == None:
_, state = self.initial_state()
M_prev = state['M']
read_w_list_prev = state['read_w']
write_w_list_prev = state['write_w']
read_list_prev = state['read']
output_list_prev = state['output']
hidden_list_prev = state['hidden']
# build a controller
output_list, hidden_list = self.build_controller(input_, read_list_prev,
output_list_prev,
hidden_list_prev)
# last output layer from LSTM controller
last_output = output_list[-1]
# build a memory
M, read_w_list, write_w_list, read_list = self.build_memory(M_prev,
read_w_list_prev,
write_w_list_prev,
last_output)
# get a new output
new_output, new_output_logit = self.new_output(last_output)
state = {
'M': M,
'read_w': read_w_list,
'write_w': write_w_list,
'read': read_list,
'output': output_list,
'hidden': hidden_list,
}
self.depth += 1
self.states.append(state)
return new_output, new_output_logit, state
def new_output(self, output):
"""Logistic sigmoid output layers."""
with tf.variable_scope('output'):
logit = Linear(output, self.output_dim, name='output')
return tf.sigmoid(logit), logit
def build_controller(self, input_,
read_list_prev, output_list_prev, hidden_list_prev):
"""Build LSTM controller."""
with tf.variable_scope("controller"):
output_list = []
hidden_list = []
for layer_idx in xrange(self.controller_layer_size):
o_prev = output_list_prev[layer_idx]
h_prev = hidden_list_prev[layer_idx]
if layer_idx == 0:
def new_gate(gate_name):
return linear([input_, o_prev] + read_list_prev,
output_size = self.controller_dim,
bias = True,
scope = "%s_gate_%s" % (gate_name, layer_idx))
else:
def new_gate(gate_name):
return linear([output_list[-1], o_prev],
output_size = self.controller_dim,
bias = True,
scope="%s_gate_%s" % (gate_name, layer_idx))
# input, forget, and output gates for LSTM
i = tf.sigmoid(new_gate('input'))
f = tf.sigmoid(new_gate('forget'))
o = tf.sigmoid(new_gate('output'))
update = tf.tanh(new_gate('update'))
# update the sate of the LSTM cell
hid = tf.add_n([f * h_prev, i * update])
out = o * tf.tanh(hid)
hidden_list.append(hid)
output_list.append(out)
return output_list, hidden_list
def build_memory(self, M_prev, read_w_list_prev, write_w_list_prev, last_output):
"""Build a memory to read & write."""
with tf.variable_scope("memory"):
# 3.1 Reading
if self.read_head_size == 1:
read_w_prev = read_w_list_prev[0]
read_w, read = self.build_read_head(M_prev, tf.squeeze(read_w_prev),
last_output, 0)
read_w_list = [read_w]
read_list = [read]
else:
read_w_list = []
read_list = []
for idx in xrange(self.read_head_size):
read_w_prev_idx = read_w_list_prev[idx]
read_w_idx, read_idx = self.build_read_head(M_prev, read_w_prev_idx,
last_output, idx)
read_w_list.append(read_w_idx)
read_list.append(read_idx)
# 3.2 Writing
if self.write_head_size == 1:
write_w_prev = write_w_list_prev[0]
write_w, write, erase = self.build_write_head(M_prev,
tf.squeeze(write_w_prev),
last_output, 0)
M_erase = tf.ones([self.mem_size, self.mem_dim]) \
- outer_product(write_w, erase)
M_write = outer_product(write_w, write)
write_w_list = [write_w]
else:
write_w_list = []
write_list = []
erase_list = []
M_erases = []
M_writes = []
for idx in xrange(self.write_head_size):
write_w_prev_idx = write_w_list_prev[idx]
write_w_idx, write_idx, erase_idx = \
self.build_write_head(M_prev, write_w_prev_idx,
last_output, idx)
write_w_list.append(tf.transpose(write_w_idx))
write_list.append(write_idx)
erase_list.append(erase_idx)
M_erases.append(tf.ones([self.mem_size, self.mem_dim]) \
- outer_product(write_w_idx, erase_idx))
M_writes.append(outer_product(write_w_idx, write_idx))
M_erase = reduce(lambda x, y: x*y, M_erases)
M_write = tf.add_n(M_writes)
M = M_prev * M_erase + M_write
return M, read_w_list, write_w_list, read_list
def build_read_head(self, M_prev, read_w_prev, last_output, idx):
return self.build_head(M_prev, read_w_prev, last_output, True, idx)
def build_write_head(self, M_prev, write_w_prev, last_output, idx):
return self.build_head(M_prev, write_w_prev, last_output, False, idx)
def build_head(self, M_prev, w_prev, last_output, is_read, idx):
scope = "read" if is_read else "write"
with tf.variable_scope(scope):
# Figure 2.
# Amplify or attenuate the precision
with tf.variable_scope("k"):
k = tf.tanh(Linear(last_output, self.mem_dim, name='k_%s' % idx))
# Interpolation gate
with tf.variable_scope("g"):
g = tf.sigmoid(Linear(last_output, 1, name='g_%s' % idx))
# shift weighting
with tf.variable_scope("s_w"):
w = Linear(last_output, 2 * self.shift_range + 1, name='s_w_%s' % idx)
s_w = softmax(w)
with tf.variable_scope("beta"):
beta = tf.nn.softplus(Linear(last_output, 1, name='beta_%s' % idx))
with tf.variable_scope("gamma"):
gamma = tf.add(tf.nn.softplus(Linear(last_output, 1, name='gamma_%s' % idx)),
tf.constant(1.0))
# 3.3.1
# Cosine similarity
similarity = smooth_cosine_similarity(M_prev, k) # [mem_size x 1]
# Focusing by content
content_focused_w = softmax(scalar_mul(similarity, beta))
# 3.3.2
# Focusing by location
gated_w = tf.add_n([
scalar_mul(content_focused_w, g),
scalar_mul(w_prev, (tf.constant(1.0) - g))
])
# Convolutional shifts
conv_w = circular_convolution(gated_w, s_w)
# Sharpening
powed_conv_w = tf.pow(conv_w, gamma)
w = powed_conv_w / tf.reduce_sum(powed_conv_w)
if is_read:
# 3.1 Reading
read = matmul(tf.transpose(M_prev), w)
return w, read
else:
# 3.2 Writing
erase = tf.sigmoid(Linear(last_output, self.mem_dim, name='erase_%s' % idx))
add = tf.tanh(Linear(last_output, self.mem_dim, name='add_%s' % idx))
return w, add, erase
def initial_state(self, dummy_value=0.0):
self.depth = 0
self.states = []
with tf.variable_scope("init_cell"):
# always zero
dummy = tf.Variable(tf.constant([[dummy_value]], dtype=tf.float32))
# memory
M_init_linear = tf.tanh(Linear(dummy, self.mem_size * self.mem_dim,
name='M_init_linear'))
M_init = tf.reshape(M_init_linear, [self.mem_size, self.mem_dim])
# read weights
read_w_list_init = []
read_list_init = []
for idx in xrange(self.read_head_size):
read_w_idx = Linear(dummy, self.mem_size, is_range=True,
squeeze=True, name='read_w_%d' % idx)
read_w_list_init.append(softmax(read_w_idx))
read_init_idx = Linear(dummy, self.mem_dim,
squeeze=True, name='read_init_%d' % idx)
read_list_init.append(tf.tanh(read_init_idx))
# write weights
write_w_list_init = []
for idx in xrange(self.write_head_size):
write_w_idx = Linear(dummy, self.mem_size, is_range=True,
squeeze=True, name='write_w_%s' % idx)
write_w_list_init.append(softmax(write_w_idx))
# controller state
output_init_list = []
hidden_init_list = []
for idx in xrange(self.controller_layer_size):
output_init_idx = Linear(dummy, self.controller_dim,
squeeze=True, name='output_init_%s' % idx)
output_init_list.append(tf.tanh(output_init_idx))
hidden_init_idx = Linear(dummy, self.controller_dim,
squeeze=True, name='hidden_init_%s' % idx)
hidden_init_list.append(tf.tanh(hidden_init_idx))
output = tf.tanh(Linear(dummy, self.output_dim, name='new_output'))
state = {
'M': M_init,
'read_w': read_w_list_init,
'write_w': write_w_list_init,
'read': read_list_init,
'output': output_init_list,
'hidden': hidden_init_list
}
self.depth += 1
self.states.append(state)
return output, state
def get_memory(self, depth=None):
depth = depth if depth else self.depth
return self.states[depth - 1]['M']
def get_read_weights(self, depth=None):
depth = depth if depth else self.depth
return self.states[depth - 1]['read_w']
def get_write_weights(self, depth=None):
depth = depth if depth else self.depth
return self.states[depth - 1]['write_w']
def get_read_vector(self, depth=None):
depth = depth if depth else self.depth
return self.states[depth - 1]['read']
def print_read_max(self, sess):
read_w_list = sess.run(self.get_read_weights())
fmt = "%-4d %.4f"
if self.read_head_size == 1:
print(fmt % (argmax(read_w_list[0])))
else:
for idx in xrange(self.read_head_size):
print(fmt % np.argmax(read_w_list[idx]))
def print_write_max(self, sess):
write_w_list = sess.run(self.get_write_weights())
fmt = "%-4d %.4f"
if self.write_head_size == 1:
print(fmt % (argmax(write_w_list[0])))
else:
for idx in xrange(self.write_head_size):
print(fmt % argmax(write_w_list[idx]))