From 537da2c160b3cba4c70c8ca851a115b43cca2f9e Mon Sep 17 00:00:00 2001 From: Christos Falas Date: Sun, 29 Dec 2024 12:41:46 +0000 Subject: [PATCH] decrease verbosity --- src/aoa.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/aoa.py b/src/aoa.py index bae2990..7f43a27 100644 --- a/src/aoa.py +++ b/src/aoa.py @@ -37,7 +37,7 @@ class AoA: H_sm_rows = [np.hstack(H_n[i : i + N // 2 + 1]) for i in range(N // 2)] H_sm = np.vstack(H_sm_rows) - logger.info(f"Smoothed: {H_sm.shape}") + logger.debug(f"Smoothed: {H_sm.shape}") return H_sm @@ -65,7 +65,6 @@ class AoA: # The smallest eigenvectors span the noise subspace, # and the largest span the signal subspace. eigvals, eigvecs = np.linalg.eigh(R) - print(eigvals) self.E_n = eigvecs[:, np.abs(eigvals) < config.EIGVAL_THRESHOLD] omega_base = np.exp(-2j * np.pi * config.DELTA_F)