Skip to content
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

normalize #5

Open
Bio-shine opened this issue Oct 16, 2020 · 1 comment
Open

normalize #5

Bio-shine opened this issue Oct 16, 2020 · 1 comment

Comments

@Bio-shine
Copy link

# multiply & normalize ->(B, N, C')
energy = torch.bmm(proj_query, proj_key)
energy_new = torch.max(energy, -1, keepdim=True)[0].expand_as(energy) - energy

I think the normalization implemented in acfnet.py is different from the equation (2) in the original paper.
And I wonder why you implement this way.

@zzw1123
Copy link

zzw1123 commented Dec 29, 2020

I have the same question. Have you figured it out?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants