在运行yolo5的v5.0版本detect.py时遇到的一些错误

        跟着小土堆的视频教学自己遇到的一些问题。

        出现错误的原因:由于yolov5目前最新版本为v6.1,但我跑的是5.0版本,则运行detect.py时自动从github上下载的训练好的模型为最新版本v6.1。从而导致运行环境和模型版本不一致,从而报错。

一、AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from ‘H:\\yolov5-5.0\\models\\

二、yolov5 ERROR: AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘

三、yolov5中The size of tensor a (80) must match the size of tensor b (56) at non-singleton dimension 3

四、UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at  C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\TensorShape.cpp:2228.)  return _VF.meshgrid(tensors, **kwargs)  # type: ignore[attr-defined]

一、AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from ‘H:\\yolov5-5.0\\models\\

解决方案:在新版本的models/common.py里面去找到这个SPPF的类,把它拷过来到你的models/common.py里面,这样你的代码就也有这个类了,还要引入一个warnings包就行了!还要引入一个warnings包就行了!

有的同学找不到SPPF这个类,那我现在直接粘贴在这里,你们只需要复制到你们的common.py里面即可,记得把import warnings放在上面去:

import warnings
class SPPF(nn.Module):
    # Spatial Pyramid Pooling - Fast (SPPF) layer for YOLOv5 by Glenn Jocher
    def __init__(self, c1, c2, k=5):  # equivalent to SPP(k=(5, 9, 13))
        super().__init__()
        c_ = c1 // 2  # hidden channels
        self.cv1 = Conv(c1, c_, 1, 1)
        self.cv2 = Conv(c_ * 4, c2, 1, 1)
        self.m = nn.MaxPool2d(kernel_size=k, stride=1, padding=k // 2)
 
    def forward(self, x):
        x = self.cv1(x)
        with warnings.catch_warnings():
            warnings.simplefilter('ignore')  # suppress torch 1.9.0 max_pool2d() warning
            y1 = self.m(x)
            y2 = self.m(y1)
            return self.cv2(torch.cat([x, y1, y2, self.m(y2)], 1))

二、yolov5 ERROR: AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘

解决方案:

找到\torch\nn\modules\upsampling.py下的文件

  • import torch.nn.modules.upsampling,然后摁住ctrl+鼠标左键就会跳转到该文件下,
  • 或者摁提示报错的地方也可以跳转到该文件下

之后将如下图所示154行注释掉就行了

三、yolov5中The size of tensor a (80) must match the size of tensor b (56) at non-singleton dimension 3

下载:
https://github.com/ultralytics/yolov5/releases/download/v5.0/yolov5s.pt

替换默认下载的yolov5s.pt,因为默认下载的是V6.1的

替换后,在运行 detect.py就OK了

四、UserWarning: torch.meshgrid: in an upcoming release, it will be required to pass the indexing argument. (Triggered internally at  C:\cb\pytorch_1000000000000\work\aten\src\ATen\native\TensorShape.cpp:2228.)
  return _VF.meshgrid(tensors, **kwargs)  # type: ignore[attr-defined]

 找到functional.py的第568行,

  • 将 return _VF.meshgrid(tensors, **kwargs)
  • 改为 return _VF.meshgrid(tensors, **kwargs,indexing='ij')

 

  • 63
    点赞
  • 193
    收藏
    觉得还不错? 一键收藏
  • 10
    评论
这个错误是由于张量a和张量b的尺寸不匹配导致的。根据引用和引用的信息,张量a的尺寸为80,而张量b的尺寸为56。在维度3上,它们的尺寸必须匹配,即80和56必须相等。否则,就会触发这个错误。 解决这个问题的方法有多种,具体取决于你的代码和应用场景。引用提供了一种可能的解决方案,但没有提供具体的细节。你可以尝试以下几种方法来解决这个问题: 1. 检查你的代码中涉及到张量a和张量b的部分,确保它们的维度和尺寸是一致的。 2. 如果你使用的是预训练模型,确保输入数据的尺寸与模型期望的尺寸相匹配。 3. 如果你在自定义模型或网络中使用了这些张量,可以考虑调整模型的结构或处理方法,以确保张量的尺寸一致。 总之,你需要仔细检查你的代码,并确保所有涉及到张量a和张量b的操作都具有一致的尺寸。这样就可以避免这个错误的发生。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [yolov5-5.0编译存在问题](https://blog.csdn.net/chlyrx/article/details/125693973)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] - *3* [RuntimeError: The size of tensor a (80) must match the size of tensor b (56) at non-singleton](https://blog.csdn.net/weixin_44363167/article/details/123618125)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值