-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
about deformable conv visualize #10
Comments
@huxianxian I am afraid I have no clue on this problem since I have already tested the forward and gradient pass comparing to the original implementation. But still, I am curious about two questions concerning this problem:
|
Thanks, Yes ,I visualize the offset with the script from original implementation , and the offset is got from your other repo : https://github.com/Zardinality/TF_Deformable_Net . I have successfully run your code for TF_Deformable_Net on VOC dataset.I get the following results:
Then i try to make a visualize for deform conv with the trained model , I got the offsets with the following code:
The I visualize the offsets with the script from original implementation, res5a_offset = all_offsets[0] im = im[:, :, (2, 1, 0)] show_dconv_offset(im , [res5c_offset, res5b_offset, res5a_offset]) the function show_dconv_offset(im , [res5c_offset, res5b_offset, res5a_offset]) is the script from original implementation. but I can't get the correct results. |
|
Thanks for your amazing work. Have you ever tried to visualize the deformable convolution just like the results in the paper 'Deformable Convolutional Networks'? like this:
I made a try to visualize your deformable convolution code. But I get the following results:
Can you help me?
The text was updated successfully, but these errors were encountered: