We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
phlippe
No branches or pull requests
Tutorial: DL2-1 (Fill-in number of tutorial)
Describe the bug
grid = torch.roll(grid, shifts=1, dims=-1)
in trilinear samplingExpected behavior
grid = torch.flip(grid, dims=[-1])
Screenshots
visualization on number 6:
using
roll
vs using
flip
The text was updated successfully, but these errors were encountered: