AttributeError: module 'numpy' has no attribute 'float128'
时间: 2023-10-02 14:07:14 浏览: 245
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误可能是由于您的 numpy 版本过旧所致。在较早的版本中,float128 类型可能不可用。您可以尝试更新 numpy 到最新版本来解决这个问题。您可以使用以下命令来更新 numpy:
```
pip install --upgrade numpy
```
如果您仍然遇到问题,请提供更多信息,例如您使用的 numpy 版本和具体的代码示例,以便我能够更好地帮助您解决问题。
阅读全文