lzx1413 / CAFFE_SSD

Other
106 stars 55 forks source link

F-SSD Framwork #5

Closed TrungHieu-Le closed 5 years ago

TrungHieu-Le commented 6 years ago

Hello lzx1413, In figure 2 of F-SSD paper, Could you please let me know

  1. How can FC_7 and Con7_2 be interpolated to 38x38?
  2. You concatenated 3 layers (38x38x256), apter BatchNorm, why the dimension is 38x38x512? Thank you.
lzx1413 commented 6 years ago
  1. we use bilinear interp to expand the feature size to 38*38.
  2. There we add a convolution to reduce the dimension to 512.
TrungHieu-Le commented 6 years ago

I understood, Thank you!