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
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
?
The text was updated successfully, but these errors were encountered:
@dongzhuoyao @kuangliu Where is "P6"? The original paper also contains "P6".
Sorry, something went wrong.
@dongzhuoyao no, they are not. check this:
P6 is contained in section 4.1.
@dongzhuoyao @Superlee506 @linghai06 @zzzz94 @kuangliu How can I use this model into my own classification tasks?
No branches or pull requests
in fpn.py file.
should be
?
The text was updated successfully, but these errors were encountered: