短小精悍算例:简单Python代码实现最小二乘法

import numpy as np 
import matplotlib.pyplot as plt 

######### 产生的测试数据,不带有任何含义
x = np.random.normal(1, 1, [1000]) 
d = x ** 2 + x + np.random.normal(0, 0.3, [1000]) 
# x, d 是数据,样本点
plt.scatter(x, d) 
plt.show()

######### 构建模型
def model(x, a, b, c):
    """构建模型:二次模型""" 
    return x * x * a + x * b + c
def L(x, d, a, b, c):
    y = model(x, a, b, c) 
    return np.mean((y-d)**2) 
def grad(x, d, a, b, c):
    """求导"""
    y = model(x, a, b, c) 
    dLdy = 2 * (y - d) 
    dLda = np.mean(dLdy * x * x) 
    dLdb = np.mean(dLdy * x) 
    dLdc = np.mean(dLdy) 
    return dLda, dLdb, dLdc 

######### 求解过程
a, b, c = 0, 0, 0   # 初始值,一般是随机数
eta = 0.01           # 学习率,超参数之一
for step in range(100): 
    ga, gb, gc = grad(x, d, a, b, c) 
    a = a - eta * ga
    b = b - eta * gb 
    c = c - eta * gc
    print(f"{step}, {(a,b,c)}, {L(x, d, a, b, c)}") 
xplt = np.linspace(-2, 4, 1000)
yplt = model(xplt, a, b, c)
plt.scatter(x, d) 
plt.plot(xplt, yplt, lw=2, c="r") 
plt.show()

原始数据如下:
在这里插入图片描述

拟合结果如下:
在这里插入图片描述

  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值