WideResNet-pytorch
WideResNet-pytorch copied to clipboard
AvgPool2d different from the original
@xternalz I think your avgpool https://github.com/xternalz/WideResNet-pytorch/blob/master/wideresnet.py#L81 and the original avgpool https://github.com/szagoruyko/wide-residual-networks/blob/master/pytorch/resnet.py#L56 use different strides (yours=kernelsize=8, original=1).
This should be closed as both pooling are the same now.
@xternalz this issue should be closed now, right ?
This is not an issue. Both implementations have block_width=8, stride=1, padding=0
. This is because the defaults for stride and padding are respectively 1 and 0.