Skip to content

Commit

Permalink
Fix test_onnx.py
Browse files Browse the repository at this point in the history
A wrong model was used
  • Loading branch information
nzmora committed May 16, 2019
1 parent 2ef3eeb commit af5c721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_onnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@


@pytest.mark.parametrize('arch',
['resnet18', 'resnet20_cifar', 'alexnet', 'vgg19', 'resnext50_32x4d'])
['resnet18', 'resnet20_cifar', 'alexnet', 'vgg19', 'resnext101_32x4d'])
@pytest.mark.parametrize('add_softmax', [True, False])
def test_summary(arch, add_softmax):
dataset = 'cifar10' if arch.endswith('cifar') else 'imagenet'
Expand Down

0 comments on commit af5c721

Please sign in to comment.