OREPA_CVPR2022 icon indicating copy to clipboard operation
OREPA_CVPR2022 copied to clipboard

关于OREPA_LargeConvBase的疑问

Open wsy-yjys opened this issue 1 year ago • 0 comments

class OREPA_LargeConvBase(nn.Module):
    def __init__(self, in_channels, out_channels, kernel_size, stride, padding,  dilation=1, groups=1, deploy=False, nonlinear=None):
        ……
        internal_channels = out_channels

代码中为什么将3x3conv之间channel设置成与输出一致,而不是输出的倍数,进一步增加参数量,提升模型性能?

wsy-yjys avatar Jan 30 '24 05:01 wsy-yjys