Unverified Commit 64e2ee78 authored by Neal Wu's avatar Neal Wu Committed by GitHub
Browse files

Fix code spacing

parent 99566f81
...@@ -233,7 +233,7 @@ class PTBModel(object): ...@@ -233,7 +233,7 @@ class PTBModel(object):
# #
# inputs = tf.unstack(inputs, num=self.num_steps, axis=1) # inputs = tf.unstack(inputs, num=self.num_steps, axis=1)
# outputs, state = tf.nn.static_rnn(cell, inputs, # outputs, state = tf.nn.static_rnn(cell, inputs,
# initial_state=self._initial_state) # initial_state=self._initial_state)
outputs = [] outputs = []
with tf.variable_scope("RNN"): with tf.variable_scope("RNN"):
for time_step in range(self.num_steps): for time_step in range(self.num_steps):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment