We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for the well explained paper and code. I have a question about channel attention part.
img_vec = nn.Softmax(dim=1)(img_vec) * img_vec.shape[1]
Is there a particular reason why you multiplied img_vec.shape[1] with the Softmax value?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thanks for the well explained paper and code.
I have a question about channel attention part.
img_vec = nn.Softmax(dim=1)(img_vec) * img_vec.shape[1]
Is there a particular reason why you multiplied img_vec.shape[1] with the Softmax value?
The text was updated successfully, but these errors were encountered: