回归方程(regression equation)
octave 代码表示
h = X * theta
代价函数(Cost Function)
最小均方(LMS,Least Mean Square)
J = 0.5 * m^-1 * (X*theta-y)' * (X*theta-y);
梯度下降 (Gradient Descent)
theta = theta - alpha * m ^ -1 * X' * (X * theta - y)
随机梯度下降(Random Gradient Descent)
正规方程 (Normal Equation)
theta=pinv(X'*X)*X'*y
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。