I have the following problem, $$ \min_{\mathbf{w},v} \sum_{j=1}^{m}\log(1+\exp(-b_{j}(a_j^T\mathbf{w} + v))) + (\rho/2)\mathbf{w}^T(\mathbf{w} - \mathbf{k}) + (\rho/2)v(v+x) $$
All vectors and variables are known, except for $$\mathbf{w}, v$$
My questions are:
- Is there an efficient algorithm to solve this?
- Have you ever seen the same or a very similar optimization problem like the one above?
Yes, this is fairly standard model, a special case of exponential cone programming. You can solve it using any nonlinear solver, or use a solver developed for the exponential cone case.
Here is some experimentation in the MATLAB Toolbox YALMIP (developed by me) using both a straightforward general nonlinear approach, and an exponential cone approach with the exponential cone solver ECOS.