You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
ghost
changed the title
using truncated SVD for whitening gives 5-10x speedup on large inputs
using truncated SVD for whitening in ICA gives 5-10x speedup on large inputs
May 4, 2020
Too bad, that tsvd doesn't follow LinearAlgebra interface by returning SVD object. It's a good that you mention a possibility of other eigendecomposition methods. But, it would require to rewrite API to abstract eigendecomposition part of the package. I have a long standing plan to revise the package interface, see #94. I'll definitely consider this issue during the rewrite.
As of a time horizon, can't say anything at this point.
Using truncted SVD for whitening gives huge speedup for me, could be done by replacing the following code:
with
P, v, _ = tsvd(C, k)
The text was updated successfully, but these errors were encountered: