Skip to content

Commit a85d6ab

Browse files
committed
fix typo
1 parent e32feb8 commit a85d6ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorflowTUT/tf22_scope/tf22_RNN_scope.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def _built_RNN(self):
4646
l_in_y = tf.matmul(l_in_x, Wi) + bi
4747
l_in_y = tf.reshape(l_in_y, [-1, self._time_steps, self._cell_size], name='2_3D')
4848

49-
with tf.variable_scope('lstm_cell'):
49+
with tf.variable_scope('cell'):
5050
cell = tf.nn.rnn_cell.BasicRNNCell(self._cell_size)
5151
with tf.name_scope('initial_state'):
5252
self._cell_initial_state = cell.zero_state(self._batch_size, dtype=tf.float32)

0 commit comments

Comments
 (0)