raise AttributeError(f"module '{__name__}' has no attribute '{name}'") AttributeError: module 'torch' has no attribute 'view'
时间: 2024-05-10 21:13:21 浏览: 201
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为您在使用PyTorch时,将其安装的版本与代码中所使用的版本不一致造成的。在较老的PyTorch版本中,可能没有名为“view”的函数,而是使用名为“reshape”的函数来改变张量的形状。
您可以尝试检查您所使用的PyTorch版本是否支持“view”函数。另外,您也可以尝试使用“reshape”函数来代替“view”函数来改变张量的形状。
阅读全文