sep_aspp_head源码
DepthwiseSeparableASPPHead继承了ASPPHead
多了两个属性c1_in_channels, c1_channels
(1)DepthwiseSeparableASPPModule继承了ASPPModule
(2)其中包含有DepthwiseSeparableConvModule这个模块,即深度可分离卷积(包含depthwise_conv 和 pointwise_conv)
depthwise_conv的输入输出通道相同的分组卷积,groups为分组(值为输入通道数),那么每一个通道对应一个只有一个通道的卷积核进行卷积,卷积核的个数为in_channels。之后就是pointwise_conv,就是普通的1×1卷积,降低通道数