我只是想知道如何解决python3.6中的属性错误.错误是
I am just wondering how to solve the attribute error in python3.6.
The error is
'list' 对象没有属性 'astype'.
'list' object has no attribute 'astype'.
我的相关代码也是爆款.
My related code is as blow.
def _init_mean_std(self, data):
data = data.astype('float32')
self.mean, self.std = np.mean(data), np.std(data)
self.save_meanstd()
return data
有人可以给我建议吗?
谢谢!
根本问题是 Python 列表和 NumPy 数组的混淆,它们是不同的数据类型.作为 np.foo(array) 调用的 NumPy 方法通常不会抱怨,如果你给他们一个 Python 列表,他们会默默地将它转换为 NumPy 数组.但是,如果您尝试调用对象中包含的方法,例如 array.foo(),那么它当然必须已经具有适当的类型.
The root issue is confusion of Python lists and NumPy arrays, which are different data types. NumPy methods that are invoked as np.foo(array) usually won't complain if you give them a Python list, they will convert it to an NumPy array silently. But if you try to invoke a method contained in the object, like array.foo() then of course it has to have the appropriate type already.
我建议使用
data = np.array(data, dtype=np.float32)
以便 NumPy 立即知道数组的类型.这避免了您首先创建一个数组然后将其转换为另一种类型的不必要的工作.
so that the type of an array is known to NumPy at once. This avoids unnecessary work where you first create an array and then cast it to another type.
NumPy 建议使用 dtype 对象像float32"这样的字符串.
NumPy recommends using dtype objects instead of strings like "float32".
这篇关于如何解决 AttributeError:'list' 对象没有属性 'astype'?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
python:不同包下同名的两个模块和类python: Two modules and classes with the same name under different packages(python:不同包下同名的两个模块和类)
配置 Python 以使用站点包的其他位置Configuring Python to use additional locations for site-packages(配置 Python 以使用站点包的其他位置)
如何在不重复导入顶级名称的情况下构造python包How to structure python packages without repeating top level name for import(如何在不重复导入顶级名称的情况下构造python包)
在 OpenShift 上安装 python 包Install python packages on OpenShift(在 OpenShift 上安装 python 包)
如何刷新 sys.path?How to refresh sys.path?(如何刷新 sys.path?)
分发带有已编译动态共享库的 Python 包Distribute a Python package with a compiled dynamic shared library(分发带有已编译动态共享库的 Python 包)