-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun_irbp_lib.py
44 lines (33 loc) · 1.37 KB
/
run_irbp_lib.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Oct 26 19:48:48 2021
@author: Xiangyu Yang
"""
import numpy as np
from numpy import linalg as LA
import irbp_lib
def get_sol(point_to_be_projected, p, radius):
"""Test irbp.
Args:
point_to_be_projected: Point to be projected.
p: p parameter for lp-ball.
radius: The radius of lp-ball.
Returns:
x_irbp : The projection point.
"""
data_dim = point_to_be_projected.shape[0]
# Initialization
x_ini = np.zeros(data_dim, dtype=np.float64)
rand_num = np.random.uniform(0., 1., data_dim)
rand_num_norm = LA.norm(rand_num, ord=1)
epsilon_ini = 0.9 * (rand_num * radius / rand_num_norm) ** (1. / p) # ensure that the point is feasible.
x_irbp, dual, runningTime = irbp_lib.get_lp_ball_projection(x_ini,
point_to_be_projected,
p,
radius,
epsilon_ini,
tau=1.1,
tol=1e-8,
MAX_ITER=1000)
return x_irbp, dual, runningTime