返回顶部
首页 > 资讯 > 后端开发 > Python >运行YOLOv5出现报错找不到SPPF错误,进行解决AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from
  • 452
分享到

运行YOLOv5出现报错找不到SPPF错误,进行解决AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from

python深度学习java 2023-10-08 07:10:47 452人浏览 薄情痞子

Python 官方文档:入门教程 => 点击学习

摘要

运行YOLOv5时报错:AttributeError: Can't get attribute 'SPPF' on 解决办法如下:首先找到YOLOv5下的这个文件打开  打开文件往下翻找到class SPP这一行,我的是在166行,在这

运行YOLOv5时报错:AttributeError: Can't get attribute 'SPPF' on

解决办法如下:首先找到YOLOv5下的这个文件打开

 打开文件往下翻找到class SPP这一行,我的是在166行,在这一行上面添加下面的程序添加class SPPF

class SPPF(nn.Module):    def __init__(self, c1, c2, k=5):        super().__init__()        c_ = c1 // 2        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')            y1 = self.m(x)            y2 = self.m(y1)            return self.cv2(torch.cat([x, y1, y2, self.m(y2)], 1))

如图所示:

 

再运行程序就不会报错啦。

来源地址:https://blog.csdn.net/m0_50004939/article/details/126739291

--结束END--

本文标题: 运行YOLOv5出现报错找不到SPPF错误,进行解决AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from

本文链接: https://lsjlt.com/news/425125.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作