anchors, shape = self.anchors[i], p[i].shape AttributeError: 'list' object has no attribute 'shape'
时间: 2023-10-21 20:27:47 浏览: 199
python报错: list object has no attribute shape的解决
这个错误信息是由于在代码中的某处,尝试对一个列表对象self.anchors[i]进行shape操作,而列表对象没有shape属性导致的。中提到,在替换代码的过程中,应该将代码`anchors,shape = self.anchors[i],p[i].shape`替换红圈部分,但是可能在替换代码时出现了错误。请检查替换代码的正确性,确保self.anchors[i]是一个具有shape属性的对象。如果self.anchors[i]是一个列表对象,则无法对其使用shape操作。请检查代码并确保正确引用了self.anchors[i]的对象类型。<span class="em">1</span><span class="em">2</span><span class="em">3</span><span class="em">4</span>
阅读全文