remove print line

pull/10/head
erogol 2020-07-08 10:28:44 +02:00
parent 7721d4b230
commit 1dc7456dc4
1 changed files with 0 additions and 1 deletions

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")