gpt4 book ai didi

python - 转换为稀疏矩阵 - TypeError : no supported conversion for types: (dtype ('0' ), )

转载 作者:太空宇宙 更新时间:2023-11-04 11:14:07 25 4
gpt4 key购买 nike

我正在尝试这样做:

  features = csr_matrix(features)

哪里features<class 'numpy.ndarray'>看起来像这样:

[[51 1]
[49 2]
[47 2]
...
[2 6]
[20 2]
[16 1]]

但我收到以下错误:

TypeError: no supported conversion for types: (dtype('O'),)

这个错误是关于什么的,我该如何解决?

最佳答案

您可以重新定义您的 numpy 数组,明确指定 dtype

features = np.array(features, dtype=float)

关于python - 转换为稀疏矩阵 - TypeError : no supported conversion for types: (dtype ('0' ), ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57434284/

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