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
In Tutorial 1: Training iUNets in Pytorch, for the An invertible toy problem, when Training the model, the loss was computed by comparing the model output output = model(x) and y = torch.flip(x, (3,)) instead of x. Why the third dimension should be flipped? Thank you!
The text was updated successfully, but these errors were encountered:
In Tutorial 1: Training iUNets in Pytorch, for the An invertible toy problem, when Training the model, the loss was computed by comparing the model output
output = model(x)
andy = torch.flip(x, (3,))
instead ofx
. Why the third dimension should be flipped? Thank you!The text was updated successfully, but these errors were encountered: