cr.sparse.fom.l1rls

cr.sparse.fom.l1rls(A, b, lambda_, x0, options=FomOptions(nonneg=False, solver='at', max_iters=1000, tol=1e-08, L0=1.0, Lexact=inf, alpha=0.9, beta=0.5, mu=0, maximize=False, saddle=False))[source]

Solver for l1 regulated least square problem

Parameters
Returns

Solution of the optimization problem

Return type

FomState

The l1 regularized least square problem is defined as:

(1)\[\text{minimize} \frac{1}{2} \| A x - b \|_2^2 + \lambda \| x \|_1\]

Sometimes, this is also called LASSO in literature.