您的位置:首页 > 产品设计 > UI/UE

ValueError: setting an array element with a sequence.

2015-08-27 17:31 453 查看
http://blog.csdn.net/pipisorry/article/details/48031035

From the code you showed us, the only thing we can tell is that you trying to create an array from a list that isn't shaped like a multi-dimensional array. For example

numpy.array([[1,2], [2, 3, 4]])


or

numpy.array([[1,2], [2, [3, 4]]])


will yield this error message, because the shape of the input list isn't a (generalised) "box" that can be turned into a multidimensional array. So probably UnFilteredDuringExSummaryOfMeansArraycontains
sequences of different lengths.

Edit: Another possible cause for this error message is trying to use a string as an element in an array of type float:

numpy.array([1.2, "abc"], dtype=float)


That is what you are trying according to your edit. If you really want to have a NumPy array containing both strings and floats, you could use the dtype object,
which enables the array to hold arbitrary Python objects:

numpy.array([1.2, "abc"], dtype=object)


Without knowing what your code shall accomplish, I can't judge if this is what you want.

皮皮Blog

ps:array 未对齐,先查看array是否对齐,可能是数据集末尾行存在多余行
http://stackoverflow.com/questions/4674473/valueerror-setting-an-array-element-with-a-sequence http://blog.csdn.net/pipisorry/article/details/23563441
from:http://blog.csdn.net/pipisorry/article/details/48031035

ref:
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: