-
Notifications
You must be signed in to change notification settings - Fork 466
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
ResNet Bottleneck Architecture #1957
ResNet Bottleneck Architecture #1957
Conversation
Notice that this neural network will likely only work in the training loop with the fixed bug of nested lists from #1956 |
Hi @MaximilianSchreff , thanks a lot for working on this. Nice to see that the code is document in the functions. can we create one small .md file with instructions on how to run, limitations, a quick example! If you have any images/diagrams (even hand drawn rough diagrams also fine). May be like this: https://pytorch.org/hub/nvidia_deeplearningexamples_resnet50/ Regards |
@j143 Thank you for the feedback! |
Content merged by other PR |
This series of commits adds the forward pass of the residual network bottleneck architecture as introduces by "Deep Residual Learning for Image Recognition" by Kaiming He et. al. and refined in "ResNet v1.5 for PyTorch" by NVIDIA.
The individual components (bottleneck residual block, bottleneck residual layer) has been unit tested and the tests were added to the NN test suite and the whole bottleneck ResNet has been tested against the implementation of PyTorch which was not added to the test suite.
@phaniarnab