标签: python scipy sparse-matrix
我有一个tfidf类型的scipy.sparse.csr.csr_matrix矩阵
tfidf
scipy.sparse.csr.csr_matrix
如何在Python 3中找到行数和列数?
我尝试将其转换为密集的,然后像这样找到一行的长度
len(tfidf_matrix.todense()),但输出1,这不正确。
len(tfidf_matrix.todense())
答案 0 :(得分:0)
您正在寻找功能matrix.get_shape()
matrix.get_shape()
https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.sparse.csr_matrix.get_shape.html#scipy.sparse.csr_matrix.get_shape