本文主要是介绍亲测解决Pytorch TypeError: object of type ‘numpy.int64‘ has no len(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这个问题是小虎在初始化自适应平均池化的时候遇到的,解决方法是限制初始化时池化大小的类型。
问题原文
Exception has occurred: TypeError
object of type 'numpy.int64' has no len()File "D:\Complier\LEF\lib\model\segmentation\heads\modules\fgModules.py", line 162, in forwardPoolFeature = callMethod(self, Name)(self.PoolLayer(f))
TypeError: object of type 'numpy.int64' has no len()
解决实例
报错语句如下:
AdaptiveAvgPool2d(self.PoolSize)
查看类型发现是numpy:
type(self.PoolSize)
<class 'numpy.int64'>
所以可以改成:
AdaptiveAvgPool2d(int(self.PoolSize))
这篇关于亲测解决Pytorch TypeError: object of type ‘numpy.int64‘ has no len()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!