Skip to content

Commit ba05f59

Browse files
committed
Fix variable conv kernel size in mask head
1 parent 254077b commit ba05f59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mmdet/models/mask_heads/fcn_mask_head.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self,
4949
ConvModule(
5050
in_channels,
5151
self.conv_out_channels,
52-
3,
52+
self.conv_kernel_size,
5353
padding=padding,
5454
normalize=normalize,
5555
bias=self.with_bias))

0 commit comments

Comments
 (0)