轻量化骨干系列(1)–shufflenetv3
参考论文:https://arxiv.org/pdf/1905.02244.pdf
shufflenetv1:https://arxiv.org/pdf/1704.04861.pdf
shufflenetv2:https://arxiv.org/pdf/1801.04381.pdf
yolov5改进流程:
1、在common.py中添加如下模块:
class SimAM(nn.Module):
def __init__(self, lamda=1e-5):
super().__init__