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
In the Dilated Resnet used for segmentation tasks, the m.dilation and m.padding of the first 3x3 convolution in layer3 and layer4 are set as half of the expected dilation ( dilation = dilation // 2).
But in the other implementations, the m.dilation and m.padding of the 3x3conv in corresponding position are set as m.dilation = dilation. Which one is as same as the original design in the Deeplab?
The text was updated successfully, but these errors were encountered:
torchcv/model/backbone/resnet/resnet_backbone.py
Lines 78 to 82 in e306e0b
In the Dilated Resnet used for segmentation tasks, the
m.dilation
andm.padding
of the first 3x3 convolution inlayer3
andlayer4
are set as half of the expected dilation (dilation = dilation // 2
).But in the other implementations, the
m.dilation
andm.padding
of the 3x3conv in corresponding position are set asm.dilation = dilation
. Which one is as same as the original design in the Deeplab?The text was updated successfully, but these errors were encountered: