DetectionTeamUCAS / FPN_Tensorflow

This is a tensorflow re-implementation of Feature Pyramid Networks for Object Detection.
https://github.com/DetectionTeamUCAS/FPN_Tensorflow
MIT License
347 stars 132 forks source link

pool层有疑问? #145

Open wanghangege opened 3 years ago

wanghangege commented 3 years ago
            P6 = slim.avg_pool2d(P5, kernel_size=[1, 1], stride=2, scope='build_P6')

这个kernel_size不应该是[2, 2]么?