We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Tutorial: DL2-1 (Fill-in number of tutorial)
Describe the bug grid = torch.roll(grid, shifts=1, dims=-1) in trilinear sampling
grid = torch.roll(grid, shifts=1, dims=-1)
Expected behavior grid = torch.flip(grid, dims=[-1])
grid = torch.flip(grid, dims=[-1])
Screenshots visualization on number 6: using roll
roll
vs using flip
flip