gpt4 book ai didi

python - 当我尝试从 QString 数组创建时,创建 numpy 数组失败

转载 作者:行者123 更新时间:2023-11-28 17:28:06 26 4
gpt4 key购买 nike

如果数组的大小为 2x2 或更大,一切都很好,但如果行的维度为 1,例如 1x2,numpy 会做一些我没有预料到的事情。

我该如何解决这个问题?

# TEST 1 OK
myarray = np.array([[QString('hello'), QString('world')],
[QString('hello'), QString('moon')]],
dtype=object)
print myarray
print myarray.shape
#[[PyQt4.QtCore.QString(u'hello') PyQt4.QtCore.QString(u'world')]
# [PyQt4.QtCore.QString(u'hello') PyQt4.QtCore.QString(u'moon')]]
#(2, 2)


# TEST 2 OK
myarray = np.array([['hello'], ['world']], dtype=object)
print myarray
print myarray.shape
#[['hello']
# ['world']]
#(2, 1)


# TEST 3 FAIL
myarray = np.array([[QString('hello'), QString('world')]], dtype=object)
print myarray
print myarray.shape
#[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[PyQt4.QtCore.QString(u'h')]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
#..
#[[[[[[[[[[[[[[[[[[[[[[[[[[[[[PyQt4.QtCore.QString(u'e')]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
# etc...
#(1, 2, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1)

最佳答案

尝试不同长度的字符串:

np.array([[QString('hello'), QString('moon')]], dtype=object)`.  

或者创建和填充对象数组的方法

A = np.empty((1,2), dtype=object)
A[:] = [QString('hello'), QString('moon')]

我不熟悉这些对象,但在我们尝试从列表构建对象数组的其他情况下,如果列表的长度相同,那就很棘手了。如果 QString 是可迭代的,使用 .__len__ 可能会发生类似的事情。

我猜您的第一个示例之所以有效,是因为 QString 比其他示例短,而不是因为它是 2x2。

这个最近关于从自定义字典类制作对象数组的问题可能是相关的:Override a dict with numpy support

关于python - 当我尝试从 QString 数组创建时,创建 numpy 数组失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36931732/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com