Padding=(0,1) in Conv1d

Hi, what does Padding=(0,1) in Conv1d do? I would have expected this to perform a padding of zero on the left and a padding of 1 on the right but it does not seem to do this.

Conv*d can only do symmetric padding. So i suspect that the 1 here is being ignored.

1 Like