Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def _create_fx_model(model, train=False):
return fx_model


EXCLUDE_FX_FILTERS = ['vit_gi*']
EXCLUDE_FX_FILTERS = ['vit_gi*', '*flash_intern_image*']
# not enough memory to run fx on more models than other tests
if 'GITHUB_ACTIONS' in os.environ:
EXCLUDE_FX_FILTERS += [
Expand Down
1 change: 1 addition & 0 deletions timm/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from .efficientvit_msra import *
from .eva import *
from .fastvit import *
from .flash_intern_image import *
from .focalnet import *
from .gcvit import *
from .ghostnet import *
Expand Down
Loading