Skip to content

Commit fd92ba0

Browse files
committed
Filter large vit models from torchscript tests
1 parent 318360c commit fd92ba0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ def test_model_features_pretrained(model_name, batch_size):
178178

179179
EXCLUDE_JIT_FILTERS = [
180180
'*iabn*', 'tresnet*', # models using inplace abn unlikely to ever be scriptable
181-
'dla*', 'hrnet*', 'ghostnet*', # hopefully fix at some point
181+
'dla*', 'hrnet*', 'ghostnet*', # hopefully fix at some point
182+
'vit_large_*', 'vit_huge_*',
182183
]
183184

184185

0 commit comments

Comments
 (0)