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)
Using truncted SVD for whitening gives huge speedup for me, could be done by replacing the following code:
with
P, v, _ = tsvd(C, k)