Hello, thanks for sharing your implementation. I did not understand why do you add 1 in the return of SCSE module
|
return torch.add(chn_se, 1, spa_se) |
I think it should be
Basiclly, the ScSE did as follows: (1) convolution 1x1 x C for channel side and (2) convolution 1x1x1 for spatial size. Then add (1) and (2)
Hello, thanks for sharing your implementation. I did not understand why do you add 1 in the return of SCSE module
LightNet/modules/misc.py
Line 110 in 04af225
I think it should be
Basiclly, the ScSE did as follows: (1) convolution 1x1 x C for channel side and (2) convolution 1x1x1 for spatial size. Then add (1) and (2)