Open
Description
Hi!
In the original paper implementation they are using dims [1:]
: x = x_padded[1:].view_as(x)
their code but in your implementation you are using [:-1]
: x = x_padded[:-1].view_as(x)
your code which produces wrong matrix at the output.