Skip to content

Commit 56b5a0b

Browse files
committed
optimization tutorial: verbosity LOW is the default
1 parent e2a6265 commit 56b5a0b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

doc/tutorials/opt_prob_graph_tv.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ We start with the graph TV regularization. We will use the :class:`pyunlocbox.so
8383
>>> # Solve the problem
8484
>>> x0 = subsampled_noisy_label_signal.copy()
8585
>>> prob1 = pyunlocbox.solvers.solve([d, r, f], solver=solver,
86-
... x0=x0, rtol=0, maxit=1000,
87-
... verbosity='LOW')
86+
... x0=x0, rtol=0, maxit=1000)
8887
Solution found after 1000 iterations:
8988
objective function f(sol) = 2.024594e+02
9089
stopping criterion: MAXIT
@@ -106,8 +105,7 @@ This figure shows the label signal recovered by graph total variation regulariza
106105
>>> # Solve the problem
107106
>>> x0 = subsampled_noisy_label_signal.copy()
108107
>>> prob2 = pyunlocbox.solvers.solve([r, f], solver=solver,
109-
... x0=x0, rtol=0, maxit=1000,
110-
... verbosity='LOW')
108+
... x0=x0, rtol=0, maxit=1000)
111109
Solution found after 1000 iterations:
112110
objective function f(sol) = 9.555135e+01
113111
stopping criterion: MAXIT

0 commit comments

Comments
 (0)