Skip to content

Commit 4fbc32d

Browse files
committed
Fix crop_pct for cait models.
1 parent 715519a commit 4fbc32d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timm/models/cait.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _cfg(url='', **kwargs):
2626
return {
2727
'url': url,
2828
'num_classes': 1000, 'input_size': (3, 384, 384), 'pool_size': None,
29-
'crop_pct': .9, 'interpolation': 'bicubic', 'fixed_input_size': True,
29+
'crop_pct': 1.0, 'interpolation': 'bicubic', 'fixed_input_size': True,
3030
'mean': IMAGENET_DEFAULT_MEAN, 'std': IMAGENET_DEFAULT_STD,
3131
'first_conv': 'patch_embed.proj', 'classifier': 'head',
3232
**kwargs

0 commit comments

Comments
 (0)