其他分享
首页 > 其他分享> > 机器学习:P3-P4 Regression

机器学习:P3-P4 Regression

作者:互联网

Application

Stock Market Forecast

Self-driving Car

Recommendation

Linear model

基本形式:\(y=b+\sum w_i x_i\)

损失函数Loss function L : Input: a function, output: how bad it is

\(L(f)=L(w,b)=\sum_{n=1}^N(\widehat{y}^n-(b+w*x_{cp}^n))^2\)

$f^*=\arg minL(f) $ 在所有\(f\)中找到使得损失函数L最小的

\(w^*,b^*=\arg min L(w,b)=\arg min \sum_{n=1}^N(\widehat{y}^n-(b+w*x_{cp}^n))\) 在所有\(w,b\)中找到使得L最小的

Gradient Descent

用梯度下降法求解

....many iteration

​ 一阶导数越大,走的步长越大

selecting another model

\(y=b+w_1*x_{cp}+w_2*(x_{cp})^2....+...+...\)

用高次函数当Model

但模型在训练数据上效果好,在testdata里面可能反而会变差

存在过拟合Overfitting现象

优化

1.根据不同种类的数据,用不同的Model去训练

2.加入正则化Regularization选择更平滑的模型

标签:P3,frac,P4,--,eta,dw,Compute,partial,Regression
来源: https://www.cnblogs.com/hnwang98/p/15159536.html