如何解决 AttributeError:'list' 对象没有属性 'astype'?

2022-01-13 00:00:00 python numpy attributes

问题描述

我只是想知道如何解决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".

相关文章