-
Notifications
You must be signed in to change notification settings - Fork 114
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
What is mean by res5c_relu #4
Comments
Hi @eng100200, it refers to a certain feature map - the one produced by the relu following block 5c (this is in the fifth stage of the network using the resnet naming scheme) |
@albanie It would really useful if you wrote down your exact formula for calculating 974 GigaFLOPs. Actually if the README could have detail the command line invocations to reproduce your reports that would be really useful. |
The number of flops is computed here - the code comments also mention some of the approximations and assumptions. In practice, for most architectures, almost all of the flops will come from the convolutions/deconvolutions (so those are the key layers from a flop perspective). Writing down a formula would be a little tricky, since it would essentially be a big switch statement. The tool is written in MATLAB, so the invocation to generate the reports is just to run the |
Please tell me what is mean by res5c_relu? and why
Estimates for a single full pass of model at input size 224 x 224 takes 8GFLOPs
while, res5c_relu features with the network 224 x 224 input sizes using a batch size of 128 takes 974 GFLOPs?
The text was updated successfully, but these errors were encountered: