kmp5VT/ITensorCPD.jl

Randomized sampling can fail for very large tensors

开放

#30 创建于 2026年4月22日

 (1 条评论) (0 个反应) (0 位负责人)Julia (2 个派生)auto 404
buggood first issue

仓库指标

星标
 (7 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

Right now the randomized methods index the random sample by the column position of the matricized tensor using Int64. When a tensor has a very large column space, greater than 10^20, the number of columns overflows Int64 and returns negative values. The system needs to be modified to index by the position in each mode of the tensor. This would then only overflow when the dimension of a single mode is greater than 10^20. The solution is that all the pivot structures need to be modified to hold onto matrices of positions instead of vectors. Multi-index positions can easily be converted into other values.

贡献者指南