Skip to content

Commit

Permalink
Larger min input size needed
Browse files Browse the repository at this point in the history
  • Loading branch information
rwightman committed Aug 17, 2024
1 parent de3a91a commit 691bb54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion timm/models/hieradet_sam2.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def _cfg(url='', **kwargs):
return {
'url': url,
'num_classes': 0, 'input_size': (3, 896, 896), 'pool_size': (28, 28),
'crop_pct': 1.0, 'interpolation': 'bicubic', 'min_input_size': (3, 128, 128),
'crop_pct': 1.0, 'interpolation': 'bicubic', 'min_input_size': (3, 224, 224),
'mean': IMAGENET_DEFAULT_MEAN, 'std': IMAGENET_DEFAULT_STD,
'first_conv': 'patch_embed.proj', 'classifier': 'head.fc',
**kwargs
Expand Down Expand Up @@ -545,6 +545,7 @@ def _cfg(url='', **kwargs):
"sam2_hiera_large": _cfg(
hf_hub_id='facebook/sam2-hiera-large',
hf_hub_filename='sam2_hiera_large.pt',
min_input_size=(3, 256, 256),
input_size=(3, 1024, 1024), pool_size=(32, 32),
),
})
Expand Down

0 comments on commit 691bb54

Please sign in to comment.