Explorar o código

Improved the spacing on the comment

Neal Wu %!s(int64=8) %!d(string=hai) anos
pai
achega
29881fb483
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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"):