在保存量化后的fx模型时遇到问题AttributeError: module 'torch.fx' has no attribute 'export'
时间: 2023-09-26 08:06:02 浏览: 155
问题解决:AttributeError: module ‘paddle.fluid’ has no attribute ‘EndStepEvent’
5星 · 资源好评率100%
这个问题可能是因为您正在使用过时的 PyTorch 版本。在旧版本的 PyTorch 中,`torch.fx.export` 是不存在的。请确保您的 PyTorch 版本是最新的,可以使用以下命令升级您的 PyTorch:
```
pip install --upgrade torch
```
如果您已经使用了最新版本的 PyTorch,但仍然遇到此错误,请检查您的代码是否正确导入了 `torch.fx.export`。您可以尝试使用以下导入语句:
```
from torch.fx import export
```
如果这样仍然无法解决问题,请提供更多的代码和错误信息,以便我能够更好地帮助您。
阅读全文