ECANet
ECANet copied to clipboard
Code for ECA-Net: Efficient Channel Attention for Deep Convolutional Neural Networks
Hi, I was wondering if this could be applied to models dealing with 3D inputs? Would the codes written below be correct? I'm not sure why the codes have squeezed...
Hello!Can I directly use the pre training parameters of resnet50 instead of the pre training parameters you provide?
Dear Authors, Thank you for sharing a code and weights for your work, but frankly I am struggling to reproduce your results that are reported in the paper or in...
I add the lines: ``` def eca_resnet50(k_size=[3, 3, 3, 3], num_classes=1000, pretrained=True): """Constructs a ResNet-50 model. Args: k_size: Adaptive selection of kernel size num_classes:The classes of classification pretrained (bool): If...
Can you provide the Tensorflow version of this code. Thank you
Hi, I hope you are well. Great work! I assume that you used the mmdetection framework for the detection task. What training schedule did you use 1x or 2x? And...
In you pre_trained Resnet50 model, you set k = 3,5,5,7. But i think that k = 3.5.5.5. Am I mistake?
@BangguWu Hi, 想问下为什么 mobilenetv2的k_size是设置为 if c < 96: ksize = 1 else: ksize = 3?
cleanup