这个问题是小虎在初始化自适应平均池化的时候遇到的,解决方法是限制初始化时池化大小的类型。
问题原文
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 forward
PoolFeature = callMethod(self, Name)(self.PoolLayer(f))
TypeError: object of type 'numpy.int64' has no len()
解决实例
报错语句如下:
AdaptiveAvgPool2d(self.PoolSize)
查看类型发现是numpy:文章来源:https://www.toymoban.com/news/detail-738235.html
type(self.PoolSize)
<class 'numpy.int64'>
所以可以改成:文章来源地址https://www.toymoban.com/news/detail-738235.html
AdaptiveAvgPool2d(int(self.PoolSize))
到了这里,关于亲测解决Pytorch TypeError: object of type ‘numpy.int64‘ has no len()的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!