wide-resnet.pytorch icon indicating copy to clipboard operation
wide-resnet.pytorch copied to clipboard

Best CIFAR-10, CIFAR-100 results with wide-residual networks using PyTorch

Results 13 wide-resnet.pytorch issues
Sort by recently updated
recently updated
newest added

I git cloned the code and ran it with the command suggested by readme. However, the Top1 acc stopped at 76% after 160 epochs. I've seen the learning curve in...

The ResNets from the authors on the original paper change the sizes when applied to CIFAR10. It just don't match the dimensions you specified here: ResNets for CIFAR10 are 2+6n...

For dropout: I believe the dropout layer should come after the ReLU layer rather than Conv2d For shortcut: It seems a Conv2d layer is added when the stride is not...