Regularized Linear Regression

Regularized Linear Regression


Repeat {    θ0:=θ0α 1m mi=1(hθ(x(i))y(i))x(i)0    θj:=θjα [(1m mi=1(hθ(x(i))y(i))x(i)j)+λmθj]          j{1,2...n}}

θj:=θj(1αλm)α1mmi=1(hθ(x(i))y(i))x(i)j

The term (1αλm) will always be less than 1. It is there to reduce the value of λj by some small amount on every update. The 2nd term is exactly the same as it was before


Resources:
https://www.coursera.org/learn/machine-learning/lecture/QrMXd/regularized-linear-regression

Comments