0

Whats the benefit of transforming the explanatory variables to have mean 0 and standard deviation 1 in the lasso method, if we didn't do the standardisation what would change?

s.g
  • 311
  • 3
  • 11

1 Answers1

3

If you have multiple features and do regularization(lasso) without normalization, they will be penalized in amounts proportional to their values. You would not want that, and would want them to be penalized on an equal scale relative to each other. Hence you should do that

sww
  • 532
  • 2
  • 11