AttributeError: module 'torch.onnx' has no attribute 'load'
时间: 2023-08-02 15:09:23 浏览: 289
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于使用的 torch 版本不兼容导致的。在较新的版本中,`torch.onnx.load()` 方法已更名为 `torch.onnx.load_model()`。因此,你需要检查你所使用的 torch 版本,并相应地更改代码中的方法调用。
如果你的 torch 版本较旧,你可以尝试升级到最新版本以解决这个问题。你可以使用 `pip` 命令来安装最新版本的 torch:
```
pip install torch --upgrade
```
如果你需要使用特定的 torch 版本,你可以查阅官方文档以了解该版本中的正确方法调用。
阅读全文