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
on https://github.com/hhb072/IntroVAE/blob/master/networks.py line 40 output = self.relu2(self.bn2(torch.add(output,identity_data))) I see the normal ResBlock code like this form: output = self.relu2(torch.add(self.bn2(output),identity_data))
output = self.relu2(self.bn2(torch.add(output,identity_data)))
output = self.relu2(torch.add(self.bn2(output),identity_data))
Why Add before batchNorm?
The text was updated successfully, but these errors were encountered:
yeah, I have the same question, it is different from https://github.com/yunjey/pytorch-tutorial/blob/56bba936197f46968aa2cc04c8096055de7f710c/tutorials/02-intermediate/deep_residual_network/main.py#L63
Sorry, something went wrong.
No branches or pull requests
on https://github.com/hhb072/IntroVAE/blob/master/networks.py
line 40
output = self.relu2(self.bn2(torch.add(output,identity_data)))
I see the normal ResBlock code like this form:
output = self.relu2(torch.add(self.bn2(output),identity_data))
Why Add before batchNorm?
The text was updated successfully, but these errors were encountered: