mirror of
https://github.com/open-mmlab/mmsegmentation.git
synced 2025-06-03 22:03:48 +08:00
Update mmseg/models/decode_heads/sep_fcn_head.py
Co-authored-by: Jerry Jiarui XU <xvjiarui0826@gmail.com>
This commit is contained in:
parent
95d1a8d8d7
commit
568106c2e2
@ -30,8 +30,8 @@ class DepthwiseSeparableFCNHead(FCNHead):
|
||||
self.convs[0] = DepthwiseSeparableConvModule(
|
||||
self.in_channels,
|
||||
self.channels,
|
||||
kernel_size=3,
|
||||
padding=1,
|
||||
kernel_size=self.kernel_size,
|
||||
padding=self.kernel_size//2,
|
||||
norm_cfg=self.norm_cfg)
|
||||
for i in range(1, self.num_convs):
|
||||
self.convs[i] = DepthwiseSeparableConvModule(
|
||||
|
Loading…
x
Reference in New Issue
Block a user