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

can just add squeeze_abode _layer in residual connection?

Open tanjia123456 opened this issue 2 years ago • 1 comments

So if I just want to put a layer in the residuum connection, squeeze_abode _layer ok? ` if residual : if a.shape[-1] != b.shape[-1]: a = squeeze_abode _layer (a,class_number,ratio,layer_number) b = b+a else: b = b+a

` I am not sure how to set ratio and layer_number parameters

tanjia123456 avatar Sep 08 '21 13:09 tanjia123456

by the way, class_number=36 a.shape=(1,10242,512) b.shape=(1,10242,36)

tanjia123456 avatar Sep 08 '21 13:09 tanjia123456