efficientdet.pytorch icon indicating copy to clipboard operation
efficientdet.pytorch copied to clipboard

why the BiFPN output channel is 256?

Open sunlanchang opened this issue 5 years ago • 1 comments

# using scaled BiFPN channels did not work in my implementation.
 # here, we use outc=256 for all settings.
outc = 256

In Google's paper the BiFPN channel is 64 in EfficientDet D0 and D2, it is 256 in your code, which confused me a lot. Please explain why you change it to 256. Thanks a lot.

sunlanchang avatar Dec 09 '19 10:12 sunlanchang

P7_out = self.conv7dw(P7_in + P7_up+F.interpolate(P6_out, P7_up.size()[2:]))

P7_up ? only two input of P7_out

najingligong1111 avatar Dec 10 '19 23:12 najingligong1111