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

How to solve the AttributeError:#39;list#39; object has no attribute #39;astype#39;?(如何解决 AttributeError:list 对象没有属性 astype?)
本文介绍了如何解决 AttributeError:'list' 对象没有属性 'astype'?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我只是想知道如何解决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'?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How do I make a list of all members in a discord server using discord.py?(如何使用 discord.py 列出不和谐服务器中的所有成员?)
how to change discord.py bot activity(如何更改 discord.py 机器人活动)
Issues with getting VoiceChannel.members and Guild.members to return a full list(让 VoiceChannel.members 和 Guild.members 返回完整列表的问题)
Add button components to a message (discord.py)(将按钮组件添加到消息(discord.py))
on_message() and @bot.command issue(on_message() 和@bot.command 问题)
How to edit a message in discord.py(如何在 discord.py 中编辑消息)