ACEsuit / ACEfit.jl

Generic Codes for Fitting ACE models
MIT License
7 stars 6 forks source link

Thin SVD for BayesianRidge #45

Closed wcwitt closed 1 year ago

wcwitt commented 1 year ago

Should give speedups and memory savings

cortner commented 1 year ago

julia> A = randn(20, 5);
       U, S, V = svd(A);
       @show size(U), size(V)
       U, S, V = svd(A; full = true);
       @show size(U), size(V)
(size(U), size(V)) = ((20, 5), (5, 5))
(size(U), size(V)) = ((20, 20), (5, 5))
wcwitt commented 1 year ago

done