Pyramid-Attention-Networks-pytorch icon indicating copy to clipboard operation
Pyramid-Attention-Networks-pytorch copied to clipboard

上采样这儿是不是核大小应该为3?

Open ReckonerInheritor opened this issue 4 years ago • 0 comments

self.conv_upsample_2 = nn.ConvTranspose2d(channels_mid, channels_mid, kernel_size=4, stride=2, padding=1, bias=False) 改为: self.conv_upsample_2 = nn.ConvTranspose2d(channels_mid, channels_mid, kernel_size=3, stride=2, padding=1, bias=False) 这样修改正确吗?

ReckonerInheritor avatar Mar 27 '20 15:03 ReckonerInheritor