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
use linalg::norm::{Euclidean, Lp, MatrixNorm};
use linalg::{Matrix, MatrixSlice, BaseMatrix};
use libnum::{FromPrimitive, Float};
#[derive(Debug, Clone, Copy)]
pub enum Regularization<T: Float> {
L1(T),
L2(T),
ElasticNet(T, T),
None,
}
impl<T: Float + FromPrimitive> Regularization<T> {
pub fn reg_cost(&self, mat: MatrixSlice<T>) -> T {
match *self {
Regularization::L1(x) => Self::l1_reg_cost(&mat, x),
Regularization::L2(x) => Self::l2_reg_cost(&mat, x),
Regularization::ElasticNet(x, y) => {
Self::l1_reg_cost(&mat, x) + Self::l2_reg_cost(&mat, y)
}
Regularization::None => T::zero(),
}
}
pub fn reg_grad(&self, mat: MatrixSlice<T>) -> Matrix<T> {
match *self {
Regularization::L1(x) => Self::l1_reg_grad(&mat, x),
Regularization::L2(x) => Self::l2_reg_grad(&mat, x),
Regularization::ElasticNet(x, y) => {
Self::l1_reg_grad(&mat, x) + Self::l2_reg_grad(&mat, y)
}
Regularization::None => Matrix::zeros(mat.rows(), mat.cols()),
}
}
fn l1_reg_cost(mat: &MatrixSlice<T>, x: T) -> T {
let l1_norm = Lp::Integer(1).norm(mat);
l1_norm * x / ((T::one() + T::one()) * FromPrimitive::from_usize(mat.rows()).unwrap())
}
fn l1_reg_grad(mat: &MatrixSlice<T>, x: T) -> Matrix<T> {
let m_2 = (T::one() + T::one()) * FromPrimitive::from_usize(mat.rows()).unwrap();
let out_mat_data = mat.iter()
.map(|y| {
if y.is_sign_negative() {
-x / m_2
} else {
x / m_2
}
})
.collect::<Vec<_>>();
Matrix::new(mat.rows(), mat.cols(), out_mat_data)
}
fn l2_reg_cost(mat: &MatrixSlice<T>, x: T) -> T {
Euclidean.norm(mat) * x / ((T::one() + T::one()) * FromPrimitive::from_usize(mat.rows()).unwrap())
}
fn l2_reg_grad(mat: &MatrixSlice<T>, x: T) -> Matrix<T> {
mat * (x / FromPrimitive::from_usize(mat.rows()).unwrap())
}
}
#[cfg(test)]
mod tests {
use super::Regularization;
use linalg::{Matrix, BaseMatrix};
use linalg::norm::{Euclidean, MatrixNorm};
#[test]
fn test_no_reg() {
let input_mat = Matrix::new(3, 4, (0..12).map(|x| x as f64).collect::<Vec<_>>());
let mat_slice = input_mat.as_slice();
let no_reg: Regularization<f64> = Regularization::None;
let a = no_reg.reg_cost(mat_slice);
let b = no_reg.reg_grad(mat_slice);
assert_eq!(a, 0f64);
assert_eq!(b, Matrix::zeros(3, 4));
}
#[test]
fn test_l1_reg() {
let input_mat = Matrix::new(3, 4, (0..12).map(|x| x as f64 - 3f64).collect::<Vec<_>>());
let mat_slice = input_mat.as_slice();
let no_reg: Regularization<f64> = Regularization::L1(0.5);
let a = no_reg.reg_cost(mat_slice);
let b = no_reg.reg_grad(mat_slice);
assert!((a - (42f64 / 12f64)) < 1e-18);
let true_grad = vec![-1., -1., -1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]
.into_iter()
.map(|x| x / 12f64)
.collect::<Vec<_>>();
for eps in (b - Matrix::new(3, 4, true_grad)).into_vec() {
assert!(eps < 1e-18);
}
}
#[test]
fn test_l2_reg() {
let input_mat = Matrix::new(3, 4, (0..12).map(|x| x as f64 - 3f64).collect::<Vec<_>>());
let mat_slice = input_mat.as_slice();
let no_reg: Regularization<f64> = Regularization::L2(0.5);
let a = no_reg.reg_cost(mat_slice);
let b = no_reg.reg_grad(mat_slice);
assert!((a - (Euclidean.norm(&input_mat) / 12f64)) < 1e-18);
let true_grad = &input_mat / 6f64;
for eps in (b - true_grad).into_vec() {
assert!(eps < 1e-18);
}
}
#[test]
fn test_elastic_net_reg() {
let input_mat = Matrix::new(3, 4, (0..12).map(|x| x as f64 - 3f64).collect::<Vec<_>>());
let mat_slice = input_mat.as_slice();
let no_reg: Regularization<f64> = Regularization::ElasticNet(0.5, 0.25);
let a = no_reg.reg_cost(mat_slice);
let b = no_reg.reg_grad(mat_slice);
assert!(a - ((Euclidean.norm(&input_mat) / 24f64) + (42f64 / 12f64)) < 1e-18);
let l1_true_grad = Matrix::new(3, 4,
vec![-1., -1., -1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]
.into_iter()
.map(|x| x / 12f64)
.collect::<Vec<_>>());
let l2_true_grad = &input_mat / 12f64;
for eps in (b - l1_true_grad - l2_true_grad)
.into_vec() {
assert!(eps < 1e-12);
}
}
}