Hey I had a quick question regarding padding. I don't have a ton of experience with Pytorch, but as far as I can tell from this, it seems that the layer adds the parameter padding of zeros to each axis of the input.
However, in your implementation, you use padding='same'. In the original implementation in pytorch, the author uses padding=1. I'm under the impression that to get the padding the same, we would need to specify the padding manually in tensorflow.
Am I missing something here where Tensorflow is taking care of something under the hood that I'm not understanding?
Hey I had a quick question regarding padding. I don't have a ton of experience with Pytorch, but as far as I can tell from this, it seems that the layer adds the parameter padding of zeros to each axis of the input.
However, in your implementation, you use padding='same'. In the original implementation in pytorch, the author uses
padding=1. I'm under the impression that to get the padding the same, we would need to specify the padding manually in tensorflow.Am I missing something here where Tensorflow is taking care of something under the hood that I'm not understanding?