Procházet zdrojové kódy

Improved the spacing on the comment

Neal Wu před 8 roky
rodič
revize
29881fb483
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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"):