Update mmseg/models/decode_heads/sep_fcn_head.py

Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com>
This commit is contained in:
John Zhu 2020-08-12 15:30:15 +08:00 committed by GitHub
parent 1988f09cdd
commit 95d1a8d8d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,8 +37,8 @@ class DepthwiseSeparableFCNHead(FCNHead):
self.convs[i] = DepthwiseSeparableConvModule(
self.channels,
self.channels,
kernel_size=3,
padding=1,
kernel_size=self.kernel_size,
padding=self.kernel_size//2,
norm_cfg=self.norm_cfg)
if self.concat_input: