Skip to content

Commit

Permalink
Improved the spacing on the comment
Browse files Browse the repository at this point in the history
  • Loading branch information
nealwu committed Apr 2, 2017
1 parent d86fb5f commit 29881fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tutorials/rnn/ptb/ptb_word_lm.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ def attn_cell():
# 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"):
Expand Down

0 comments on commit 29881fb

Please sign in to comment.