()
| 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) |
nothing calls this directly
no outgoing calls
no test coverage detected