-
Notifications
You must be signed in to change notification settings - Fork 527
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
Ignoring Conv5_4 #94
Comments
Referring back to the original paper and reference implementation, it looks like there are other bugs in this layer implementation. In the paper, 3 conv sublayers are used at in layers 3, 4, and 5 - this implementation uses 4, 4, and 4 respectively (though the final layer omits the 4th conv seemingly by mistake). Links for reference: |
I think the author used part of vgg19, while the paper used vgg16. Layers after relu5_3 is not needed. |
Yes, the authors here have used a part of VGG-19 architecture. (not exactly sure why) The VGG-19 architecture specificiation were referred from here to calculate tensor dimensions. @shekkizh Is this correct? |
vgg_net(weights, image) initializes the VGG with layers up to and including Conv (and RELU) 5_4:
However, in inference(image, keep_prob), the final layer is referenced as Conv5_3:
This looks like an error; is this intended?
The text was updated successfully, but these errors were encountered: