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.
我需要运行 python (numpy) 代码:
numpy.linalg.svd(M.dot(M.T))
但 M 是形状为 100224 x 349800 的密集 float64 矩阵
显然,它不适合内存。
我知道 pytables 应该能够进行核外操作,但我只找到了元素操作的示例,不像点积或 SVD。
这在python中甚至可能吗?如果没有,我有什么选择?(任何编程语言都可能没问题)