remove print line

This commit is contained in:
erogol
2020-07-08 10:28:44 +02:00
parent 7721d4b230
commit 1dc7456dc4
-1
View File
@@ -7,7 +7,6 @@ class ReflectionPad1d(tf.keras.layers.Layer):
self.padding = padding
def call(self, x):
print(x.shape)
return tf.pad(x, [[0, 0], [self.padding, self.padding], [0, 0], [0, 0]], "REFLECT")