AttributeError: module 'numpy' has no attribute 'bool'.
时间: 2023-06-21 18:13:27 浏览: 5418
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误可能是因为你的 NumPy 版本过低,在旧版本中没有 `bool` 类型。你可以尝试更新 NumPy 到最新版本,使用以下命令:
```
pip install --upgrade numpy
```
如果更新不起作用,你可以尝试将代码中的 `bool` 类型更改为 `np.bool_`,这是 NumPy 中旧版本的布尔类型。
阅读全文