Adds feature pyramid attention (FPA) module, resolves #167#168
Open
daniel-j-h wants to merge 1 commit intomasterfrom
Open
Adds feature pyramid attention (FPA) module, resolves #167#168daniel-j-h wants to merge 1 commit intomasterfrom
daniel-j-h wants to merge 1 commit intomasterfrom
Conversation
3c90aad to
8e4804a
Compare
Collaborator
Author
|
By now we have https://arxiv.org/abs/1904.11492 which not only compares various attention mechanisms but also comes up with a framework for visual attention and proposal a new global context block in this visual attention framework. I've implemented
for my 3d video models in https://github.com/moabitcoin/ig65m-pytorch/blob/706c9e737e42d98086b3af24548fb2bb6a7dc409/ig65m/attention.py#L9-L103 for the 2d segmentation case here we can adapt the 3d code and then e.g. use a couple of global context blocks on top of the last (high level) resnet feature blocks. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

For #167.
Adds Feature Pyramid Attention (FPA) module 💥 🚀
from https://arxiv.org/abs/1805.10180 Figure 2
from https://arxiv.org/abs/1805.10180 Figure 3
Tasks
@ocourtin maybe this is interesting to you :)