pytorch-cifar10 icon indicating copy to clipboard operation
pytorch-cifar10 copied to clipboard

resnet implementation error

Open dzwallkilled opened this issue 5 years ago • 0 comments

In the resnet.py, the following codes should be revised.

if self.downsample is not None: residual = self.downsample(x)

it should be

if self.downsample is not None: residual = self.downsample(residual)

dzwallkilled avatar Sep 05 '19 06:09 dzwallkilled