当前位置:   article > 正文

AttributeError:‘float‘ object has no attribute ‘astype‘_attributeerror: 'float' object has no attribute 'r

attributeerror: 'float' object has no attribute 'random

AttributeError:‘float’ object has no attribute ‘astype’

报错场景

原始代码段:
alpha = (np.random.uniform(-10, 30)).astype(np.float32)
beta = (np.random.uniform(-10, 30)).astype(np.float32)
报错:
AttributeError: ‘float’ object has no attribute ‘astype’

原因及解决方法

原因:
uniform没有指定size,得到的类型是一个number,而不是ndarray,所以不能用astype这样的方法。
解决方法:
指定size,例如:alpha = (np.random.uniform(-10, 30, size=1)).astype(np.float32),得到一个size为1的ndarray,才能用astype这样的方法。

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

闽ICP备14008679号