Skip to content

Commit

Permalink
rm debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
Badr-MOUFAD committed Jun 2, 2024
1 parent 165ad25 commit 62ecc75
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions skglm/solvers/prox_newton.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,6 @@ def solve(self, X, y, datafit, penalty, w_init=None, Xw_init=None):
# similar to np.argsort()[-ws_size:] but without sorting
ws = np.argpartition(opt, -ws_size)[-ws_size:]

print(f"Iter {t:<3}: {ws}")

grad_ws = grad[ws]
tol_in = EPS_TOL * stop_crit

Expand Down

0 comments on commit 62ecc75

Please sign in to comment.