-
-
Notifications
You must be signed in to change notification settings - Fork 609
New issue
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
ConvTranspose produces nonsense results for 3D (aka 5D) inputs #978
Comments
On some investigation, it looks like the issue is that the 2D case throws away the return value of the |
Closing here since this is an |
Ok, this is indeed NNlib internals. For anyone coming across this issue, it might have happened because you mixed |
Moved here. |
E.g.,
When the batch size is 1, the application 'succeeds' by coincidence due to broadcasting but the output is of the wrong size.
The PR (#311) that added this operation explicitly noted that only 2D support was added but
@doc
doesn't mention this and anyway an error should be signalled if the functionality is missing.Examining the definition reveals that the channel and batch dims somehow end up swapped in the 2d vs 3d case:
The text was updated successfully, but these errors were encountered: