dtsbourg/ML_Cheatsheet

normal equations

gregunz opened this issue · 1 comments

w* = (X^t X)^(-1) X^t y

(it depends of the convention you're using, but doing so (as above) is correct according to what you declare in the optimization part as well as the solution using pseudo-inverse)

Thanks, fixed