本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

嵌套列表转NumPy数组失败:如何解决\"settinganarrayelementwithasequence\"错误?

网络教程 app 1℃

嵌套列表转NumPy数组失败:如何解决\"settinganarrayelementwithasequence\"错误?

list转换为array失败的解决方法

在将嵌套列表转换为numpy数组时,可能会遇到错误:”setting an array element with a sequence… the detected shape was (20, 15) + inhomogeneous part.”。这通常是由于嵌套列表中子列表长度不一致或数据类型不一致造成的。

要解决此问题,首先排除数据类型不一致的问题。如果所有子列表的数据类型相同,则可能是由于子列表长度不一致。

为了解决这个问题,可以对子列表进行填充,使它们具有相同的长度。以下是解决此问题的 python 代码示例:

import numpy as npprops = [[1, 2, 3, {‘a’: 1, ‘b’: 2}], [4, 5, 6, 7, {‘c’: 3, ‘d’: 4}], [8, 9, 10]]# 获取每个子列表的长度lengths = [len(inner_list) for inner_list in props]# 获取最长的子列表长度max_length = max(lengths)# 用 none 填充较短的子列表padded_props = [inner_list + [none] * (max_length – len(inner_list)) for inner_list in props]# 转换为 numpy 数组np_props = np.array(padded_props)print(np_props)

输出:

[[1 2 3 {‘a’: 1, ‘b’: 2} None] [4 5 6 7 {‘c’: 3, ‘d’: 4}] [8 9 10 None None]]

以上就是嵌套列表转NumPy数组失败:如何解决"setting an array element with a sequence"错误?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » 嵌套列表转NumPy数组失败:如何解决\"settinganarrayelementwithasequence\"错误?

喜欢 (0)