当前位置:   article > 正文

AttributeError: module ‘numpy‘ has no attribute ‘float‘_attributeerror: module 'numpy' has no attribute 'f

attributeerror: module 'numpy' has no attribute 'float'.

出现这个问题的原因是:从numpy1.24起删除了numpy.bool、numpy.int、numpy.float、numpy.complex、numpy.object、numpy.str、numpy.long、numpy.unicode类型的支持。解决上诉问题主要有两种方法:

方法一:修改numpy版本

安装numpy1.24之前的版本

  1. pip uninstall numpy
  2. pip install numpy==1.23.5

方法二:修改代码

可以用python内置类型或者np.ndarray类型替换:

np.float替换为float或者np.float64/np.float32

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/141371
推荐阅读
相关标签
  

闽ICP备14008679号