Skip to content

Commit 949b7a8

Browse files
committed
Fix typo in Densenet default resolutions
1 parent da52fcf commit 949b7a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

timm/models/densenet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
def _cfg(url=''):
2121
return {
22-
'url': url, 'num_classes': 1000, 'input_size': (3, 224, 244), 'pool_size': (7, 7),
22+
'url': url, 'num_classes': 1000, 'input_size': (3, 224, 224), 'pool_size': (7, 7),
2323
'crop_pct': 0.875, 'interpolation': 'bicubic',
2424
'mean': IMAGENET_DEFAULT_MEAN, 'std': IMAGENET_DEFAULT_STD,
2525
'first_conv': 'features.conv0', 'classifier': 'classifier',

0 commit comments

Comments
 (0)