Conversation
e25556d to
784d63b
Compare
5 tasks
d5c35ff to
d9f242d
Compare
Contributor
|
Got this error: Typo? There are 4 lines having |
Collaborator
Author
|
Ah, that's what you get from a quick Friday evening refactor: silly mistakes 😅 I just fixed it, give it another go! Sorry for the noise here. |
Contributor
|
Per #104 (review)
|
Collaborator
Author
|
Next actions here
|
a29c56d to
2e86f9f
Compare
This was referenced May 27, 2019
Closed
Collaborator
Author
|
By now there are pre-trained resnet50-fpns in torchvision. If we want to stay with semantic segmentation we should try them and later potentially extend to instance segmentation on top. |
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 #60.
This changeset implements a Feature Pyramid Network (FPN) on top of a (potentially pre-trained) ResNet.
The implementation tries to follow these two resources carefully.
from http://presentations.cocodataset.org/COCO17-Stuff-FAIR.pdf
Here is the overall design for the full architecture:
1x1convolutions to transform the ResNet feature maps (of sizes 256, 512, 1024, 2048) into a fixed number of feature maps (configurable, 256 by default).3x3convolutions on top of the FPN feature maps, concatenate their outputs, and add a final convolution with number of classes in its output.