Skip to content

Commit 2b83e1b

Browse files
committed
fix print bug
1 parent 9f2af2e commit 2b83e1b

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
@@ -3095,7 +3095,7 @@ def __init__(
30953095
Layer.__init__(self, name=name)
30963096
assert paddings is not None, "paddings should be a Tensor of type int32. see https://www.tensorflow.org/api_docs/python/tf/pad"
30973097
self.inputs = layer.outputs
3098-
print(" [TL] PoolLayer %s: paddings:%s mode:%s" %
3098+
print(" [TL] PadLayer %s: paddings:%s mode:%s" %
30993099
(self.name, list(paddings.get_shape()), mode))
31003100

31013101
self.outputs = tf.pad(self.inputs, paddings=paddings, mode=mode, name=name)

0 commit comments

Comments
 (0)