成功解决AttributeError: module ‘numpy‘ has no attribute ‘float‘.
成功解决AttributeError: module 'numpy' has no attribute 'float'.
问题描述
AttributeError: module ‘numpy’ has no attribute ‘float’.
np.float
was a deprecated alias for the builtin float
. To avoid this error in existing code, use float
by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use np.float64
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
解决方案一:
不用改代码的,就重新安装numpy
出现这个问题是因为np.float从1.24起被删除。所用的代码是依赖于旧版本的Numpy。您可以将你的Numpy版本降级到1.23.5.
conda install numpy==1.23.5
或者用pip安装也可以。
解决方案二:
将代码中的np.float改为float,如下:
在大多数情况下,只需将 numpy 的别名替换为内置的 Python 类型就可以解决问题。bool
、str
、int
等也类似。
import numpy as np# Instead of numpy's float aliasx = np.float(10)# Use the built-in floatx = float(10)
如:
np.float = floatnp.int = intnp.object = objectnp.bool = bool
或者
np.float = np.float64
来源地址:https://blog.csdn.net/qq_45934285/article/details/131120167
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341