-
Notifications
You must be signed in to change notification settings - Fork 151
Confusion about the shape of offset #17
Comments
I think u are right, in official repository (https://github.com/msracver/Deformable-ConvNets), the number of channel in offset is 2N=29=18 for 3x3 kernel. |
Do you have fixed this bug ?? |
I have the same confusion here. For every point of output, there should be a offset grid of 2x9 points. So I think the number of channels should be |
I believe its a bug. The tensorflow implementation the author follows https://github.com/kastnerkyle/deform-conv also has the bug. |
hey @cdowen and @Seashell_9 , thanks for looking into this, I am not
working on this at the moment. If you find a potential bug, could you
please try to submit a PR to fix it?
…On Mon 1 Apr 2019 at 14:45, cdowen ***@***.***> wrote:
I believe its a bug. The tensorflow implementation the author follows[
https://github.com/kastnerkyle/deform-conv](https://github.com/kastnerkyle/deform-conv)
also have the bug.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#17 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAdNy6nnHVmxeEWv5yiUxyUiACZ174Ffks5vcf9xgaJpZM4W4Yqy>
.
|
I don't know if my understanding is correct... The kernel offsets should be different for each output pixel, thus it is impossible to generate a deformed feature map and apply convolution on it later. Rather, there should be different kernel offset for different output pixels. |
Instead of learning the offsets on the kernels, this code implements the deformable convolution by learning the offsets on the feature map. For example, by using x = self.offset12(x), we can get a feature map augmented with offsets. Then by using the self.conv12(x) (here self.conv12 has 3x3 kernel), the convolutional operation is implemented on the 3x3 neighbors and each neighbor has already be augmented with the offset.
|
Hello,
I am confused about the shape of offset.
The paper mentions:
"The grid R defines the receptive field size and dilation. For example,R = {(−1,−1),(−1,0),...,(0,1),(1,1)}.
In deformable convolution, the regular grid R is aug- mented with offsets {∆pn |n = 1, ..., N }, where N = |R|.
The output offset fields have the same spatial resolution with the input feature map. The channel dimension 2N corresponds to N 2D offsets."
So, I think the shape of offset field would be [29, H, W] if 3x3 kernel is used.
While in your implementation, the shape of offset seems to be [batch_size, 2n_channels, H, W]?
The text was updated successfully, but these errors were encountered: