Created
April 17, 2017 20:24
-
-
Save iskandr/a874e4cf358697037d14a17020304535 to your computer and use it in GitHub Desktop.
Since Keras 2.0 removed the Highway Network layer, here's my attempt at implementing something equivalent using the functional API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import keras.backend as K | |
from keras.layers import Dense, Activation, Multiply, Add, Lambda | |
import keras.initializers | |
def highway_layers(value, n_layers, activation="tanh", gate_bias=-3): | |
dim = K.int_shape(value)[-1] | |
gate_bias_initializer = keras.initializers.Constant(gate_bias) | |
for i in range(n_layers): | |
gate = Dense(units=dim, bias_initializer=gate_bias_initializer)(value) | |
gate = Activation("sigmoid")(gate) | |
negated_gate = Lambda( | |
lambda x: 1.0 - x, | |
output_shape=(dim,))(gate) | |
transformed = Dense(units=dim)(value) | |
transformed = Activation(activation)(value) | |
transformed_gated = Multiply()([gate, transformed]) | |
identity_gated = Multiply()([negated_gate, value]) | |
value = Add()([transformed_gated, identity_gated]) | |
return value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, how could you add this layer into a CNN using Sequential in Keras?