Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

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?

share|improve this question

3 Answers

I have a MATLAB and C/C++ implementation here.

Let me know if you find it useful.

share|improve this answer
I only have an implementation of the Bayesian LASSO for linear regression and the LASSO for logistic regression currently uploaded. Appologies. – emakalic Nov 29 '10 at 23:12
Your code sounds promising. Under what license are you making it available? A BSD license would allow the widest possible uses. – Jack Tanner May 16 '12 at 15:53

Here's a GPL implementation of L1-regularized logistic regression but via the interior-point method rather than coordinate descent.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.