We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2af2e commit 2b83e1bCopy full SHA for 2b83e1b
tensorlayer/layers.py
@@ -3095,7 +3095,7 @@ def __init__(
3095
Layer.__init__(self, name=name)
3096
assert paddings is not None, "paddings should be a Tensor of type int32. see https://www.tensorflow.org/api_docs/python/tf/pad"
3097
self.inputs = layer.outputs
3098
- print(" [TL] PoolLayer %s: paddings:%s mode:%s" %
+ print(" [TL] PadLayer %s: paddings:%s mode:%s" %
3099
(self.name, list(paddings.get_shape()), mode))
3100
3101
self.outputs = tf.pad(self.inputs, paddings=paddings, mode=mode, name=name)
0 commit comments