From 22c9c1eaf1ba304478ea60bc75dbe123acaabf5b Mon Sep 17 00:00:00 2001 From: Nuwan Yapa Date: Tue, 7 Jan 2025 16:50:36 -0500 Subject: [PATCH] More verbose --- helper.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/helper.jl b/helper.jl index e8e3da1..c921493 100644 --- a/helper.jl +++ b/helper.jl @@ -60,6 +60,7 @@ function gram_schmidt!(vecs, ws, threshold=1e-5; verbose=false) vecs[i] ./= sqrt(norm(i)) end + verbose && println("Absolute singular values = $(round.(c_singular_values(vecs, ws); sigdigits=1))") target_dim = c_rank(vecs, ws, threshold) verbose && println("Target dimensionality = $target_dim")