Skip to content

Instantly share code, notes, and snippets.

@chricke
Created March 26, 2019 09:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chricke/553f6cc139849ffd77adfd903a9e3d21 to your computer and use it in GitHub Desktop.
Save chricke/553f6cc139849ffd77adfd903a9e3d21 to your computer and use it in GitHub Desktop.
Build RNN
def build_rnn(cell, inputs):
outputs, state = tf.nn.dynamic_rnn(cell, inputs, dtype=tf.float32)
final_state = tf.identity(state, name="final_state")
return outputs, final_state
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment