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
/// From `proxmin`'s `utils.py`:
// Original source here
//
// class NesterovStepper(object):
// def __init__(self, accelerated=False):
// self.t = 1.
// self.accelerated = accelerated
//
// @property
// def omega(self):
// if self.accelerated:
// t_ = 0.5*(1 + np.sqrt(4*self.t*self.t + 1))
// om = (self.t - 1)/t_
// self.t = t_
// return om
// else:
// return 0
/// From `proxmin`'s `utils.py`:
///
///
// Original python source:
//
// def l2sq(x):
// """Sum the matrix elements squared
// """
// return (x**2).sum()