How to find out on what dataset the petrained models provided from Timm are trained on?
pretrained_resnet_34 = timm.create_model('resnet34', pretrained=True)
It's trained on ImageNet1k
datasets. However, there are some models trained on the bigger dataset, Imagenet22k
. Most of time, this is indicated in the name of the model.