locuslab / newton_admm

A Newton ADMM based solver for Cone programming.
Apache License 2.0
38 stars 7 forks source link

Figure 2 Results #1

Closed RoyiAvital closed 7 years ago

RoyiAvital commented 7 years ago

Hello,

I looked at your article A Semismooth Newton Method for Fast, Generic Convex Programming.

Looking at Figure 2, I couldn't understand if Coordinate Descent is faster than all the others or what is going on there.

Moreover, Which version of Coordinate Descent did yo use?

Thank You.

riceric22 commented 7 years ago

Hi @RoyiAvital ,

1) To clarify, among the specialized solvers, coordinate descent is faster than all the others. The purpose of this figure is not to show that Newton ADMM claims state of the art performance on LASSO (since this victory is claimed by coordinate descent), but instead to show that it accelerates the performance of standard ADMM.

2) We used coordinate descent as implemented in sklearn.

~Eric

RoyiAvital commented 7 years ago

@riceric22 ,

Is Coordinate Descent the fastest solution for L1 Regularized Least Squares? When I say fastest I mean to CPU Run Time (Not number of iterations).

Thank You.