吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1659|回复: 4
收起左侧

[Python 转载] 机器学习之简单线性回归(梯度下降法)

[复制链接]
zyt温柔发 发表于 2020-3-15 10:30
0.引入依赖
import numpy as np
import matplotlib.pyplot as plt
1.导入数据
points = np.genfromtxt("data.csv",delimiter=',')
#提取points中的两列数据,分别作为x,y
x = points[:,0]
y = points[:,1]
# 用plt画出散点图
plt.scatter(x,y)
plt.show()
下载.png
2.定义损失函数
# 损失函数是系数的函数,另外还要传入数据的x,y
def computer_cost(w,b,points):
    total_cost = 0
    M = len(points)
    # 逐点计算平方损失误差,计算平均数
    for i in range(M):
        x = points[i,0]
        y = points[i,1]
        total_cost+= (y-w*x-b)**2
    return total_cost/M
3.定义模型超参数
alpha = 0.0001
initial_w = 0
initial_b = 0
num_iter = 10
4.定义核心梯度下降算法函数
def grad_desc(points,initial_w,initial_b,alpha,num_iter):
    w = initial_w
    b = initial_b
    #定义一个列表list保存所有的损失函数值,用来显示下降的过程
    cost_list = []
    for i in range(num_iter):
        cost_list.append(computer_cost(w,b,points))
        w,b = step_grad_desc(w,b,alpha,points)
    return [w,b,cost_list]
def step_grad_desc(current_w,current_b,alpha,points):
    sum_grad_w = 0
    sum_grad_b = 0
    M = len(points)
    for i in range(M):
        x = points[i,0]
        y = points[i,1]
        sum_grad_w+=(current_w*x+current_b-y)*x
        sum_grad_b+=current_w*x+current_b-y
    # 用公式求当前梯度
    grad_w = 2/M *sum_grad_w
    grad_b = 2/M*sum_grad_b
    # 梯度下降 更新当前的w和b
    updated_w = current_w - alpha* grad_w
    updated_b = current_b - alpha* grad_b
    return updated_w,updated_b
5.测试 运行梯度下降算法,计算最优w和b
w,b,cost_list = grad_desc(points,initial_w,initial_b,alpha,num_iter)
print('w is:',w)
print('b is:',b)
cost=computer_cost(w,b,points)
print("cost is:",cost)
plt.plot(cost_list)
plt.show()
6.结果:
w is: 1.4774173755483797
b is: 0.02963934787473238
cost is: 112.65585181499748
下载 (1).png
7.画出拟合曲线
plt.scatter(x,y)
# 针对每一个x,计算出预测的y值
pred_y = w*x+b
plt.plot(x,pred_y,c='r')
plt.show()
下载 (2).png
8.数据:
data.zip (2.1 KB, 下载次数: 22)

免费评分

参与人数 3吾爱币 +2 热心值 +3 收起 理由
fls + 1 用心讨论,共获提升!
entropy2333 + 1 + 1 谢谢@Thanks!
skyward + 1 + 1 用心讨论,共获提升!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

Flytom 发表于 2020-3-15 11:08
技术干货,赞
气宇飞溅 发表于 2020-3-16 16:02
大佬在哪学机器学习呀    本人小白  有一点点爬虫基础  想学习一下机器学习   能给推荐一下吗?
 楼主| zyt温柔发 发表于 2020-3-17 10:21
气宇飞溅 发表于 2020-3-16 16:02
大佬在哪学机器学习呀    本人小白  有一点点爬虫基础  想学习一下机器学习   能给推荐一下吗?

网上教程很多呀。我也是空闲时间学的
lishunwei 发表于 2020-3-17 11:20
楼主是学习的那个框架啊
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 22:57

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表