-
Notifications
You must be signed in to change notification settings - Fork 183
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
A PyTorch version #36
Comments
Do u have comparison experiments on using different number of hourglass? |
I noticed in both lua and pytorch implementation, the residual modules structure is |
Okay, so actually, this repo's residual module is not the same as the demo residual module. I feel the final demo version makes more sense, since it is the same with resnet implementations. |
The change in the resnet module is based on this paper: https://arxiv.org/pdf/1603.05027.pdf which discusses the effects of switching between pre- and post-activation. Can't remember now if there was much difference when I changed the code. |
Thanks for the note! I was wondering why resent in pytorch model zoo didn't adopt the |
Thanks for sharing your code!
I wrote a pytorch version of hourglass network. Hope this could be helpful for who are not familiar with Torch. Many codes for data processing are brought from your code (
src/pypose
). Thank the author again!However, the code cannot reproduce the results perfectly (83.58 [email protected] score for the simplified 4-stack hourglass). Some details might be missed, especially the post processing part (e.g., coordinates mapping, etc). Anyone interested in this project is welcomed to contribute to this project!
The text was updated successfully, but these errors were encountered: