Skip to content

Commit

Permalink
removed print()
Browse files Browse the repository at this point in the history
  • Loading branch information
PGelss authored Aug 7, 2024
1 parent a4c6443 commit 6aa98e1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions scikit_tt/tensor_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -1283,9 +1283,6 @@ def ortho_right(self, start_index: Optional[int]=None,
s = s[indices]
v = v[indices, :]
if max_ranks[i] != np.infty:
print(u.shape, v.shape)
print(max_ranks[i])

u = u[:, :np.minimum(u.shape[1], max_ranks[i])]
s = s[:np.minimum(s.shape[0], max_ranks[i])]
v = v[:np.minimum(v.shape[0], max_ranks[i]), :]
Expand Down

0 comments on commit 6aa98e1

Please sign in to comment.