-
Notifications
You must be signed in to change notification settings - Fork 44
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
对于代码有一些疑惑 #15
Comments
这段代码的目的是降低网络的参数量,即当在三维卷积的空域进行变形,只需要生成通道维度为2N的offset(其中N为卷积核的尺寸)。然而,在可变形三维卷积的底层C和cuda代码中,输入的offset的通道维数需要为3N。因此,需要将通道维度为2N的offset补零成通道维度为3N,再进行运算。 |
谢谢您的答复,请问您这边的dcn的底层C代码是在DCNv2的基础上改动的吗? |
是的,代码是基于[DCNv2]进行改进的。 |
好的 谢谢您的答复 |
您好,请问以下代码段是什么意思呢?它的作用是什么?
D3Dnet/code/dcn/modules/deform_conv.py
Lines 150 to 167 in f3ca248
The text was updated successfully, but these errors were encountered: