Skip to content

Commit b7e329d

Browse files
committed
fix docs
1 parent 742393b commit b7e329d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorlayer/layers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4743,7 +4743,7 @@ def __call__(self, inputs, state, scope=None):
47434743
if self._state_is_tuple:
47444744
c, h = state
47454745
else:
4746-
print state
4746+
# print state
47474747
# c, h = tf.split(3, 2, state)
47484748
c, h = tf.split(state, 2, 3)
47494749
concat = _conv_linear([inputs, h], self.filter_size, self.num_features * 4, True)

0 commit comments

Comments
 (0)