Skip to content

Commit 50d6aab

Browse files
committed
Add convit to non-std filters as vit_
1 parent 5db1eb6 commit 50d6aab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
torch._C._jit_set_profiling_mode(False)
1616

1717
# transformer models don't support many of the spatial / feature based model functionalities
18-
NON_STD_FILTERS = ['vit_*', 'tnt_*', 'pit_*', 'swin_*', 'coat_*', 'cait_*', '*mixer_*', 'gmlp_*', 'resmlp_*']
18+
NON_STD_FILTERS = ['vit_*', 'tnt_*', 'convit_*', 'pit_*', 'swin_*', 'coat_*', 'cait_*', '*mixer_*', 'gmlp_*', 'resmlp_*']
1919
NUM_NON_STD = len(NON_STD_FILTERS)
2020

2121
# exclude models that cause specific test failures
@@ -24,7 +24,7 @@
2424
EXCLUDE_FILTERS = [
2525
'*efficientnet_l2*', '*resnext101_32x48d', '*in21k', '*152x4_bitm', '*101x3_bitm',
2626
'*nfnet_f3*', '*nfnet_f4*', '*nfnet_f5*', '*nfnet_f6*', '*nfnet_f7*',
27-
'*resnetrs350*', '*resnetrs420*', 'convit_base'] + NON_STD_FILTERS
27+
'*resnetrs350*', '*resnetrs420*'] + NON_STD_FILTERS
2828
else:
2929
EXCLUDE_FILTERS = NON_STD_FILTERS
3030

0 commit comments

Comments
 (0)