DiverseBranchBlock
DiverseBranchBlock copied to clipboard
why padding == kernel_size // 2 is asserted?
https://github.com/DingXiaoH/DiverseBranchBlock/blob/be15be76a5556e04b2b44411a69994abcd1f25eb/diversebranchblock.py#L105 Why padding should be equal to kernel // 2? what if Conv2d(kernel_size=4, stride=2, padding=1)?
为了add的时候对齐特征图尺寸
Have you figured out why padding must be equal to kernel_size // 2?
Padding in transVI_multiscale need padding must be equal to kernel_size // 2.