We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22b8836 commit 09cddcbCopy full SHA for 09cddcb
KerasLayer/QAoutputBlock.py
@@ -0,0 +1,25 @@
1
+# ! -*- coding: utf-8 -*-
2
+from keras.engine.topology import Layer
3
+from keras.regularizers import *
4
+import tensorflow as tf
5
+import keras.backend as K
6
+
7
+class QAoutputBlock(Layer):
8
+ def __init__(self, ans_limit=30, **kwargs):
9
+ self.ans_limit = ans_limit
10
+ super(QAoutputBlock, self).__init__(**kwargs)
11
12
+ def build(self, input_shape):
13
+ super(QAoutputBlock, self).build(input_shape)
14
15
+ def call(self, x, mask=None):
16
+ x1 ,x2 = x
17
+ outer = tf.matmul(tf.expand_dims(x1, axis=2), tf.expand_dims(x2, axis=1))
18
+ outer = tf.matrix_band_part(outer, 0, self.ans_limit)
19
+ output1 = tf.reshape(tf.cast(tf.argmax(tf.reduce_max(outer, axis=2), axis=1), tf.float32),(-1,1))
20
+ output2 = tf.reshape(tf.cast(tf.argmax(tf.reduce_max(outer, axis=1), axis=1), tf.float32),(-1,1))
21
22
+ return [output1, output2]
23
24
+ def compute_output_shape(self, input_shape):
25
+ return [(input_shape[0][0],1), (input_shape[0][0],1)]
KerasLayer/layer_dropout.py
@@ -0,0 +1,22 @@
+class LayerDropout(Layer):
+ def __init__(self, dropout = 0.0, **kwargs):
+ self.dropout = dropout
+ super(LayerDropout, self).__init__(**kwargs)
+ super(LayerDropout, self).build(input_shape)
+ def call(self, x, mask=None, training=None):
+ x, residual = x
+ pred = tf.random_uniform([]) < self.dropout
+ x_train = tf.cond(pred, lambda: residual, lambda: tf.nn.dropout(x, 1.0 - self.dropout) + residual)
+ x_test = x + residual
+ return K.in_train_phase(x_train, x_test, training=training)
+ return input_shape
0 commit comments