浏览代码

Improved the spacing on the comment

Neal Wu 8 年之前
父节点
当前提交
29881fb483
共有 1 个文件被更改,包括 2 次插入2 次删除
  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"):