当前位置: 首页 > news >正文

线性回归的从零开始实现

线性回归的从零开始实现

%matplotlib inline
import random
import torch
from d2l import torch as d2ldef synthetic_data(w,b,num_example):"""生成y=Xw+b+噪声"""X=torch.normal(0,1,(num_example,len(w)))y=torch.matmul(X,w)+by+=torch.normal(0,0.01,y.shape)return X,y.reshape((-1,1))
true_w=torch.tensor([2,-3.4])
true_b=4.2
features,labels=synthetic_data(true_w,true_b,1000)
print('features的第0行:',features[0],'\nlabel的第0行:',labels[0])d2l.set_figsize()
d2l.plt.scatter(features[:,1].detach().numpy(),labels.detach().numpy(),1);def data_iter(batch_size,features,labels):num_examples=len(features)indices=list(range(num_examples))random.shuffle(indices)for i in range(0,num_examples,batch_size):#每次跳batch_size大小batch_indices=torch.tensor(indices[i:min(i+batch_size,num_examples)])yield features[batch_indices],labels[batch_indices]batch_size=10for X,y in data_iter(batch_size,features,labels):print(X,'\n',y)break
#定义初始化模型参数
w=torch.normal(0,0.01,size=(2,1),requires_grad=True)
b=torch.zeros(1,requires_grad=True)
#定义模型def linreg(X,w,b):"""线性回归模型"""return torch.matmul(X,w)+b  
def squared_loss(y_hat,y):"""均方损失"""return (y_hat-y.reshape(y_hat.shape))**2/2     
#定义优化算法
def sgd(params,lr,batch_size):"""小批量随机梯度下降"""with torch.no_grad():for param in params:param-=lr*param.grad/batch_sizeparam.grad.zero_()
#训练
lr=0.01
num_epochs=3
net=linreg
loss=squared_lossfor epoch in range(num_epochs):for X,y in data_iter(batch_size,features,labels):l=loss(net(X,w,b),y)l.sum().backward()sgd([w,b],lr,batch_size)with torch.no_grad():train_l=loss(net(features,w,b),labels)print(f'epoch{epoch + 1},loss{float(train_l.mean()):f}')
print(f'w的估计误差:{true_w-w.reshape(true_w.shape)}')
print(f'b的估计误差:{true_b-b}')

结果

features的第0: tensor([0.8573, 0.8461]) 
label的第0: tensor([3.0247])

在这里插入图片描述
在这里插入图片描述

epoch1,loss2.173185
epoch2,loss0.282209
epoch3,loss0.036828
w的估计误差:tensor([8.6069e-05, 1.7047e-04], grad_fn=<SubBackward0>)
b的估计误差:tensor([0.0003], grad_fn=<RsubBackward1>)

相关文章:

  • 项目管理—项目合同签订后客户又不认了
  • MFC(一)搭建空项目
  • 面试题:Spring事务管理策略与@Transactional注解详解
  • 自定义你的商店 – 设计WooCommerce商店的新方法
  • 京东云服务器价格_云主机价格查询系统_2024年京东云优惠活动
  • Linux---命令行参数
  • 7、jenkins项目构建细节-常用的构建触发器
  • C++基础之虚函数(十七)
  • uniapp 未配置appkey或配置错误的解决
  • vue 文件预览(docx、.xlsx、pdf)
  • 飞天使-k8s知识点28-kubernetes散装知识点5-helm安装ingress
  • 黑马鸿蒙笔记2
  • Python从零到一构建GPT模型
  • 统信 UOS V20 一键安装 Oracle 12CR2(220118)单机版
  • Android RecyclerView 滑动后选中的条目居中显示
  • [译] 怎样写一个基础的编译器
  • 【mysql】环境安装、服务启动、密码设置
  • 【翻译】babel对TC39装饰器草案的实现
  • Docker 1.12实践:Docker Service、Stack与分布式应用捆绑包
  • Java超时控制的实现
  • Laravel核心解读--Facades
  • miniui datagrid 的客户端分页解决方案 - CS结合
  • mysql_config not found
  • 纯 javascript 半自动式下滑一定高度,导航栏固定
  • 从零开始学习部署
  • 浮动相关
  • 关于springcloud Gateway中的限流
  • 如何正确配置 Ubuntu 14.04 服务器?
  • 一些css基础学习笔记
  • 与 ConTeXt MkIV 官方文档的接驳
  • 继 XDL 之后,阿里妈妈开源大规模分布式图表征学习框架 Euler ...
  • 智能情侣枕Pillow Talk,倾听彼此的心跳
  • ​MySQL主从复制一致性检测
  • ​批处理文件中的errorlevel用法
  • #if #elif #endif
  • #Java第九次作业--输入输出流和文件操作
  • #Linux(make工具和makefile文件以及makefile语法)
  • (26)4.7 字符函数和字符串函数
  • (C++17) std算法之执行策略 execution
  • (windows2012共享文件夹和防火墙设置
  • (二)pulsar安装在独立的docker中,python测试
  • (转) SpringBoot:使用spring-boot-devtools进行热部署以及不生效的问题解决
  • (转)ORM
  • * 论文笔记 【Wide Deep Learning for Recommender Systems】
  • .Family_物联网
  • .net core 源码_ASP.NET Core之Identity源码学习
  • .NET Framework 服务实现监控可观测性最佳实践
  • .NET Standard 的管理策略
  • .NET Standard 支持的 .NET Framework 和 .NET Core
  • .net 桌面开发 运行一阵子就自动关闭_聊城旋转门家用价格大约是多少,全自动旋转门,期待合作...
  • .NET/C# 异常处理:写一个空的 try 块代码,而把重要代码写到 finally 中(Constrained Execution Regions)
  • .net2005怎么读string形的xml,不是xml文件。
  • .NET开发不可不知、不可不用的辅助类(一)
  • .Net组件程序设计之线程、并发管理(一)
  • ::