一步真实解决AttributeError:‘Upsample‘ object has no attribute‘recompute_scale_factor‘的问题
作者:蓝胖胖▸
这篇文章主要介绍了解决解决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''问题的解决方法