AttributeError: module 'onnx' has no attribute 'export'
时间: 2023-09-23 07:10:16 浏览: 118
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常是由于onnx库的版本问题引起的。请确保您使用的是支持onnx.export()函数的onnx版本。您可以通过以下命令更新onnx库:
```
pip install -U onnx
```
如果您已经安装了最新版本的onnx库,但仍然遇到此错误,则可能需要检查您的代码中是否存在任何导入onnx模块的语句,并确保没有导入名称与onnx模块冲突的其他模块。
阅读全文