You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: