Hello! 欢迎来到小浪资源网!

嵌套列表转NumPy数组失败:如何解决"setting an array element with a sequence"错误?


嵌套列表转NumPy数组失败:如何解决"setting an array element with a sequence"错误?

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

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

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

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

import numpy as np  props = [[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]]

相关阅读