Skip to content

Commit

Permalink
Tune some parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
bwohlberg committed Feb 23, 2024
1 parent 0446447 commit cfa5683
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions examples/scripts/denoise_approx_tv_admm.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
f=f,
g=g_iso,
A=C,
rho=1e0,
rho=8e0,
mu=mu,
nu=nu,
x0=y,
maxiter=200,
itstat_options={"display": True, "period": 20},
maxiter=500,
itstat_options={"display": True, "period": 50},
)
print(f"Solving on {device_info()}\n")
x_iso = solver.solve()
Expand All @@ -77,12 +77,12 @@
f=f,
g=g_aniso,
A=C,
rho=1e0,
rho=8e0,
mu=mu,
nu=nu,
x0=y,
maxiter=200,
itstat_options={"display": True, "period": 20},
maxiter=500,
itstat_options={"display": True, "period": 50},
)
x_aniso = solver.solve()
print()
Expand Down

0 comments on commit cfa5683

Please sign in to comment.