You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have some questions about the mask usage in your convolution operation. I'm wondering what is the meaning to assign conv_module.__mask__ with mask. I checked that the conv_module(x) function does not consider the conv_module.__mask__ property when operating.
Hi,
Thanks for your great work!
I have some questions about the mask usage in your convolution operation. I'm wondering what is the meaning to assign
conv_module.__mask__
withmask
. I checked that theconv_module(x)
function does not consider theconv_module.__mask__
property when operating.dynconv/classification/dynconv/layers.py
Lines 14 to 18 in 19e4c58
Therefore, I can't get how the masks are applied in network forward propagation, such as the basicblock in
dynconv/classification/models/resnet_util.py
Lines 66 to 70 in 19e4c58
It seems that only the mask in
dynconv.apply_mask(x, mask)
works.The text was updated successfully, but these errors were encountered: