YOLOV5 | AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘ 问题解决 亲测有效

报错:AttributeError: ‘Upsample’ object has no attribute ‘recompute_scale_factor’
如图:
YOLOV5 | AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘ 问题解决 亲测有效_第1张图片

解决方法

1.点击报错行该路径,进入编辑页
YOLOV5 | AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘ 问题解决 亲测有效_第2张图片

2.将原代码(153-154行)修改为如下所示(155行):
YOLOV5 | AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘ 问题解决 亲测有效_第3张图片
即:

return F.interpolate(input, self.size, self.scale_factor, self.mode, self.align_corners)

问题解决
保存后再次运行detect.py,即可:
YOLOV5 | AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘ 问题解决 亲测有效_第4张图片

原文链接:https://blog.csdn.net/weixin_43401024/article/details/124428432

你可能感兴趣的:(YOLO)