首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

线性回归数学推导及Python实现

线性回归的数学推导以及Python实现;

假如有这么一堆数据,可以找到一条趋势线

这条线满足每个点到线的距离平方和最小,如何找到这条线?

其实就是求解W

a、具体推导如下图所示:

如何用计算机语言表达数学公式?

当然是神器numpy

b、Python实现

~矩阵解法

如果通过上述数学公式进行求解参数W,仅需20行代码可以搞定,但在实际应用中,并不是所有的矩阵都可以进行求逆操作,因此在大多数机器学习算法中使用更多的则是使用迭代法(梯度下降),对参数W求解最优解;

c、使用梯度下降对线性模型进行求解,具体代码如下所示

~梯度下降解法

defcost(theta0,theta1,theta2,x,y):

J=

m=len(x)

foriinrange(m):

h=theta0+theta1*x[i][]+theta2*x[i][1]

J+=(h-y[i])**2

J/=(2*m)

returnJ

defpart_theta0(theta0,theat1,theta2,x,y):

h=theta0+theat1*x[:,]+theta2*x[:,1]

diff=(h-y)

partial=diff.sum()/x.shape[]

returnpartial

defpart_theta1(theta0,theat1,theta2,x,y):

h=theta0+theat1*x[:,] +theta2*x[:,1]

diff=(h-y)*x[:,]

partial=diff.sum()/x.shape[]

returnpartial

defpart_theta2(theta0,theat1,theta2,x,y):

h=theta0+theat1*x[:,] +theta2*x[:,1]

diff=(h-y)*x[:,1]

partial=diff.sum()/x.shape[]

returnpartial

defgradient(x,y,aph=0.01,theta0=,theta1=,theta2=):

maxer=50000

counter=

c=cost(theta0,theta1,theta2,data_x,data_y)

costs=[c]

c1=c+10

theta0s=[theta0]

theta1s=[theta1]

theta2s=[theta2]

wucha=0.0000001

while(np.abs(c-c1)>wucha)and(counter

c1=c

update_theta0=aph*part_theta0(theta0,theta1,theta2,x,y)

update__theta1=aph*part_theta1(theta0,theta1,theta2,x,y)

update__theta2=aph*part_theta2(theta0,theta1,theta2,x,y)

theta0-=update_theta0

theta1-=update__theta1

theta2-=update__theta2

theta0s.append(theta0)

theta1s.append(theta1)

theta2s.append(theta2)

c=cost(theta0,theta1,theta2,data_x,data_y)

costs.append(c)

counter+=1

returntheta0,theta1,theta2,counter

defpredict(X):

theta0,theta1,theta2,counter=gradient(data_x,data_y)

print(counter)

y_pred=theta0+theta1*X[:,]+theta2*X[:,1]

returny_pred

print(predict(np.array([[20,5]])))

欢迎加群一起讨论学习~

加入我们,一起学习,一起成长,一起吹牛逼~

论坛地址:

Excel 相关QQ群:

Python QQ群:

微信公众号:

  • 发表于:
  • 原文链接http://kuaibao.qq.com/s/20180113G017AV00?refer=cp_1026
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券