gpt4 book ai didi

python - scipy.sparse.csr.csr_matrix :Matrix extension

转载 作者:行者123 更新时间:2023-11-30 08:58:40 26 4
gpt4 key购买 nike

我正在使用 sklearn 进行机器学习工作。这是我的两个变量:

>>> matrix
<1397x9576 sparse matrix of type '<type 'numpy.float64'>'
with 44655 stored elements in Compressed Sparse Row format>

>>> type(density)
<type 'list'>
>>> len(density)
1397

矩阵TfidfVectorizer.fit_transform()生成。我想通过添加变量密度作为新列来扩展变量矩阵。有什么方法可以实现它吗?

最佳答案

使用scipy hstack将列密度与矩阵堆叠

from scipy.sparse import hstack
new_matrix = hstack([matrix, density])

关于python - scipy.sparse.csr.csr_matrix :Matrix extension,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49506843/

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