-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTLOps.py
More file actions
407 lines (331 loc) · 12.8 KB
/
TLOps.py
File metadata and controls
407 lines (331 loc) · 12.8 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
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
import numpy as np
import tensorflow as tf
from tensorflow.keras import backend as K
from tensorflow.keras import Input
from tensorflow.keras.layers import RNN
from tensorflow.keras.models import Model, Sequential
class TLAtom(tf.keras.layers.Layer):
def __init__(self, units, w=None, b=None, **kwargs):
self.units = units
self.state_size = units
self.given_w = w
self.given_b = b
super(TLAtom, self).__init__(**kwargs)
def build(self, input_shape):
# TODO: fix to make multi-cell cases possible
if self.given_w is not None:
if isinstance(self.given_w, list):
w = np.reshape(self.given_w, (input_shape[-1], self.units))
self.w = tf.convert_to_tensor(w, dtype=tf.float32)
else:
self.w = tf.convert_to_tensor(
np.ones((input_shape[-1], self.units)) * self.given_w,
dtype=tf.float32)
else:
self.w = self.add_weight(shape=(input_shape[-1], 1),
initializer='random_normal',
name='weight')
if self.given_b is not None:
self.b = self.given_b
else:
self.b = self.add_weight(shape=(self.units,),
initializer='random_normal',
name='bias')
self.built = True
def call(self, inputs, states):
h = K.dot(inputs, self.w) + self.b
output = h
return output, [output]
def get_config(self):
config = super(TLAtom, self).get_config()
config.update({'units': self.units, 'w': self.w.numpy(),
'b': self.b if isinstance(self.b, int) else self.b.numpy()})
return config
class TLNot(tf.keras.layers.Layer):
def __init__(self, units, **kwargs):
self.units = units
self.state_size = units
self.output_size = 1
super(TLNot, self).__init__(**kwargs)
def build(self, input_shape):
self.built = True
def call(self, inputs, states):
output = -1 * inputs
return output, [output]
def get_config(self):
config = super(TLNot, self).get_config()
config.update({'units': self.units})
return config
class TLAnd(tf.keras.layers.Layer):
def __init__(self, units, **kwargs):
self.units = units
self.state_size = units
self.output_size = 1
super(TLAnd, self).__init__(**kwargs)
def build(self, input_shape):
self.built = True
def call(self, inputs, states):
output = tf.math.reduce_min(inputs, 1, keepdims=True)
return output, [output]
def get_config(self):
config = super(TLAnd, self).get_config()
config.update({'units': self.units})
return config
class TLOR(tf.keras.layers.Layer):
def __init__(self, units, **kwargs):
self.units = units
self.state_size = units
self.output_size = 1
super(TLOR, self).__init__(**kwargs)
def build(self, input_shape):
self.built = True
def call(self, inputs, states):
output = tf.math.reduce_max(inputs, 1, keepdims=True)
return output, [output]
def get_config(self):
config = super(TLOR, self).get_config()
config.update({'units': self.units})
return config
class TLNext(tf.keras.layers.Layer):
def __init__(self, units, **kwargs):
self.units = units
self.state_size = units
self.output_size = 1
super(TLNext, self).__init__(**kwargs)
def build(self, input_shape):
self.built = True
def call(self, inputs, states):
start = self.state_size - 1
end = self.state_size
prev = states[0][:, start:end]
prev_state = states[0][:, 1:]
output = prev
new_state = tf.concat([prev_state, inputs], 1)
return output, new_state
def get_config(self):
config = super(TLNext, self).get_config()
config.update({'units': self.units})
return config
class TLAlwLearnBounds(tf.keras.layers.Layer):
def __init__(self, units, w, **kwargs):
self.units = units
self.w = w
super(TLAlwLearnBounds, self).__init__(**kwargs)
def build(self, input_shape):
self.betas = self.add_weight(shape=(self.w, 1),
initializer='random_normal',
name='interval_weights')
self.full_weights = K.get_value(self.betas).copy()
weight = tf.math.sign(self.full_weights)
sub = tf.ones_like(weight) * 9999
weight_mod = tf.where(tf.equal(weight, -1), sub, weight)
self.last_quant_weights = tf.identity(weight_mod)
K.set_value(self.betas, weight_mod)
def get_config(self):
config = super(TLAlwLearnBounds, self).get_config()
config.update({'units': self.units})
def call(self, inputs):
output = tf.reduce_min(tf.math.multiply(inputs, self.betas),
2, keepdims=True)
return output
def on_batch_end(self):
weight = tf.math.sign(self.full_weights)
sub = tf.ones_like(weight) * 9999
weight_mod = tf.where(tf.equal(weight, -1), sub, weight)
self.last_quant_weights = tf.identity(weight_mod)
K.set_value(self.betas, weight_mod)
class TLAlw(tf.keras.layers.Layer):
def __init__(self, units, start=None, end=None, **kwargs):
'''
:param units:
:param start:
:param end: if you want the timestep x to be included, set end = x + 2
:param kwargs:
'''
self.units = units
self.state_size = units
self.output_size = 1
self.bounded = (start is not None) and (end is not None)
if self.bounded:
# self.start = self.state_size - end
# self.end = self.state_size - start
self.start = start
self.end = end
else:
self.start = self.state_size - 1
self.end = self.state_size
super(TLAlw, self).__init__(**kwargs)
def build(self, input_shape):
self.built = True
def call(self, inputs, states):
start = self.start
end = self.end
prev = states[0][:, start:end]
prev_min = tf.math.reduce_min(prev, 1, keepdims=True)
prev_state = states[0][:, 1:]
if self.bounded:
# output = prev_min
# output = tf.minimum(inputs, prev_min)
new_state = tf.concat([prev_state, inputs], 1)
int = new_state[:, start:end]
output = tf.math.reduce_min(int, 1, keepdims=True)
else:
output = tf.minimum(inputs, prev_min)
new_state = tf.concat([prev_state, output], 1)
return output, new_state
def get_initial_state(self, inputs=None, batch_size=None, dtype=None):
return tf.ones((batch_size, self.state_size)) * 9999
def get_config(self):
config = super(TLAlw, self).get_config()
config.update({'units': self.units,
'start': self.start, 'end': self.end})
return config
class TLEvLearnBounds(tf.keras.layers.Layer):
def __init__(self, units, w, **kwargs):
self.units = units
self.w = w
super(TLEvLearnBounds, self).__init__(**kwargs)
def build(self, input_shape):
self.betas = self.add_weight(shape=(self.w, 1),
initializer='ones',
name='interval_weights')
self.full_weights = K.get_value(self.betas).copy()
weight = tf.math.sign(self.full_weights)
sub = tf.ones_like(weight) * -9999
weight_mod = tf.where(tf.equal(weight, -1), sub, weight)
self.last_quant_weights = tf.identity(weight_mod)
K.set_value(self.betas, weight_mod)
def get_config(self):
config = super(TLEvLearnBounds, self).get_config()
config.update({'units': self.units})
def call(self, inputs):
output = tf.reduce_max(tf.math.multiply(inputs, self.betas),
2, keepdims=True)
return output
def on_batch_end(self):
new_weights = K.get_value(self.betas)
weights_update = new_weights - self.last_quant_weights
self.full_weights += weights_update
weight = tf.math.sign(self.full_weights)
sub = tf.ones_like(weight) * -9999
weight_mod = tf.where(tf.equal(weight, -1), sub, weight)
self.last_quant_weights = tf.identity(weight_mod)
K.set_value(self.betas, weight_mod)
class TLEv(tf.keras.layers.Layer):
def __init__(self, units, start=None, end=None, **kwargs):
'''
:param units:
:param start:
:param end: if you want the timestep x to be included, set end = x + 2
:param kwargs:
'''
self.units = units
self.state_size = units
self.output_size = 1
self.bounded = (start is not None) and (end is not None)
if self.bounded:
self.start = self.state_size - end
self.end = self.state_size - start
else:
self.start = self.state_size - 1
self.end = self.state_size
super(TLEv, self).__init__(**kwargs)
def build(self, input_shape):
self.built = True
def call(self, inputs, states):
start = self.start
end = self.end
prev = states[0][:, start:end]
prev_max = tf.math.reduce_max(prev, 1, keepdims=True)
prev_state = states[0][:, 1:]
if self.bounded:
# output = prev_max
output = tf.maximum(inputs, prev_max)
new_state = tf.concat([prev_state, inputs])
else:
output = tf.maximum(inputs, prev_max)
new_state = tf.concat([prev_state, output], 1)
return output, new_state
def get_initial_state(self, inputs=None, batch_size=None, dtype=None):
return tf.ones((batch_size, self.state_size)) * -9999
def get_config(self):
config = super(TLEv, self).get_config()
config.update({'units': self.units,
'start': self.start, 'end': self.end})
return config
class TLUntil(tf.keras.layers.Layer):
def __init__(self, units, **kwargs):
self.units = units
self.state_size = units
self.output_size = 1
super(TLUntil, self).__init__(**kwargs)
def build(self, input_shape):
self.built = True
# # MY IMPLEMENTATION
# def call(self, inputs, states):
# start = self.units - 1
# end = self.units
#
# phi_input = tf.reshape(inputs[:, 0], shape=(tf.shape(inputs)[0], 1))
# psi_input = tf.reshape(inputs[:, 1], shape=(tf.shape(inputs)[0], 1))
#
# # INNER INF
# prev_inf = states[0][:, 0][:, start:end]
# new_inf = tf.minimum(prev_inf, phi_input)
# new_inf_state = tf.concat([
# states[0][:, 0][:, 1:],
# new_inf], 1)
#
# # MIN PSI AND PHI
# min_psi_phi = tf.minimum(phi_input, psi_input)
#
# # PREVIOUS SUP INPUT
# prev_b = states[0][:, 1]
#
# # UPDATE B
# update_b = tf.minimum(prev_b, phi_input)
#
# # max of update_b
# max_update_b = tf.reduce_max(update_b, 1, keepdims=True)
#
# # sup
# sup = tf.maximum(max_update_b, min_psi_phi)
# out = sup
#
# # save new input for sup
# new_b = tf.concat([
# update_b[:, 1:],
# min_psi_phi
# ], 1)
#
# # UPDATE STATE
# new_state = tf.concat(
# [tf.expand_dims(new_inf_state, axis=1),
# tf.expand_dims(new_b, axis=1)], 1)
#
# return out, new_state
# HOUSSAM's IMPLEMENTATION
def call(self, inputs, states):
start = self.units - 1
end = self.units
phi_input = tf.reshape(inputs[:, 0], shape=(tf.shape(inputs)[0], 1))
psi_input = tf.reshape(inputs[:, 1], shape=(tf.shape(inputs)[0], 1))
# get prev out
prev_r = states[0][:, start:end]
# MAX prev_r and psi
max_prev_r_psi = tf.maximum(prev_r, psi_input)
# MIN phi and max_prev_r_psi
out = tf.minimum(phi_input, max_prev_r_psi)
# UPDATE OUT
new_state = tf.concat([states[0][:, 1:], out], 1)
return out, new_state
def get_initial_state(self, inputs=None, batch_size=None, dtype=None):
# inner_inf = tf.ones((batch_size, 1, self.units)) * 9999
# b_out = tf.ones((batch_size, 1, self.units)) * -9999
# init_state = tf.concat([inner_inf, b_out], 1)
return tf.ones((batch_size, self.state_size)) * -9999
def get_config(self):
config = super(TLEv, self).get_config()
config.update({'units': self.units,
'start': self.start, 'end': self.end})
return config