MCPcopy Create free account
hub / github.com/chinawithfrank/ChatBotCourse / single_cell

Method single_cell

chatbotv4/seq2seq_model.py:123–124  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

121
122 # Create the internal multi-layer cell for our RNN.
123 def single_cell():
124 return tf.contrib.rnn.GRUCell(size)
125 if use_lstm:
126 def single_cell():
127 return tf.contrib.rnn.BasicLSTMCell(size)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected