-
Notifications
You must be signed in to change notification settings - Fork 200
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
Kernel Size Discrepancy #46
Comments
Based on my experience of loading the weights for ECANet-50, it seems the authors have set up the kernel sizes manually based on the input tensor size to the bottleneck block and not the ECA layer. |
Exactly what I saw. I did not see the reflection of the adaptive strategy proposed in the paper particularly in the codebase. |
自适应在哪呢,同问. |
Open
I also doubt |
me too |
Me too. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As described in this issue along with many others, the codebase uses a fixated kernel size of 3 for each layer in the ResNet-50 architecture as shown in this code file. However, upon calculation using the adaptive kernel size formula it was found that the kernel size values are [3,5,5,5].
I would encourage the authors to clarify on the reason behind using different kernel sizes than what is obtained from the kernel size formula presented in the paper which as stated in the paper is used for every experiments.
The text was updated successfully, but these errors were encountered: