swoook / ddrnet

Cloned from chenjun2hao/DDRNet (https://github.com/chenjun2hao/DDRNet.pytorch).
Other
1 stars 0 forks source link

Modify the architecture of DAPPM considering the spatial size of the feature maps from generated by DAPPM #7

Closed swoook closed 3 years ago

swoook commented 3 years ago

Is your feature request related to a problem? Please describe.

  1. enlarge effective receptive fields
  2. fuse multi-scale context

image

swoook commented 3 years ago

fig-04 Fig. 4. The overview of DDRNets on semantic segmentation. “RB” denotes sequential residual basic blocks. “RBB” denotes single residual bottleneck block. “DAPPM” denotes the Deep Aggregation Pyramid Pooling Module. “Seg. Head” denotes the segmentation head. Black solid lines denote information paths with data processing (including upsampling and downsampling) and black dashed lines denote information path without data processing. “sum” denotes pointwise concatenation. Dashed boxes denote the components which are disregarded in the inference stage.

        self.layer5 =  self._make_layer(Bottleneck, planes * 8, planes * 8, 1, stride=2)
        self.layer5 =  self._make_layer(Bottleneck, planes * 8, planes * 8, 1, stride=1)
swoook commented 3 years ago
swoook commented 3 years ago