You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would have expected the same results (with rescaled lambda sequences)
data(colon); X.bm <- as.big.matrix(colon$X); y <- colon$y
fit.lasso <- biglasso(X.bm, y, family = 'gaussian')
fit.lasso2 <- biglasso(X.bm, y, family = 'gaussian',
penalty.factor = rep(100, ncol(X.bm)))
Looking at the code of {glmnet}, it seems that they rescale the multiplicative factors (by dividing by their mean). Should {biglasso} do the same here?
What is the (implementation) problem with having some penalty factor as 0? (you don't allow unpenalized variables in the current version)
The text was updated successfully, but these errors were encountered:
Two questions/remarks:
Looking at the code of {glmnet}, it seems that they rescale the multiplicative factors (by dividing by their mean). Should {biglasso} do the same here?
The text was updated successfully, but these errors were encountered: