AttributeError: module ‘numpy‘ has no attribute ‘bool‘.

错误结果:

AttributeError: module ‘numpy‘ has no attribute ‘bool‘._第1张图片

错误原因:AttributeError: module 'numpy' has no attribute 'bool'.
`np.bool` was a deprecated alias for the builtin `bool`. To avoid this error in existing code, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.
The aliases was originally deprecated in NumPy 1.20; for more details and guidance see the original release note at:
    https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
"""

解决方法:1.换numpy版本(降低版本);2.将出错文件里的np.bool改成np.bool_

 

改成

 

就可以了 

你可能感兴趣的:(numpy)