Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce number of out filters in test_resnet_block_layer, testing
Browse files Browse the repository at this point in the history
dantreiman authored and justinxzhao committed Aug 24, 2022
1 parent 77ce9d4 commit bb816ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ludwig/modules/test_convolutional_modules.py
Original file line number Diff line number Diff line change
@@ -458,7 +458,7 @@ def test_resnet_bottleneck_block(
assert output_tensor.shape[1:] == resnet_block.output_shape


@pytest.mark.parametrize("img_height,img_width,first_in_channels,out_channels,num_blocks", [(224, 224, 3, 64, 3)])
@pytest.mark.parametrize("img_height,img_width,first_in_channels,out_channels,num_blocks", [(224, 224, 3, 32, 3)])
@pytest.mark.parametrize("is_bottleneck, block_fn", [(True, ResNetBottleneckBlock), (False, ResNetBlock)])
def test_resnet_block_layer(
img_height: int,

0 comments on commit bb816ce

Please sign in to comment.