Anymake / DRN_CVPR2020

Code and Dataset for CVPR2020 "Dynamic Refinement Network for Oriented and Densely Packed Object Detection"
GNU General Public License v2.0
328 stars 43 forks source link

What is the specific structure of Gc #20

Open husthkk opened 3 years ago

husthkk commented 3 years ago

In the paper,you said that the Gc represents the dynamic filter generator and Kc are the learned example-wise kernel weights. So can you explain the specific structure of Gc? Thank you.

Panxjia commented 3 years ago

Just one 3x3 Conv layer. The output channel is determined by the size of the kernel you want. To reduce the amount of parameters, we share the kernel weight among channels. So the output channel is set 9 for 3x3 kernel. For position-wise convolution operation, we recommend referring to the code of CARAFE.