Skip to content

Commit

Permalink
Skip effnetb0 with torch 2.1 due to regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuseppe5 committed Nov 17, 2023
1 parent 30df49d commit 68a6b60
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/brevitas_end_to_end/test_torchvision_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ def torchvision_model(model_name, quantize_fn):
if torch_version < version.parse('1.11.0') and model_name == 'vit_b_32':
return None

# Due to a regression in torchvision, we cannot load pretrained weights for effnet_b0
# https://github.com/pytorch/vision/issues/7744
if torch_version == version.parse('2.1.0') and model_name == 'efficientnet_b0':
return None

# Deeplab and fcn are in a different module, and they have a dict as output which is not suited for torchscript
if model_name in ('deeplabv3_resnet50', 'fcn_resnet50'):
model_fn = getattr(modelzoo.segmentation, model_name)
Expand Down

0 comments on commit 68a6b60

Please sign in to comment.