Fix crop_pct for cait models.

pull/636/head
Ross Wightman 2021-05-11 10:50:15 -07:00
parent 715519a5ef
commit 4fbc32d3d0
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ def _cfg(url='', **kwargs):
return {
'url': url,
'num_classes': 1000, 'input_size': (3, 384, 384), 'pool_size': None,
'crop_pct': .9, 'interpolation': 'bicubic', 'fixed_input_size': True,
'crop_pct': 1.0, 'interpolation': 'bicubic', 'fixed_input_size': True,
'mean': IMAGENET_DEFAULT_MEAN, 'std': IMAGENET_DEFAULT_STD,
'first_conv': 'patch_embed.proj', 'classifier': 'head',
**kwargs