|
Algorithm 1 Optimization |
-
1:
Input: , m
-
2:
Initialize: , (Samping rate)
-
3:
Data Sampling:
-
4:
for
do
-
5:
Based on , randomly generate subset index
-
6:
-
7:
-
8:
end for
-
9:
Proximal gradient descent:
-
10:
repeat
-
11:
Compute gradient , set
-
12:
for do
-
13:
-
14:
end for
-
15:
if then
-
16:
break and output
-
17:
else
-
18:
where is user-defined
-
19:
end if
-
20:
until convergence
-
21:
Output:
|