Group Lasso Regularization
leimao.github.io
Group Lasso Regularization
1–10 of 11 posts
Re: Group Lasso Regularization
#2Re: Group Lasso Regularization
#3[1] R package https://cran.r-project.org/web/packages/glinternet/index.htm... (paper linked therein)
Re: Group Lasso Regularization
#4There's also at least one CrossValidated question on this topic, with good answers attached. For example https://stats.stackexchange.com/q/214325/36229
Re: Group Lasso Regularization
#5Re: Group Lasso Regularization
#6The lasso is the same, but with a Laplace distribution as the prior.
The "elastic net", which combines the l1 and l2 penalties, even has a Bayesian interpretation, with a fairly weird prior [1, 2].
Anyone know if there's an equivalent Bayesian interpretation of group lasso? Maybe it's just a Gaussian prior but with block-wise correlation between the variables?
[1]: https://stats.stackexchange.com/questions/283238/is-there-a-...
[2]: https://www.tandfonline.com/doi/abs/10.1198/jasa.2011.tm0924...
Re: Group Lasso Regularization
#7Re: Group Lasso Regularization
#8In Bayesian terms, ridge regression is equivalent to putting a Gaussian prior on the weights, which gets wider the weaker the penalty term. The lasso is the same, but with a Laplace distribution as the prior. The "elastic net", which combines the l1 and l2 penalties, even has a Bayesian interpretation, with a fairly weird prior [1, 2]. Anyone know if there's an equivalent Bayesian interpretation of group lasso? Maybe…
There is a way to compute a "true" Bayesian Lasso, but it doesn’t yield a sparse model [0].
Re: Group Lasso Regularization
#9In Bayesian terms, ridge regression is equivalent to putting a Gaussian prior on the weights, which gets wider the weaker the penalty term. The lasso is the same, but with a Laplace distribution as the prior. The "elastic net", which combines the l1 and l2 penalties, even has a Bayesian interpretation, with a fairly weird prior [1, 2]. Anyone know if there's an equivalent Bayesian interpretation of group lasso? Maybe…
See https://www.cs.ubc.ca/~murphyk/MLbook/
for the mathematical decomp. It should be noted that obtained using that prior in a MAP estimation per the other comment.
Re: Group Lasso Regularization
#10Group Lasso is one of those things I'm really surprised not to see used more often. Great post.