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

fpn structure doubt #3

Open
dongzhuoyao opened this issue Mar 9, 2018 · 4 comments
Open

fpn structure doubt #3

dongzhuoyao opened this issue Mar 9, 2018 · 4 comments

Comments

@dongzhuoyao
Copy link

in fpn.py file.

# Top-down
        p5 = self.toplayer(c5)
        p4 = self._upsample_add(p5, self.latlayer1(c4))
        p3 = self._upsample_add(p4, self.latlayer2(c3))
        p2 = self._upsample_add(p3, self.latlayer3(c2))
        # Smooth
        p4 = self.smooth1(p4)
        p3 = self.smooth2(p3)
        p2 = self.smooth3(p2)

should be

# Top-down
        p5 = self.toplayer(c5)
        p4 = self._upsample_add(p5, self.latlayer1(c4))
        p4 = self.smooth1(p4)
        p3 = self._upsample_add(p4, self.latlayer2(c3))
        p3 = self.smooth2(p3)
        p2 = self._upsample_add(p3, self.latlayer3(c2))
        p2 = self.smooth3(p2)
        # Smooth

?

@Superlee506
Copy link

@dongzhuoyao @kuangliu Where is "P6"? The original paper also contains "P6".

@linghai06
Copy link

@dongzhuoyao no, they are not. check this:
image

@zzzz94
Copy link

zzzz94 commented Sep 27, 2018

P6 is contained in section 4.1.

@Muzijiajian
Copy link

@dongzhuoyao @Superlee506 @linghai06 @zzzz94 @kuangliu How can I use this model into my own classification tasks?

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

5 participants