efficientnet-yolo3-pytorch
efficientnet-yolo3-pytorch copied to clipboard
这是一个efficientnet-yolo3-pytorch的源码,将yolov3的主干特征提取网络修改成了efficientnet
Bumps [torch](https://github.com/pytorch/pytorch) from 1.2.0 to 1.13.1. Release notes Sourced from torch's releases. PyTorch 1.13.1 Release, small bug fix release This release is meant to fix the following issues (regressions /...
Bumps [scipy](https://github.com/scipy/scipy) from 1.2.1 to 1.10.0. Release notes Sourced from scipy's releases. SciPy 1.10.0 Release Notes SciPy 1.10.0 is the culmination of 6 months of hard work. It contains many...
如何添加网络层
如何添加第四层网络特征层呢? 一直报下面的错误: self.last_layer3_conv = conv2d(out_filters[-3], out_filters[-4], 1) IndexError: list index out of range root@2f0cdf9ef68c:/home/zzg/yolo3-efficientnet# python3 train.py Traceback (most recent call last): File "train.py", line 271, in model = YoloBody(anchors_mask, num_classes,...
这段代码是用Efficientnet替换YOLO3主干网络的,有没有用EfficientnetV2替换主干网络的代码呢?我网上找了一些EfficientnetV2用于做分类的代码,但是替换进YOLO3主干网络不太会呀。