SENet-Tensorflow icon indicating copy to clipboard operation
SENet-Tensorflow copied to clipboard

se should be added after inception block, right?

Open dpcross opened this issue 7 years ago • 4 comments

hi, I think squeeze_excitation_layer should be added after inception block ,not inception_resnet block Am I right ?

dpcross avatar Jan 30 '18 07:01 dpcross

you mean Reduction A, B, C ?

taki0112 avatar Jan 30 '18 07:01 taki0112

@taki0112 not reduction a,b,c . I mean it should be like : x = squeeze_excatation_layer(x) x = x * 0.1 x = init + x should not be added after the inception_resnet_a ,b ,c I change the structure and it performance much better

dpcross avatar Jan 30 '18 07:01 dpcross

The SE block does not matter where you put it. In the case of keras code, he put it after the inception block you mentioned and put it after the reduction block.

taki0112 avatar Jan 30 '18 07:01 taki0112

Actually I am not quite sure whether it matters or not , but the resnet module show here https://github.com/hujie-frank/SENet/blob/master/figures/SE-ResNet-module.jpg . so I thought the module define like this might be better and it did work in my project.

dpcross avatar Jan 30 '18 08:01 dpcross