当前位置:   article > 正文

AttributeError: module numpy has no attribute int.出现报错。_attributeerror: module 'numpy' has no attribute 'i

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

1.问题的出现来源于我正在训练YOLOv3模型,出现了这个报错。

这个错误提示表明代码中使用了被弃用的别名 np.int,而在 NumPy 1.20 版本中移除了这个别名。而应该直接使用内置的 int 类型,或者根据需要选择特定的 NumPy 整数类型,比如 np.int64np.int32

2.然而我并没有在代码中找到np.int。所以,查阅一番后,我决定重新安装numpy.

3.特别说明:numpy.int 在NumPy 1.20中已经弃用,而在NumPy 1.24中删除。所以我的解决办法:指定安装1.22版本。

4.pip uninstall numpy

   pip install numpy==1.22.0

(我是在Anaconda Prompt 运行命令卸载当前的 NumPy,并指定安装1.22版本的)

5.conda remove numpy

conda install numpy=1.22.0
(如果使用的是 Anaconda)

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

闽ICP备14008679号