Deformable-ConvNets-caffe
Deformable-ConvNets-caffe copied to clipboard
What's the use of deformable_group?
Dear @unsky ,
May I know the reason why you introduce deformable_group
parameter? How does it affect the performance? Should deformable_group
be equal to group
?
Thanks! Kun
@wk910930 @unsky I have the same question. Could you help me? Thanks
Unfortunately, I didn't get the answer from the author yet. I guess deformable_group
allows for more possibilities. When deformable_group
is set to 1, the same predicted offset will be applied to all the 3 x 3
filter inside a kernel volume. When deformable_group
is set to, say 4, the filters will be divided into 4 groups and each group has its own offset to apply. This operation may produce better results (because of varied offsets).
Unfortunately, I didn't get the answer from the author yet. I guess
deformable_group
allows for more possibilities. Whendeformable_group
is set to 1, the same predicted offset will be applied to all the3 x 3
filter inside a kernel volume. Whendeformable_group
is set to, say 4, the filters will be divided into 4 groups and each group has its own offset to apply. This operation may produce better results (because of varied offsets).
@wk910930 Thank you for your kind help.