当前位置:   article > 正文

解决:“AttributeError: module ‘numpy‘ has no attribute ‘long‘”报错问题!!(有效!!)_attributeerror: module 'numpy' has no attribute 'l

attributeerror: module 'numpy' has no attribute 'long

AttributeError: module 'numpy' has no attribute 'long'报错问题!!(不要慌张!!!)

 今天在调试代码的时候遇到这个问题,但是大家不用慌张:

这个错误是因为使用了过时的数据类型 np.long,而在将来的 NumPy 版本中将不再定义该类型

替代使用 np.long,你可以使用 np.int64,它是对应的长整型数据类型

就像程序中:

return self.raw[index], self.labels[index].astype(np.long)

改成:

return self.raw[index], self.labels[index].astype(np.int64)

就可以啦!!!

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

闽ICP备14008679号