"git@developer.sourcefind.cn:modelzoo/resnet50_tensorflow.git" did not exist on "7fc086c3ae9c69320c44ca773a8ce4ab9a683b08"
Commit ba05f59d authored by ThangVu's avatar ThangVu
Browse files

Fix variable conv kernel size in mask head

parent 254077be
...@@ -49,7 +49,7 @@ class FCNMaskHead(nn.Module): ...@@ -49,7 +49,7 @@ class FCNMaskHead(nn.Module):
ConvModule( ConvModule(
in_channels, in_channels,
self.conv_out_channels, self.conv_out_channels,
3, self.conv_kernel_size,
padding=padding, padding=padding,
normalize=normalize, normalize=normalize,
bias=self.with_bias)) bias=self.with_bias))
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment