From 1d81cd55f532aced08702ad609e3d58844552784 Mon Sep 17 00:00:00 2001 From: Kai Han Date: Tue, 6 Dec 2022 16:15:02 +0800 Subject: [PATCH] fix error of min input size --- timm/models/vision_gnn.py | 1 + 1 file changed, 1 insertion(+) diff --git a/timm/models/vision_gnn.py b/timm/models/vision_gnn.py index 4fe4a8f6..e49351e6 100755 --- a/timm/models/vision_gnn.py +++ b/timm/models/vision_gnn.py @@ -22,6 +22,7 @@ def _cfg(url='', **kwargs): 'crop_pct': .9, 'interpolation': 'bicubic', 'mean': IMAGENET_DEFAULT_MEAN, 'std': IMAGENET_DEFAULT_STD, 'first_conv': 'patch_embed.proj', 'classifier': 'head', + 'min_input_size': (3, 224, 224), **kwargs }