shamangary/SSR-Net

Why stage1 (layer4) has no pooling layer?

Pirate-Pianist opened this issue · 3 comments

Excuse me. I read your code and I didn't see any pooling layer(AvgPooling or MaxPooling) in Stage1(code: layer4). But it does actually exist in Stage3(code: layer1) and Stage2(code: layer2).

Why is this difference? Thank you.

Is this because the deeper layer has more detail information that may be blured by pooling layer?

Hello. I was trying to make the structure more consistent and make three stages have similar output size. In our new work FSA-Net, I further make three stages have the exact same size (8x8) so they can share the same mapping function. As for the performance, I have not tested different choices. Feel free to try more combinations.

Thanks a lot~