Skip to content

Commit

Permalink
Workaround for osmr/imgclsmob#103
Browse files Browse the repository at this point in the history
  • Loading branch information
lrzpellegrini committed Nov 8, 2022
1 parent e6bcd94 commit c6997af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ def test_densenet(self):

def test_get_model(self):
# Check general wrapper and whether downloading pretrained model works
model = get_model("simplepose_resnet18_coco", pretrained=True)
model = get_model("resnet10", pretrained=True)
self.assertIsInstance(
model, pytorchcv.models.simplepose_coco.SimplePose
model, pytorchcv.models.resnet.ResNet
)


Expand Down

0 comments on commit c6997af

Please sign in to comment.