I am trying to understand the procedure of tensor cp decomposition with alternating least squares based on this paper. At page 464 is referred that "It is often useful to assume that the columns of A, B, and C are normalized to length one with the weights absorbed into the vector λ " In addition, at page 471 line 7 of psedo code is "
normalize columns of A(n) (storing norms as λ)
"
I don't understand what values will be stored on vector λ and on matrix Λ.
What i understand is that we do normalization to ever column of the factor matrices and we store norms on a new vector λ For example for a 3x3x3 tensor with rank=3, will have three 3x3 factors A,B and C and after normalize to unit length every column of all these matrices, i will end up with 9 norms. These norms will be the values of the diagonal matrix Λ ?
Am i missing something? Thank you
Tensor CP Decomposition with Alternating Least Square.