From 4d13db538f6736473b21b52890b6df6dfdbaff7c Mon Sep 17 00:00:00 2001 From: Ross Wightman Date: Thu, 21 May 2020 19:13:41 -0700 Subject: [PATCH] Add x48d ResNext101s to test exclude for ubuntu --- tests/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_models.py b/tests/test_models.py index 5c79dd2e..02cb61bb 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -9,7 +9,7 @@ from timm import list_models, create_model if 'GITHUB_ACTIONS' in os.environ and 'Linux' in platform.system(): # GitHub Linux runner is slower and hits memory limits sooner than MacOS, exclude bigger models - EXCLUDE_FILTERS = ['*efficientnet_l2*'] + EXCLUDE_FILTERS = ['*efficientnet_l2*', '*resnext101_32x48d'] else: EXCLUDE_FILTERS = [] MAX_FWD_SIZE = 384