Merge pixelshuffle function into module#375
Merged
soumith merged 1 commit intopytorch:masterfrom Dec 30, 2016
Merged
Conversation
soumith
approved these changes
Dec 30, 2016
Contributor
|
We should put the implementation in functional, not in the module 😕 |
Contributor
|
Ah cool, did not know that autograd would handle the permutations. As long as the following test passed: i.e. the This test is already in |
mrshenli
pushed a commit
to mrshenli/pytorch
that referenced
this pull request
Apr 11, 2020
* Re-enable hybrid_frontend tutorials * clean up
KsenijaS
pushed a commit
to KsenijaS/pytorch
that referenced
this pull request
Dec 14, 2020
Model for opset 1 fails validation in two ways. Models for more recent opsets are already available. * Fixes pytorch#55 - all initializers not declared as inputs * Fixes pytorch#13 - missing consumed_inputs for BatchNormalization nodes Signed-off-by: Jason Plurad <pluradj@us.ibm.com> Co-authored-by: Wenbing Li <10278425+wenbingl@users.noreply.github.com>
KyleCZH
pushed a commit
to KyleCZH/pytorch
that referenced
this pull request
Sep 20, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The operations used by
PixelShuffleare differentiable (via autograd), so we only have to implement the forward pass in the Module and get the backward automatically.cc @alykhantejani