欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TypeError: ‘int‘ object is not callable

程序员文章站 2022-03-18 19:47:21
...
数据加载的时候遇到TypeError: 'int' object is not callable
原因:数据不是Tensor类型的而是np.array或其他类型的。
print("pred.size(0)", pred.shape[0])     # np.array
#for batch_index in range(pred.size(0)):   # tensor size()  
	pass
for batch_index in range(pred.shape[0]):
	pass

#或者将pred转为tensor
相关标签: 填坑之旅