How is learning rate calculated in sklearn Lasso regression?
I was applying different regression models to Kaggle Housing dataset for advanced regression. I am planning to test out lasso, ridge and elastic net. However, none of these models have learning rate as their parameter.
How is the learning rate calculated for these model? Is it dependent on the dataset being trained? I know these models are regularized linear regression and must use learning rate to update their model weights. Or is their a different way to update the model?
Topic lasso ridge-regression learning-rate regularization linear-regression
Category Data Science