We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e32feb8 commit a85d6abCopy full SHA for a85d6ab
tensorflowTUT/tf22_scope/tf22_RNN_scope.py
@@ -46,7 +46,7 @@ def _built_RNN(self):
46
l_in_y = tf.matmul(l_in_x, Wi) + bi
47
l_in_y = tf.reshape(l_in_y, [-1, self._time_steps, self._cell_size], name='2_3D')
48
49
- with tf.variable_scope('lstm_cell'):
+ with tf.variable_scope('cell'):
50
cell = tf.nn.rnn_cell.BasicRNNCell(self._cell_size)
51
with tf.name_scope('initial_state'):
52
self._cell_initial_state = cell.zero_state(self._batch_size, dtype=tf.float32)
0 commit comments