What open-source implementations -- in any language -- exist out there that can compute lasso regularisation paths for linear regression by coordinate descent?
So far I am aware of:
Anything else out there?
|
What open-source implementations -- in any language -- exist out there that can compute lasso regularisation paths for linear regression by coordinate descent? So far I am aware of: Anything else out there? |
|||
|
|
|
I have a MATLAB and C/C++ implementation here. Let me know if you find it useful. |
|||||
|
|
Here's a GPL implementation of L1-regularized logistic regression but via the interior-point method rather than coordinate descent. |
|||
|
|
|
You can also take a look at lasso4j which is an open source Java implementation of Lasso for linear regression. It is a port of the glmnet package to pure Java. |
|||
|
|