Browse Source

Improved the spacing on the comment

Neal Wu 8 years ago
parent
commit
29881fb483
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tutorials/rnn/ptb/ptb_word_lm.py

+ 2 - 2
tutorials/rnn/ptb/ptb_word_lm.py

@@ -147,8 +147,8 @@ class PTBModel(object):
     # The alternative version of the code below is:
     #
     # inputs = tf.unstack(inputs, num=num_steps, axis=1)
-    # outputs, state = tf.contrib.rnn.static_rnn(cell, inputs,
-    #                            initial_state=self._initial_state)
+    # outputs, state = tf.contrib.rnn.static_rnn(
+    #     cell, inputs, initial_state=self._initial_state)
     outputs = []
     state = self._initial_state
     with tf.variable_scope("RNN"):