NonlinearMinimizer solves the problem that has the following structure minimize f(x) + g(x)
g(x) represents the following constraints
- x >= 0
- lb <= x <= ub
- L1(x)
- Aeq*x = beq
- aeq'x = beq
- 1'x = s, x >= 0 ProbabilitySimplex from the reference Proximal Algorithms by Boyd et al, Duchi et al
f(x) can be a smooth convex function defined by DiffFunction or a proximal operator. For now the exposed API takes DiffFunction
g(x) is defined by a proximal operator
For proximal algorithms like L1 through soft-thresholding and Huber Loss (look into library of proximal algorithms for further details) we provide ADMM based Proximal algorithm based on the following reference: https://web.stanford.edu/~boyd/papers/admm/logreg-l1/distr_l1_logreg.html
A subset of proximal operators are projection operators. For projection, NonlinearMinimizer companion object provides project API which generates a Spectral Projected Gradient (SPG) or Projected Quasi Newton (PQN) solver. For projection operators like positivity, bounds, probability simplex etc, these algorithms converges faster as compared to ADMM based proximal algorithm.
TO DO
- Implement FISTA / Nesterov's accelerated method and compare with ADMM
- For non-convex function experiment with TRON-like Primal solver
- Companion:
- object