Update metaformers.py

This commit is contained in:
Fredo Guan 2023-01-31 16:45:38 -08:00
parent 01d02fb40f
commit 8f70650295

View File

@ -630,7 +630,7 @@ def _cfg(url='', **kwargs):
'num_classes': 1000, 'input_size': (3, 224, 224), 'pool_size': (7, 7),
'crop_pct': 1.0, 'interpolation': 'bicubic',
'mean': IMAGENET_DEFAULT_MEAN, 'std': IMAGENET_DEFAULT_STD,
'classifier': 'head.fc', 'first_conv': 'patch_embed.conv',
'classifier': 'head.fc', 'first_conv': 'stem.conv',
**kwargs
}