AttributeError: module 'numpy' has no attribute 'object'.
时间: 2023-09-28 09:04:25 浏览: 16
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误可能是因为您的 numpy 版本过低导致的。请尝试更新 numpy 到最新版本,可以使用以下命令来进行更新:
```
pip install --upgrade numpy
```
如果您已经安装了最新版本的 numpy,那么可能是因为您的代码中使用了一个过时的语法,需要对代码进行调整。请检查代码中是否有使用了过时语法的部分,并进行更新。
阅读全文