Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须计算稀疏矩阵中向量之间的大量相似性计算。什么是目前最好的工具,scipy-sparse或者pandas,对于这个任务?
scipy-sparse
pandas
经过一些研究,我发现 pandas 和 Scipy 都具有在内存中有效表示稀疏矩阵的结构。但是它们都没有开箱即用地支持计算余弦、调整余弦、欧几里得等向量之间的相似性。Scipy 仅在密集矩阵上支持这一点。对于稀疏,Scipy 支持点积和其他线性代数基本运算。