Skip to content

Commit ab28192

Browse files
authored
ridge -> elastic net
1 parent c228238 commit ab28192

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/benchmark/benchmark_Huber/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## Benchmark repository for ridge regularized Huber minimization
1+
## Benchmark repository for elastic net regularized Huber minimization
22

3-
The ridge regularized Huber minimization (RidgeHuber) solves the following optimization problem:
3+
The elastic net regularized Huber minimization (ElasticHuber) solves the following optimization problem:
44

55
```math
66
\min_{\mathbf{\beta}} \frac{1}{n} \sum_{i=1}^n H_\kappa( y_i - \mathbf{x}_i^\intercal \mathbf{\beta} ) + \lambda_1 \| \mathbf{\beta} \|_1 + \frac{\lambda_2}{2} \| \mathbf{\beta} \|_2^2,
@@ -16,7 +16,7 @@ where $H_\kappa(\cdot)$ is the Huber loss with a given parameter $\kappa$:
1616
\end{cases}
1717
\end{equation*}
1818
```
19-
In this case, the RidgeHuber can be rewritten as a ReHLine optimization with
19+
In this case, the ElasticHuber can be rewritten as a ReHLine optimization with
2020
```math
2121
\mathbf{S} \leftarrow
2222
\begin{pmatrix}

0 commit comments

Comments
 (0)