Improved YOLOv5: MobileNEtv2, v3 articles **Must increase points | Innovative and practical | Unified lightweight backbone network, including FastNet, ShuffleNet, mobileNet, Ghostnet, etc.

Links to FasterNet, G-GhostRegnet

​ Lightweight MobileNETv2, v3

1. yolov5 combined with MobileNEtv2

1. Core code

# -------------------------------------------------------------------------
#mobileNetv2
class ConvBNReLU(nn.Sequential):  # 该函数主要做卷积 池化 ReLU6激活操作
    def __init__(</

Guess you like

Origin blog.csdn.net/qq_44224801/article/details/130744792