Is there pretrained CNN (e.g. ResNet) for CIFAR-10 or CIFAR-100?

Here is the link to repo that has pretrained ResNets for CIFAR10, and this models are lean-resnets discussed in original paper. If you directly apply ResNets from torchvision to train your own net, you’ll get something that is not in original paper, because torchvision’s nets are for ImageNet, not CIFAR10

I also searched for pretrained Pytorch models on CIFAR-10 but I could not find any repo that share weights so I made one:

19

6 Likes

Thanks for that question! It is really confusing first if one is new to ML and tries to find an explanation on which datasets pretrained models are fit on.