当前位置:网站首页>运行yolo v5-5.0版本报错找不到SPPF错误,进行解决
运行yolo v5-5.0版本报错找不到SPPF错误,进行解决
2022-07-07 15:40:00 【AI炮灰】
首先找到yolov5下面的models文件夹下面的common.py文件,如下所示:
找到该文件夹下面的SPP类,
然后在该类的上面添加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))
可以直接将上面代码复制上去即可。然后该错误就进行了解决。
边栏推荐
- Is AI more fair than people in the distribution of wealth? Research on multiplayer game from deepmind
- 数字化转型的主要工作
- 使用 xml资源文件定义菜单
- MySQL usage notes 1
- The computer cannot add a domain, and the Ping domain name is displayed as the public IP. What is the problem? How to solve it?
- [Huang ah code] Why do I suggest you choose go instead of PHP?
- 【OKR目标管理】价值分析
- 本周小贴士#140:常量:安全习语
- 【解惑】App处于前台,Activity就不会被回收了?
- 【网络攻防原理与技术】第5章:拒绝服务攻击
猜你喜欢
Sator推出Web3遊戲“Satorspace” ,並上線Huobi
麒麟信安云平台全新升级!
A tour of grpc:03 - proto serialization / deserialization
PLC: automatically correct the data set noise, wash the data set | ICLR 2021 spotlight
Functions and usage of imageswitch
【TPM2.0原理及应用指南】 5、7、8章
Alertdialog create dialog
专精特新软件开发类企业实力指数发布,麒麟信安荣誉登榜
Dateticket and timeticket, functions and usage of date and time selectors
DatePickerDialog和trimepickerDialog
随机推荐
赋能智慧电力建设 | 麒麟信安高可用集群管理系统,保障用户关键业务连续性
【饭谈】那些看似为公司着想,实际却很自私的故事 (一:造轮子)
DNS series (I): why does the updated DNS record not take effect?
Devops' operational and commercial benefits Guide
How to implement safety practice in software development stage
Functions and usage of viewswitch
如何在软件研发阶段落地安全实践
请将磁盘插入“U盘(H)“的情况&无法访问 磁盘结构损坏且无法读取
Functions and usage of ratingbar
第3章业务功能开发(用户访问项目)
百度地图自定义样式向右拖拽导致全球地图经度0度无法正常显示
[fan Tan] those stories that seem to be thinking of the company but are actually very selfish (I: building wheels)
麒麟信安携异构融合云金融信创解决方案亮相第十五届湖南地区金融科技交流会
网络攻防复习篇
With the latest Alibaba P7 technology system, mom doesn't have to worry about me looking for a job anymore
The mail server is listed in the blacklist. How to unblock it quickly?
Lex & yacc of Pisa proxy SQL parsing
Sator推出Web3遊戲“Satorspace” ,並上線Huobi
A tour of grpc:03 - proto serialization / deserialization
L1-028 判断素数(Lua)