You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the call() function of EideticLSTMCell class, on line 210 and line 215 there are:
output_gate = tf.tanh(o_x + o_h + o_c + o_m)
output = tf.tanh(memory) * tf.sigmoid(output_gate)
However, according to the paper, I think these 2 lines should be:
output_gate = tf.sigmoid(o_x + o_h + o_c + o_m)
output = tf.tanh(memory) * output_gate
Are there any explanations that there's and additional tanh activation on the (o_x + o_h + o_c + o_m)?
The text was updated successfully, but these errors were encountered:
In the call() function of EideticLSTMCell class, on line 210 and line 215 there are:
output_gate = tf.tanh(o_x + o_h + o_c + o_m)
output = tf.tanh(memory) * tf.sigmoid(output_gate)
However, according to the paper, I think these 2 lines should be:
output_gate = tf.sigmoid(o_x + o_h + o_c + o_m)
output = tf.tanh(memory) * output_gate
Are there any explanations that there's and additional tanh activation on the (o_x + o_h + o_c + o_m)?
The text was updated successfully, but these errors were encountered: