Skip to content

Commit

Permalink
Merge pull request #1894 from seefun/master
Browse files Browse the repository at this point in the history
add two different EfficientViT models
  • Loading branch information
rwightman authored Aug 19, 2023
2 parents 24fc720 + 7d7589e commit b801156
Show file tree
Hide file tree
Showing 4 changed files with 1,332 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
'vit_*', 'tnt_*', 'pit_*', 'coat_*', 'cait_*', '*mixer_*', 'gmlp_*', 'resmlp_*', 'twins_*',
'convit_*', 'levit*', 'visformer*', 'deit*', 'jx_nest_*', 'nest_*', 'xcit_*', 'crossvit_*', 'beit*',
'poolformer_*', 'volo_*', 'sequencer2d_*', 'pvt_v2*', 'mvitv2*', 'gcvit*', 'efficientformer*',
'eva_*', 'flexivit*', 'eva02*', 'samvit_*'
'eva_*', 'flexivit*', 'eva02*', 'samvit_*', 'efficientvit_m*'
]
NUM_NON_STD = len(NON_STD_FILTERS)

Expand Down
2 changes: 2 additions & 0 deletions timm/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
from .efficientformer import *
from .efficientformer_v2 import *
from .efficientnet import *
from .efficientvit_mit import *
from .efficientvit_msra import *
from .eva import *
from .focalnet import *
from .gcvit import *
Expand Down
Loading

0 comments on commit b801156

Please sign in to comment.