INTERNALERROR> AttributeError: module 'torch' has no attribute 'use_deterministic_algorithms'
时间: 2024-05-22 09:08:36 浏览: 144
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误提示是因为您在使用 PyTorch 的时候,调用了一个不存在的属性 use_deterministic_algorithms。这个属性是 PyTorch 1.8.0 版本中新增的,如果您的 PyTorch 版本低于 1.8.0,就会出现这个错误。
解决方法:
1. 升级 PyTorch 到 1.8.0 及以上版本。
2. 如果您不想升级 PyTorch,可以尝试将代码中的 use_deterministic_algorithms 属性改为 deterministic=True 参数,这个参数在 PyTorch 1.7.0 版本中已经存在。
阅读全文