Skip to content

Commit 306c86b

Browse files
committed
Merge branch 'convit' of https://github.com/amaarora/pytorch-image-models into amaarora-convit
2 parents 6e04da0 + 50d6aab commit 306c86b

File tree

3 files changed

+447
-1
lines changed

3 files changed

+447
-1
lines changed

tests/test_models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
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_*', 'twins_*']
18+
NON_STD_FILTERS = [
19+
'vit_*', 'tnt_*', 'pit_*', 'swin_*', 'coat_*', 'cait_*', '*mixer_*', 'gmlp_*', 'resmlp_*', 'twins_*', 'convit_*']
1920
NUM_NON_STD = len(NON_STD_FILTERS)
2021

2122
# exclude models that cause specific test failures

timm/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from .byobnet import *
33
from .cait import *
44
from .coat import *
5+
from .convit import *
56
from .cspnet import *
67
from .densenet import *
78
from .dla import *

0 commit comments

Comments
 (0)