一步真实解决AttributeError:‘Upsample‘ object has no attribute‘recompute_scale_factor‘的问题
你是不是在Pycharm等编译器和Colab等服务器上运行yolov5的detect.py出现下面的这个问题
那么我们跟着错误去上面的提示信息找方法
可以发现是关于"Upsample“和 'recompute_scale_factor',相关的提示是在这里
紧接着 ,按着提示文件路径一步一步的打开usampling.py,找到第155行附近
这是发现在,154行有我们刚才提到的关键信息
然后把第154行还有153行最后的逗号","删掉,再保存一下子
最后的效果如下
或者你把刚才提到的哪一行加个注释,注释掉也是可以的。
def forward(self, input: Tensor) -> Tensor: return F.interpolate(input, self.size, self.scale_factor, self.mode, self.align_corners)
然后运行下detect.py,发现问题解决~
到此这篇关于一步真实解决AttributeError: ‘Upsample‘ object has no attribute ‘recompute_scale_factor‘的问题的文章就介绍到这了,更多相关Upsample object has no attribute内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
- 关于pycharm 切换 python3.9 报错 ‘HTMLParser‘ object has no attribute ‘unescape‘ 的问题
- python报错: ''list'' object has no attribute ''shape''的解决
- 解决运行出现''dict'' object has no attribute ''has_key''问题
- 解决运行django程序出错问题 ''str''object has no attribute''_meta''
- Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
- python错误:AttributeError: ''module'' object has no attribute ''setdefaultencoding''问题的解决方法
相关文章
python pycurl验证basic和digest认证的方法
这篇文章主要介绍了python pycurl验证basic和digest认证的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-05-05PyQt5基本控件使用之消息弹出、用户输入、文件对话框的使用方法
本文主要介绍PyQt界面实现中常用的消息弹出对话框、提供用户输入的输入框、打开文件获取文件/目录路径的文件对话框。 本文主要针对这三种控件的主要场景进行介绍。感兴趣的朋友跟随小编一起看看吧2019-08-08
最新评论