-
Notifications
You must be signed in to change notification settings - Fork 9
/
example_rof.py
430 lines (346 loc) · 14.5 KB
/
example_rof.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
# Copyright 2018 Matthias J. Ehrhardt, University of Cambridge
#
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at https://mozilla.org/MPL/2.0/.
"""An example of using the SPDHG algorithm to solve a TV denoising problem
with Gaussian noise. We exploit the strong convexity of the data term to get
1/k^2 convergence on the primal part. We compare different algorithms for this
problem and visualize the results as in [CERS2017].
Reference
---------
[CERS2017] A. Chambolle, M. J. Ehrhardt, P. Richtarik and C.-B. Schoenlieb,
*Stochastic Primal-Dual Hybrid Gradient Algorithm with Arbitrary Sampling
and Imaging Applications*. ArXiv: http://arxiv.org/abs/1706.04957 (2017).
"""
from __future__ import division, print_function
import os
import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import brewer2mpl
import odl
import odl.contrib.datasets.images as images
from stochastic_primal_dual_hybrid_gradient import (spdhg, pa_spdhg,
spdhg_pesquet)
import misc
# create folder structure and set parameters
folder_out = '.' # to be changed
filename = 'example_rof'
nepoch = 300
niter_target = 2000
subfolder = '{}epochs'.format(nepoch)
folder_main = '{}/{}'.format(folder_out, filename)
if not os.path.exists(folder_main):
os.makedirs(folder_main)
folder_today = '{}/{}'.format(folder_main, subfolder)
if not os.path.exists(folder_today):
os.makedirs(folder_today)
folder_npy = '{}/npy'.format(folder_today)
if not os.path.exists(folder_npy):
os.makedirs(folder_npy)
# set latex options
matplotlib.rc('text', usetex=False)
# create ground truth
image_gray = images.building(gray=True)
X = odl.uniform_discr([0, 0], image_gray.shape, image_gray.shape)
groundtruth = X.element(image_gray)
clim = [0, 1]
# create data
data = odl.phantom.white_noise(X, mean=groundtruth, stddev=0.1, seed=1807)
# save images and data
if not os.path.exists('{}/groundtruth.png'.format(folder_main)):
misc.save_image(groundtruth, 'groundtruth', folder_main, 1, clim=clim)
misc.save_image(data, 'data', folder_main, 2, clim=clim)
alpha = .12 # set regularisation parameter
gamma = 0.99 # gamma^2 is upper bound of step size constraint
# create forward operators
Dx = odl.PartialDerivative(X, 0, pad_mode='symmetric')
Dy = odl.PartialDerivative(X, 1, pad_mode='symmetric')
A = odl.BroadcastOperator(Dx, Dy)
Y = A.range
# set up functional f
f = odl.solvers.SeparableSum(*[odl.solvers.L1Norm(Yi) for Yi in Y])
# set up functional g
g = 1 / (2 * alpha) * odl.solvers.L2NormSquared(X).translated(data)
obj_fun = f * A + g # define objective function
mu_g = 1 / alpha # define strong convexity constants
# create target / compute a saddle point
file_target = '{}/target.npy'.format(folder_main)
if not os.path.exists(file_target):
# compute a saddle point with PDHG and time the reconstruction
callback = (odl.solvers.CallbackPrintIteration(step=10, end=', ') &
odl.solvers.CallbackPrintTiming(step=10, cumulative=True))
x_opt, y_opt = X.zero(), Y.zero() # initialise variables
normA = np.sqrt(8) # compute norm of operator
sigma, tau = (gamma / normA,) * 2 # set step size parameters
# compute a saddle point with PDHG and time the reconstruction
odl.solvers.pdhg(x_opt, g, f, A, niter_target, tau, sigma, y=y_opt,
callback=callback)
# subgradients at saddle
subx_opt = -A.adjoint(y_opt)
suby_opt = A(x_opt)
obj_opt = obj_fun(x_opt) # objective value at saddle
# save saddle point
np.save(file_target, (x_opt, y_opt, subx_opt, suby_opt, obj_opt, normA),
allow_pickle=True)
# show saddle point and subgradients
misc.save_image(x_opt, 'x_saddle', folder_main, 1, clim=clim)
misc.save_image(y_opt[0], 'y_saddle[0]', folder_main, 2)
misc.save_image(subx_opt, 'subx_saddle', folder_main, 3)
misc.save_image(suby_opt[0], 'suby_saddle[0]', folder_main, 4)
else:
(x_opt, y_opt, subx_opt, suby_opt, obj_opt, normA) = np.load(file_target,
allow_pickle=True)
# set norms of the primal and dual variable
dist_x = odl.solvers.L2NormSquared(X).translated(x_opt)
dist_y = odl.solvers.L2NormSquared(Y).translated(y_opt)
# create Bregman distances for f and g
bregman_g = g.bregman(x_opt, subx_opt)
# define Bregman distance for f and f_p
bregman_f = odl.solvers.SeparableSum(
*[fi.convex_conj.bregman(yi, ri)
for fi, yi, ri in zip(f, y_opt, suby_opt)])
class CallbackStore(odl.solvers.util.callback.Callback):
"""Callback to store function values"""
def __init__(self, alg, iter_save, iter_plot):
self.iter_save = iter_save
self.iter_plot = iter_plot
self.iter = 0
self.alg = alg
self.ex, self.ey = X.zero(), Y.zero()
self.out = []
def __call__(self, w):
if self.iter > 0:
k = self.iter
self.ex = 1 / k * ((k - 1) * self.ex + w[0])
self.ey = 1 / k * ((k - 1) * self.ey + w[1])
if self.iter in self.iter_save:
obj = obj_fun(w[0])
breg_x = bregman_g(w[0])
breg_y = bregman_f(w[1])
breg = breg_x + breg_y
breg_ex = bregman_g(self.ex)
breg_ey = bregman_f(self.ey)
breg_erg = breg_ex + breg_ey
dx = dist_x(w[0])
dy = dist_y(w[1])
dist = dx + dy
dex = dist_x(self.ex)
dey = dist_y(self.ey)
dist_erg = dex + dey
self.out.append({'obj': obj, 'breg': breg, 'breg_x': breg_x,
'breg_y': breg_y, 'breg_erg': breg_erg,
'breg_ex': breg_ex, 'breg_ey': breg_ey,
'dist': dist, 'dist_x': dx, 'dist_y': dy,
'dist_erg': dist_erg, 'dist_ex': dex,
'dist_ey': dey})
if self.iter in self.iter_plot:
fname = '{}_{}'.format(self.alg, self.iter)
misc.save_image(w[0], fname, folder_today, 1, clim=clim)
self.iter += 1
# number of subsets for each algorithm
nsub = {'pdhg': 1, 'pa_pdhg': 1, 'pesquet_uni2': 2, 'spdhg_uni2': 2,
'pa_spdhg_uni2': 2}
# number of iterations for each algorithm
niter, iter_save, iter_plot = {}, {}, {}
for alg in nsub.keys():
niter[alg] = nepoch * nsub[alg]
iter_save[alg] = range(0, niter[alg] + 1, nsub[alg])
iter_plot[alg] = list(np.array([10, 20, 30, 40, 100, 300]) * nsub[alg])
# %% --- Run algorithms ---
for alg in ['pdhg', 'pesquet_uni2', 'pa_pdhg', 'spdhg_uni2', 'pa_spdhg_uni2']:
print('======= ' + alg + ' =======')
# clear variables in order not to use previous instances
prob, sigma, tau, theta = [None] * 4
# create lists for subset division
n = nsub[alg]
(sub2ind, ind2sub) = misc.divide_1Darray_equally(range(2), n)
# set random seed so that results are reproducable
np.random.seed(1807)
# choose parameters for algorithm
if alg == 'pdhg' or alg == 'pa_pdhg':
prob_subset = [1] * n
prob = [1] * len(Y)
sigma = [gamma / normA] * len(Y)
tau = gamma / normA
elif alg == 'odl' or alg == 'pa_odl':
sigma = gamma / normA
tau = gamma / normA
elif alg == 'pesquet_uni2':
prob_subset = [1 / n] * n
prob = [1 / n] * len(Y)
sigma = [gamma / normA] * len(Y)
tau = gamma / normA
elif alg in ['spdhg_uni2'] or alg in ['pa_spdhg_uni2']:
normAi = [2] * n
prob_subset = [1 / n] * n
prob = [1 / n] * len(Y)
sigma = [gamma / nA for nA in normAi]
tau = gamma / (n * max(normAi))
else:
assert False, "Parameters not defined"
# function that selects the indices every iteration
def fun_select(k):
return sub2ind[int(np.random.choice(n, 1, p=prob_subset))]
# output function to be used within the iterations
callback = (odl.solvers.CallbackPrintIteration(step=n, end=', ') &
odl.solvers.CallbackPrintTiming(step=n, cumulative=True) &
CallbackStore(alg, iter_save[alg], iter_plot[alg]))
x, y = X.zero(), Y.zero() # initialise variables
callback([x, y])
if alg.startswith('pdhg') or alg.startswith('spdhg'):
spdhg(x, f, g, A, tau, sigma, niter[alg], prob=prob, y=y,
fun_select=fun_select, callback=callback)
elif alg.startswith('pa_pdhg') or alg.startswith('pa_spdhg'):
pa_spdhg(x, f, g, A, tau, sigma, niter[alg], mu_g, prob=prob, y=y,
fun_select=fun_select, callback=callback)
elif alg.startswith('pesquet'):
spdhg_pesquet(x, f, g, A, tau, sigma, niter[alg], y=y,
fun_select=fun_select, callback=callback)
else:
assert False, "Algorithm not defined"
np.save('{}/{}_output'.format(folder_npy, alg), (iter_save[alg],
niter[alg], x, callback.callbacks[1].out, nsub[alg]),
allow_pickle=True)
# %% --- Analyse and visualise the output ---
algs = ['pdhg', 'pesquet_uni2', 'pa_pdhg', 'spdhg_uni2', 'pa_spdhg_uni2']
iter_save_v, niter_v, image_v, out_v, nsub_v = {}, {}, {}, {}, {}
for a in algs:
(iter_save_v[a], niter_v[a], image_v[a], out_v[a], nsub_v[a]) = np.load(
'{}/{}_output.npy'.format(folder_npy, a), allow_pickle=True)
epochs_save = {a: np.array(iter_save_v[a]) / np.float(nsub_v[a]) for a in algs}
out_resorted = {}
for a in algs:
print('==== ' + a)
out_resorted[a] = {}
K = len(iter_save_v[a])
for meas in out_v[a][0].keys(): # quality measures
print(' ==== ' + meas)
out_resorted[a][meas] = np.nan * np.ones(K)
for k in range(K): # iterations
out_resorted[a][meas][k] = out_v[a][k][meas]
meas = 'obj_rel'
print(' ==== ' + meas)
out_resorted[a][meas] = np.nan * np.ones(K)
for k in range(K): # iterations
out_resorted[a][meas][k] = ((out_v[a][k]['obj'] - obj_opt) /
(out_v[a][0]['obj'] - obj_opt))
for a in algs: # algorithms
for meas in out_resorted[a].keys(): # quality measures
for k in range(K): # iterations
if out_resorted[a][meas][k] <= 0:
out_resorted[a][meas][k] = np.nan
fig = plt.figure()
markers = plt.Line2D.filled_markers
all_plots = out_resorted[algs[0]].keys()
logy_plot = ['obj', 'obj_rel', 'dist_x', 'dist_y', 'breg', 'breg_y', 'breg_x',
'ebreg', 'ebreg_x', 'ebreg_y']
for plotx in ['linx', 'logx']:
for meas in all_plots:
print('============ ' + plotx + ' === ' + meas + ' ============')
fig = plt.figure(1)
plt.clf()
if plotx == 'linx':
if meas in logy_plot:
for a in algs:
x = epochs_save[a]
y = out_resorted[a][meas]
plt.semilogy(x, y, linewidth=3, label=a)
else:
for j, a in enumerate(algs):
x = epochs_save[a]
y = out_resorted[a][meas]
plt.plot(x, y, linewidth=3, marker=markers[j],
markersize=7, markevery=.1, label=a)
elif plotx == 'logx':
if meas in logy_plot:
for a in algs:
x = epochs_save[a][1:]
y = out_resorted[a][meas][1:]
plt.loglog(x, y, linewidth=3, label=a)
else:
for j, a in enumerate(algs):
x = epochs_save[a][1:]
y = out_resorted[a][meas][1:]
plt.semilogx(x, y, linewidth=3, marker=markers[j],
markersize=7, markevery=.1, label=a)
plt.title('{} v iteration'.format(meas))
h = plt.gca()
h.set_xlabel('epochs')
plt.legend(loc='best')
fig.savefig('{}/{}_{}.png'.format(folder_today, plotx, meas),
bbox_inches='tight')
# %% --- Prepapare visual output as in [1] ---
# set line width and style
lwidth = 2
lwidth_help = 2
lstyle = '-'
lstyle_help = '--'
# set colors using colorbrewer
bmap = brewer2mpl.get_map('Paired', 'Qualitative', 5)
colors = bmap.mpl_colors
# set latex options
matplotlib.rc('text', usetex=True)
matplotlib.rcParams['text.latex.preamble'] = [r"\usepackage{amsmath}"]
# set font
fsize = 15
font = {'family': 'serif', 'size': fsize}
matplotlib.rc('font', **font)
matplotlib.rc('axes', labelsize=fsize) # fontsize of x and y labels
matplotlib.rc('xtick', labelsize=fsize) # fontsize of xtick labels
matplotlib.rc('ytick', labelsize=fsize) # fontsize of ytick labels
matplotlib.rc('legend', fontsize=fsize) # legend fontsize
# markers
marker = ('o', 'v', 's', 'p', 'd') # set markers
mevery = [(i / 30., .1) for i in range(20)] # how many markers to draw
msize = 9 # marker size
algs = ['pdhg', 'pa_pdhg', 'spdhg_uni2', 'pa_spdhg_uni2', 'pesquet_uni2']
label = ['PDHG', 'PA-PDHG', 'SPDHG', 'PA-SPDHG', 'Pesquet\&Repetti']
fig = []
# draw first figure
fig.append(plt.figure(1))
plt.clf()
xlim = [1, 300]
ylim = [2e-1, 1e+3]
meas = 'dist_x'
alg_i = [0, 1, 3]
for j in alg_i:
a = algs[j]
x = epochs_save[a]
y = out_resorted[a][meas]
i = (np.less_equal(x, xlim[1]) & np.greater_equal(x, xlim[0]) &
np.less_equal(y, ylim[1]) & np.greater_equal(y, ylim[0]))
plt.loglog(x[i], y[i], color=colors[j], linestyle=lstyle, linewidth=lwidth,
marker=marker[j], markersize=msize, markevery=mevery[j],
label=label[j])
y = 5e+4 / np.array(iter_save_v[alg])**2
plt.loglog(x[i], y[i], color='gray', linestyle=lstyle_help,
linewidth=lwidth_help, label=r'$\mathcal O(1/K^2)$')
plt.gca().set_xlabel('iterations [epochs]')
plt.gca().set_ylabel('primal distance')
plt.gca().yaxis.set_ticks(np.logspace(0, 2, 3))
plt.ylim((5e-1, 1e+3))
plt.legend(ncol=1, frameon=False)
# ### next figure
fig.append(plt.figure(2))
plt.clf()
ylim = [1e-5, 100]
meas = 'obj_rel'
alg_i = [0, 1, 2, 3, 4]
for j in alg_i:
a = algs[j]
x = epochs_save[a]
y = out_resorted[a][meas]
i = (np.less_equal(x, xlim[1]) & np.greater_equal(x, xlim[0]) &
np.less_equal(y, ylim[1]) & np.greater_equal(y, ylim[0]))
plt.loglog(x[i], y[i], color=colors[j], linestyle=lstyle, linewidth=lwidth,
marker=marker[j], markersize=msize, markevery=mevery[j],
label=label[j])
plt.gca().set_xlabel('iterations [epochs]')
plt.gca().set_ylabel('relative objective')
plt.gca().yaxis.set_ticks(np.logspace(-5, -1, 3))
plt.legend(frameon=False)
# %%
for i, fi in enumerate(fig):
fi.savefig('{}/output{}.png'.format(folder_today, i), bbox_inches='tight')