imankgoyal / NonDeepNetworks

Official Code for "Non-deep Networks"
BSD 3-Clause "New" or "Revised" License
586 stars 42 forks source link

Question about SSE module #6

Closed Tsianmy closed 3 years ago

Tsianmy commented 3 years ago

Hi. Figure 2b shows that there's one 1x1conv in a branch of SSE, how to match the channel of output by 1x1conv with the channel of input after shortcut? If I set the output channel of 1x1conv the same as input, the channels of the outputs by RepVGG block and SSE will not match.

imankgoyal commented 3 years ago

Hello,

Thanks for your interest in our work. The ParNet block in figure 2b has the same number of channels in input and output. For dowsampling and fusion, the block diagrams are in the appendix.

Thanks!

Tsianmy commented 3 years ago

I see. Thanks for your response.