attributeerror: 'numpy.ndarray' object has no attribute 'unsqueeze'
时间: 2023-04-28 09:03:59 浏览: 743
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误是因为numpy.ndarray对象没有unsqueeze属性。可能是因为您尝试在numpy数组上使用了unsqueeze方法,但是这个方法只能在PyTorch张量上使用。如果您想在numpy数组上添加一个维度,可以使用numpy.newaxis属性。例如,如果您有一个形状为(3,4)的numpy数组,您可以使用arr[:, :, np.newaxis]来添加一个新的维度,使其形状变为(3,4,1)。
阅读全文