We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Using truncted SVD for whitening gives huge speedup for me, could be done by replacing the following code:
Efac = eigen(C) ord = sortperm(Efac.values; rev=true) (v, P) = extract_kv(Efac, ord, k)
with P, v, _ = tsvd(C, k)
P, v, _ = tsvd(C, k)